/* style/resources-how-to-register-13wim.css */

:root {
    --page-13wim-primary-color: #1A2A4A;
    --page-13wim-accent-color: #FFD700;
    --page-13wim-text-light: #F0F0F0;
    --page-13wim-text-dark: #333333;
    --page-13wim-background-light: #FFFFFF;
    --page-13wim-background-dark: #0F1D33;
    --page-13wim-border-color: #E0E0E0;
}

.page-resources-how-to-register-13wim {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-13wim-text-dark);
    background-color: var(--page-13wim-background-light);
}

.page-resources-how-to-register-13wim__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-register-13wim__hero {
    background: linear-gradient(135deg, var(--page-13wim-primary-color) 0%, #0F1D33 100%);
    color: var(--page-13wim-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensure sufficient height */
}

.page-resources-how-to-register-13wim__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-how-to-register-13wim__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(70%);
}

.page-resources-how-to-register-13wim__hero .page-resources-how-to-register-13wim__container {
    position: relative;
    z-index: 1;
}

.page-resources-how-to-register-13wim__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-13wim-accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-how-to-register-13wim__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-13wim-text-light);
}

.page-resources-how-to-register-13wim__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-how-to-register-13wim__btn--primary {
    background-color: var(--page-13wim-accent-color);
    color: var(--page-13wim-primary-color);
}

.page-resources-how-to-register-13wim__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-13wim__btn--outline {
    background-color: transparent;
    color: var(--page-13wim-accent-color);
    border: 2px solid var(--page-13wim-accent-color);
}

.page-resources-how-to-register-13wim__btn--outline:hover {
    background-color: var(--page-13wim-accent-color);
    color: var(--page-13wim-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-register-13wim__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-how-to-register-13wim__section {
    padding: 60px 0;
    text-align: left;
}

.page-resources-how-to-register-13wim__section:nth-of-type(even) {
    background-color: #F8F8F8;
}

.page-resources-how-to-register-13wim__heading {
    font-size: 2.5em;
    color: var(--page-13wim-primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-resources-how-to-register-13wim__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-13wim-accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-how-to-register-13wim__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-13wim-text-dark);
}

.page-resources-how-to-register-13wim__section strong {
    color: var(--page-13wim-primary-color);
}

/* Why Choose Section */
.page-resources-how-to-register-13wim__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-how-to-register-13wim__feature-item {
    background-color: var(--page-13wim-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--page-13wim-accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-register-13wim__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-register-13wim__feature-title {
    font-size: 1.6em;
    color: var(--page-13wim-primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-13wim__feature-item p {
    font-size: 1em;
    color: #555;
}

/* Registration Steps Section */
.page-resources-how-to-register-13wim__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.page-resources-how-to-register-13wim__step-item {
    background-color: var(--page-13wim-background-dark);
    color: var(--page-13wim-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 350px;
}

.page-resources-how-to-register-13wim__step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--page-13wim-accent-color);
    color: var(--page-13wim-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-13wim__step-title {
    font-size: 1.8em;
    color: var(--page-13wim-accent-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-13wim__step-item p {
    font-size: 1.05em;
    color: var(--page-13wim-text-light);
    margin-bottom: 25px;
}

.page-resources-how-to-register-13wim__step-item ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--page-13wim-text-light);
}

.page-resources-how-to-register-13wim__step-item ul li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-resources-how-to-register-13wim__steps-image-wrapper {
    margin-top: 60px;
    text-align: center;
}

.page-resources-how-to-register-13wim__steps-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Important Notes Section */
.page-resources-how-to-register-13wim__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-how-to-register-13wim__list li {
    background-color: #f0f4f8;
    border-left: 5px solid var(--page-13wim-primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: var(--page-13wim-text-dark);
}

.page-resources-how-to-register-13wim__list li strong {
    color: var(--page-13wim-primary-color);
}

.page-resources-how-to-register-13wim__security-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.page-resources-how-to-register-13wim__security-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Explore Section */
.page-resources-how-to-register-13wim__explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-how-to-register-13wim__explore-item {
    background-color: var(--page-13wim-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid var(--page-13wim-accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-register-13wim__explore-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-register-13wim__explore-title {
    font-size: 1.6em;
    color: var(--page-13wim-primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-register-13wim__explore-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-resources-how-to-register-13wim__game-image-wrapper {
    margin-top: 60px;
    text-align: center;
}

.page-resources-how-to-register-13wim__game-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-resources-how-to-register-13wim__faq-item {
    background-color: #f0f4f8;
    border: 1px solid var(--page-13wim-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-resources-how-to-register-13wim__faq-item:hover {
    background-color: #e5edf5;
}

.page-resources-how-to-register-13wim__faq-question {
    font-size: 1.4em;
    color: var(--page-13wim-primary-color);
    margin-bottom: 10px;
}

.page-resources-how-to-register-13wim__faq-answer {
    font-size: 1.05em;
    color: var(--page-13wim-text-dark);
}

/* CTA Bottom Section */
.page-resources-how-to-register-13wim__section--cta-bottom {
    background-color: var(--page-13wim-primary-color);
    color: var(--page-13wim-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-how-to-register-13wim__section--cta-bottom .page-resources-how-to-register-13wim__heading {
    color: var(--page-13wim-accent-color);
}

.page-resources-how-to-register-13wim__section--cta-bottom .page-resources-how-to-register-13wim__heading::after {
    background-color: var(--page-13wim-text-light);
}

.page-resources-how-to-register-13wim__section--cta-bottom p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-13wim-text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-register-13wim__title {
        font-size: 2.8em;
    }
    .page-resources-how-to-register-13wim__heading {
        font-size: 2.2em;
    }
    .page-resources-how-to-register-13wim__feature-item, .page-resources-how-to-register-13wim__explore-item, .page-resources-how-to-register-13wim__step-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-register-13wim__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-resources-how-to-register-13wim__title {
        font-size: 2.2em;
    }
    .page-resources-how-to-register-13wim__subtitle {
        font-size: 1.1em;
    }
    .page-resources-how-to-register-13wim__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-how-to-register-13wim__section {
        padding: 40px 0;
    }
    .page-resources-how-to-register-13wim__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-how-to-register-13wim__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-resources-how-to-register-13wim__feature-grid, .page-resources-how-to-register-13wim__steps-container, .page-resources-how-to-register-13wim__explore-grid {
        gap: 20px;
    }
    .page-resources-how-to-register-13wim__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-resources-how-to-register-13wim__step-title, .page-resources-how-to-register-13wim__feature-title, .page-resources-how-to-register-13wim__explore-title {
        font-size: 1.4em;
    }
    .page-resources-how-to-register-13wim__list li, .page-resources-how-to-register-13wim__faq-item p {
        font-size: 1em;
    }
    .page-resources-how-to-register-13wim__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-register-13wim__title {
        font-size: 1.8em;
    }
    .page-resources-how-to-register-13wim__subtitle {
        font-size: 0.9em;
    }
    .page-resources-how-to-register-13wim__heading {
        font-size: 1.5em;
    }
    .page-resources-how-to-register-13wim__btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .page-resources-how-to-register-13wim__btn:last-of-type {
        margin-bottom: 0;
    }
    .page-resources-how-to-register-13wim__feature-grid, .page-resources-how-to-register-13wim__steps-container, .page-resources-how-to-register-13wim__explore-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-how-to-register-13wim__security-image, .page-resources-how-to-register-13wim__steps-image, .page-resources-how-to-register-13wim__game-image {
        max-width: 100%;
    }
}