/* style/resources-winclub-account-tutorial.css */

/* Base Styles */
.page-resources-winclub-account-tutorial {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
}

.page-resources-winclub-account-tutorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-winclub-account-tutorial__hero-section {
    background: linear-gradient(135deg, #8B0000, #4a0000);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-resources-winclub-account-tutorial__main-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-winclub-account-tutorial__subtitle {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-resources-winclub-account-tutorial__hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-resources-winclub-account-tutorial__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-resources-winclub-account-tutorial__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-resources-winclub-account-tutorial__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-winclub-account-tutorial__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-winclub-account-tutorial__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
}

.page-resources-winclub-account-tutorial__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-winclub-account-tutorial__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    border: 3px solid #FFD700;
}

/* General Section Styling */
.page-resources-winclub-account-tutorial__section {
    padding: 60px 0;
    background-color: #2a2a2a;
    border-bottom: 1px solid #444;
}

.page-resources-winclub-account-tutorial__section--dark {
    background-color: #1a1a1a;
}

.page-resources-winclub-account-tutorial__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-resources-winclub-account-tutorial__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-winclub-account-tutorial__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-winclub-account-tutorial__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-winclub-account-tutorial__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-resources-winclub-account-tutorial__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #8B0000;
}

/* Feature List */
.page-resources-winclub-account-tutorial__feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-resources-winclub-account-tutorial__feature-list li {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 1.05em;
    border-left: 5px solid #FFD700;
}

.page-resources-winclub-account-tutorial__icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
}

/* Steps Section */
.page-resources-winclub-account-tutorial__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-winclub-account-tutorial__step {
    background-color: #3a3a3a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    border-top: 5px solid #8B0000;
}

.page-resources-winclub-account-tutorial__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #8B0000;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #1a1a1a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-resources-winclub-account-tutorial__step h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-resources-winclub-account-tutorial__step p {
    font-size: 1em;
    line-height: 1.7;
}

.page-resources-winclub-account-tutorial__step ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.page-resources-winclub-account-tutorial__step ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-resources-winclub-account-tutorial__step ul li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.page-resources-winclub-account-tutorial__cta-box {
    background-color: #8B0000;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-resources-winclub-account-tutorial__cta-box p {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Grid Section */
.page-resources-winclub-account-tutorial__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-winclub-account-tutorial__grid-item {
    background-color: #3a3a3a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-resources-winclub-account-tutorial__grid-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-resources-winclub-account-tutorial__grid-item p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-resources-winclub-account-tutorial__grid-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 8px;
}

/* Tips List */
.page-resources-winclub-account-tutorial__tips-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-resources-winclub-account-tutorial__tips-list li {
    background-color: #3a3a3a;
    padding: 18px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    border-left: 4px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-winclub-account-tutorial__tips-list li .page-resources-winclub-account-tutorial__icon {
    font-size: 1.3em;
    margin-right: 15px;
    color: #FFD700;
}

/* FAQ Section */
.page-resources-winclub-account-tutorial__faq-container {
    margin-top: 40px;
}

.page-resources-winclub-account-tutorial__faq-item {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-winclub-account-tutorial__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    color: #FFD700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-resources-winclub-account-tutorial__faq-question:hover {
    background-color: #444;
}

.page-resources-winclub-account-tutorial__faq-question::after {
    content: '\2b'; /* Plus sign */
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-winclub-account-tutorial__faq-question.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.page-resources-winclub-account-tutorial__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #2a2a2a;
}

.page-resources-winclub-account-tutorial__faq-answer p {
    padding-bottom: 20px;
    margin-top: 0;
    font-size: 1em;
    line-height: 1.7;
}

/* Final CTA Section */
.page-resources-winclub-account-tutorial__final-cta-section {
    background: linear-gradient(135deg, #FFD700, #e6c200);
    padding: 80px 0;
    text-align: center;
    color: #8B0000;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__section-title {
    color: #8B0000;
    text-shadow: none;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__text {
    color: #550000;
    font-size: 1.2em;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__highlight {
    color: #8B0000;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__btn--primary {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__btn--primary:hover {
    background-color: #6a0000;
    border-color: #6a0000;
    color: #fff;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__btn--secondary {
    background-color: transparent;
    color: #8B0000;
    border-color: #8B0000;
}

.page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__btn--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-winclub-account-tutorial__main-title {
        font-size: 2.5em;
    }

    .page-resources-winclub-account-tutorial__subtitle {
        font-size: 1.2em;
    }

    .page-resources-winclub-account-tutorial__section-title {
        font-size: 2em;
    }

    .page-resources-winclub-account-tutorial__hero-ctas,
    .page-resources-winclub-account-tutorial__final-cta-section .page-resources-winclub-account-tutorial__hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-winclub-account-tutorial__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-winclub-account-tutorial__hero-image {
        max-width: 95%;
    }

    .page-resources-winclub-account-tutorial__feature-list,
    .page-resources-winclub-account-tutorial__steps,
    .page-resources-winclub-account-tutorial__grid {
        grid-template-columns: 1fr;
    }

    .page-resources-winclub-account-tutorial__step-number {
        position: static;
        transform: none;
        margin-bottom: 15px;
    }

    .page-resources-winclub-account-tutorial__step h3 {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-winclub-account-tutorial__main-title {
        font-size: 2em;
    }

    .page-resources-winclub-account-tutorial__subtitle {
        font-size: 1em;
    }

    .page-resources-winclub-account-tutorial__section-title {
        font-size: 1.8em;
    }

    .page-resources-winclub-account-tutorial__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-winclub-account-tutorial__hero-section,
    .page-resources-winclub-account-tutorial__section,
    .page-resources-winclub-account-tutorial__final-cta-section {
        padding: 40px 0;
    }

    .page-resources-winclub-account-tutorial__cta-box {
        padding: 30px;
    }

    .page-resources-winclub-account-tutorial__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-winclub-account-tutorial__faq-answer p {
        font-size: 0.95em;
    }
}