.page-register {
    padding-top: var(--header-offset, 120px);
    background-color: #FFFFFF;
    color: #000000;
    font-family: Arial, sans-serif;
}

.page-register__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero text */
    color: #FFFFFF;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4; /* Slightly transparent to let text stand out */
}

.page-register__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-register__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Highlight title with accent color */
}

.page-register__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-register__hero-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-register__hero-button:hover {
    background-color: #e0a53a;
}

.page-register__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.page-register__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    color: #333333;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-register__value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-register__value-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__value-heading {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-register__value-text {
    color: #555555;
    line-height: 1.6;
}

.page-register__steps-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-register__steps-image {
    flex: 1;
    min-width: 200px; /* Ensure image is not too small */
}

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

.page-register__steps-list {
    flex: 1;
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-register__step-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.page-register__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FCBC45;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-register__step-heading {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-register__step-text {
    color: #555555;
    line-height: 1.6;
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-register__condition-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__condition-heading {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-register__condition-text {
    color: #555555;
    line-height: 1.6;
}

.page-register__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-register__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    background-color: #FCBC45;
    user-select: none; /* Prevent text selection on toggle */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-register__faq-item[open] .page-register__faq-question {
    border-bottom: 1px solid #FCBC45;
}

.page-register__faq-question:hover {
    background-color: #e0a53a;
}

.page-register__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: rotate(45deg);
}

.page-register__faq-answer {
    padding: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555555;
    background-color: #FFFFFF;
}

.page-register__cta-section {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

.page-register__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-register__cta-button--register {
    background-color: #FCBC45;
    color: #000000;
}

.page-register__cta-button--register:hover {
    background-color: #e0a53a;
}

.page-register__cta-button--login {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #FCBC45;
}

.page-register__cta-button--login:hover {
    background-color: #333333;
    border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.5em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__steps-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 60px 15px;
    }
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-description {
        font-size: 1em;
    }
    .page-register__value-section,
    .page-register__steps-section,
    .page-register__conditions-section,
    .page-register__faq-section,
    .page-register__cta-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    .page-register__hero-image img,
    .page-register__steps-image img {
        max-width: 100%;
        height: auto;
    }
    .page-register__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-register__cta-button {
        width: 100%;
    }
    /* Ensure all content area images are responsive and not smaller than 200px */
    .page-register__value-item img,
    .page-register__steps-image img,
    .page-register__condition-item img,
    .page-register__faq-item img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
        object-fit: cover;
    }
    /* Specific rule to prevent images from being too small if not explicitly sized */
    .page-register img:not(.shared-header__logo img, .shared-footer__payment-icon img, .shared-footer__social-icon img, .shared-footer__game-provider img) {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-register__faq-answer {
        font-size: 1em;
        padding: 15px;
    }
    .page-register__step-item {
        padding-left: 50px;
    }
    .page-register__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}