/* style/beginner-guide.css */
.page-beginner-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-beginner-guide__container--center {
    text-align: center;
}

/* Hero Section */
.page-beginner-guide__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    line-height: 1.2;
}

.page-beginner-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-beginner-guide__button {
    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;
    text-align: center;
}

.page-beginner-guide__button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-beginner-guide__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-beginner-guide__button--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-beginner-guide__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-beginner-guide__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

/* General Sections */
.page-beginner-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-beginner-guide__section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide__section--intro {
    background-color: #fff;
}

.page-beginner-guide__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide__sub-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Steps Section */
.page-beginner-guide__step {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.page-beginner-guide__step:hover {
    transform: translateY(-5px);
}

.page-beginner-guide__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.page-beginner-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-beginner-guide__list li {
    margin-bottom: 10px;
}

.page-beginner-guide__list--ordered {
    list-style: decimal;
    margin-left: 20px;
    padding-left: 0;
}

.page-beginner-guide__link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide__link:hover {
    color: #FFCC00;
}

.page-beginner-guide__tip {
    background-color: #fffbe6;
    border-left: 4px solid #FFCC00;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-style: italic;
    color: #5c4b00;
}

/* Game Categories */
.page-beginner-guide__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-beginner-guide__game-category {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.page-beginner-guide__game-category-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

/* Safety & Support */
.page-beginner-guide__section--safety {
    background-color: #f0f5fa;
    text-align: center;
}

.page-beginner-guide__section--safety .page-beginner-guide__section-image {
    max-width: 600px;
    margin: 30px auto;
}

.page-beginner-guide__safety-tips,
.page-beginner-guide__support {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* FAQ Section */
.page-beginner-guide__section--faq {
    background-color: #fff;
}

.page-beginner-guide__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.page-beginner-guide__faq-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-beginner-guide__faq-question {
    font-size: 1.3em;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.page-beginner-guide__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    color: #FFCC00;
}

.page-beginner-guide__faq-question.active::after {
    content: '-';
}

.page-beginner-guide__faq-answer {
    padding-left: 20px;
    color: #555;
    display: none;
}

/* Final CTA Section */
.page-beginner-guide__section--final-cta {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-beginner-guide__section--final-cta .page-beginner-guide__section-title {
    color: #FFCC00;
}

.page-beginner-guide__section--final-cta .page-beginner-guide__section-title::after {
    background-color: #fff;
}

.page-beginner-guide__section--final-cta p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide__title {
        font-size: 2.2em;
    }
    .page-beginner-guide__subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__step-title {
        font-size: 1.5em;
    }
    .page-beginner-guide__game-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide__hero {
        padding: 60px 0;
    }
    .page-beginner-guide__title {
        font-size: 1.8em;
    }
    .page-beginner-guide__subtitle {
        font-size: 1em;
    }
    .page-beginner-guide__cta-group {
        flex-direction: column;
    }
    .page-beginner-guide__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-beginner-guide__section {
        padding: 40px 0;
    }
    .page-beginner-guide__section-title {
        font-size: 1.6em;
    }
    .page-beginner-guide__sub-title {
        font-size: 1.4em;
    }
}

@media (max-width: 576px) {
    .page-beginner-guide__title {
        font-size: 1.5em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.4em;
    }
    .page-beginner-guide__step-title {
        font-size: 1.3em;
    }
    .page-beginner-guide__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-beginner-guide__list {
        margin-left: 15px;
    }
    .page-beginner-guide__faq-question {
        font-size: 1.1em;
    }
}