/* style/registration-login.css */
.page-registration-login {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-registration-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-login__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-login__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:uk88,abstract,geometric,blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-registration-login__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-registration-login__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-registration-login__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-registration-login__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-registration-login__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0056b3; /* Darker blue for text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-login__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-registration-login__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #FFD700; /* Gold border */
}

.page-registration-login__btn--secondary:hover {
    background-color: #FFD700;
    color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-login__content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-registration-login__content-section:nth-of-type(odd) {
    background-color: #f0f4f7;
}

.page-registration-login__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-login__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-registration-login__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-registration-login__sub-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-registration-login__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-registration-login__grid-2-cols--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-registration-login__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-registration-login__image-wrapper {
    text-align: center;
}

.page-registration-login__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-login__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-registration-login__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #333;
}

.page-registration-login__list--tips li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23007BFF"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #333;
}

.page-registration-login__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-registration-login__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-registration-login__step-title {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-login__step-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-registration-login__step-item p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    color: #444;
}

.page-registration-login__btn--step {
    background-color: #007BFF;
    color: #fff;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
    margin-bottom: 25px;
}

.page-registration-login__btn--step:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-registration-login__step-image {
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.page-registration-login__app-download .page-registration-login__grid-2-cols {
    align-items: flex-start;
}

.page-registration-login__promotions .page-registration-login__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-registration-login__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-login__promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-registration-login__card-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-registration-login__card-description {
    color: #555;
    margin-bottom: 20px;
}

.page-registration-login__btn--card {
    background-color: #FFD700;
    color: #0056b3;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

.page-registration-login__btn--card:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-registration-login__mt-40 {
    margin-top: 40px;
}

.page-registration-login__faq-list {
    margin-top: 30px;
}

.page-registration-login__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: background-color 0.3s ease;
}

.page-registration-login__faq-item:hover {
    background-color: #f0f4f7;
}

.page-registration-login__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-registration-login__faq-answer {
    color: #444;
    line-height: 1.7;
}

.page-registration-login__responsible-gambling .page-registration-login__grid-2-cols {
    align-items: flex-start;
}

.page-registration-login__related-pages .page-registration-login__detail-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-registration-login__detail-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-login__detail-card .page-registration-login__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-registration-login__detail-card .page-registration-login__card-title a {
    color: #007BFF;
    text-decoration: none;
}

.page-registration-login__detail-card .page-registration-login__card-title a:hover {
    text-decoration: underline;
}

.page-registration-login__detail-card .page-registration-login__card-description {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.page-registration-login__detail-card .page-registration-login__btn--card {
    background-color: #007BFF;
    color: #fff;
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-registration-login__detail-card .page-registration-login__btn--card:hover {
    background-color: #0056b3;
}

.page-registration-login__call-to-action {
    background: linear-gradient(135deg, #007BFF, #FFD700);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-registration-login__call-to-action .page-registration-login__section-title {
    color: #fff;
    font-size: 2.8em;
}

.page-registration-login__call-to-action .page-registration-login__section-title::after {
    background-color: #fff;
}

.page-registration-login__call-to-action .page-registration-login__section-description {
    color: #f0f0f0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-registration-login__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    background-color: #0056b3; /* Darker blue for contrast on gradient */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-registration-login__btn--large:hover {
    background-color: #FFD700;
    color: #0056b3;
    border-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-registration-login__text-center {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-registration-login__hero-title {
        font-size: 2.5em;
    }
    .page-registration-login__hero-description {
        font-size: 1.1em;
    }
    .page-registration-login__section-title {
        font-size: 2em;
    }
    .page-registration-login__grid-2-cols,
    .page-registration-login__grid-2-cols--reverse {
        grid-template-columns: 1fr;
    }
    .page-registration-login__grid-2-cols--reverse .page-registration-login__image-wrapper {
        order: -1;
    }
    .page-registration-login__step-title {
        font-size: 1.8em;
    }
    .page-registration-login__promo-image {
        height: 150px;
    }
    .page-registration-login__detail-pages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-registration-login__call-to-action .page-registration-login__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-registration-login__hero-section {
        padding: 80px 0;
    }
    .page-registration-login__hero-title {
        font-size: 2em;
    }
    .page-registration-login__hero-description {
        font-size: 1em;
    }
    .page-registration-login__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-registration-login__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }
    .page-registration-login__section-title {
        font-size: 1.8em;
    }
    .page-registration-login__section-description {
        font-size: 0.95em;
    }
    .page-registration-login__step-title {
        font-size: 1.5em;
    }
    .page-registration-login__promo-card {
        padding: 20px;
    }
    .page-registration-login__card-title {
        font-size: 1.3em;
    }
    .page-registration-login__call-to-action .page-registration-login__section-title {
        font-size: 1.8em;
    }
    .page-registration-login__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-registration-login__hero-section {
        padding: 60px 0;
    }
    .page-registration-login__hero-title {
        font-size: 1.8em;
    }
    .page-registration-login__section-title {
        font-size: 1.5em;
    }
    .page-registration-login__step-image {
        max-width: 95%;
    }
    .page-registration-login__promo-image {
        height: 120px;
    }
}