/* style/news-guides-beginner-guides.css */
.page-news-guides-beginner-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E5E5E5; /* Light grey for text on dark background */
    background-color: #1A1A1A; /* Dark background */
}

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

.page-news-guides-beginner-guides__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1A1A1A 100%);
    padding: 100px 0;
    text-align: center;
    color: #1A1A1A; /* Dark text on golden background for hero */
}

.page-news-guides-beginner-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A1A; /* Ensure high contrast */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-news-guides-beginner-guides__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333333; /* Darker grey for subtitle */
}

.page-news-guides-beginner-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-news-guides-beginner-guides__section:last-of-type {
    border-bottom: none;
}

.page-news-guides-beginner-guides__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news-guides-beginner-guides__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-news-guides-beginner-guides__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #CCCCCC;
}

.page-news-guides-beginner-guides__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-news-guides-beginner-guides__content-wrapper p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05em;
}

.page-news-guides-beginner-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin: 20px 0;
}

.page-news-guides-beginner-guides__image--full-width {
    width: 100%;
}

.page-news-guides-beginner-guides__step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-news-guides-beginner-guides__step-list li {
    margin-bottom: 40px;
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    padding-left: 80px;
}

.page-news-guides-beginner-guides__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700;
    color: #1A1A1A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-news-guides-beginner-guides__step-list h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-news-guides-beginner-guides__step-list p {
    margin-bottom: 15px;
}

.page-news-guides-beginner-guides__step-list ul {
    list-style: disc;
    margin-left: 25px;
}

.page-news-guides-beginner-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.page-news-guides-beginner-guides__btn--primary {
    background-color: #FFD700;
    color: #1A1A1A; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-news-guides-beginner-guides__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-news-guides-beginner-guides__btn--secondary {
    background-color: #1A1A1A;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-news-guides-beginner-guides__btn--secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-news-guides-beginner-guides__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-news-guides-beginner-guides__cta-box {
    background-color: #2A2A2A;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-news-guides-beginner-guides__cta-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #FFD700;
}

.page-news-guides-beginner-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news-guides-beginner-guides__grid--center {
    align-items: center;
}

.page-news-guides-beginner-guides__grid-item {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-news-guides-beginner-guides__grid-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-news-guides-beginner-guides__grid-item ul {
    list-style: disc;
    margin-left: 20px;
    padding: 0;
}

.page-news-guides-beginner-guides__grid-item ol {
    list-style: decimal;
    margin-left: 20px;
    padding: 0;
}

.page-news-guides-beginner-guides__grid-item li {
    margin-bottom: 10px;
}

.page-news-guides-beginner-guides__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news-guides-beginner-guides__game-category {
    background-color: #2A2A2A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
}

.page-news-guides-beginner-guides__game-category h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-news-guides-beginner-guides__game-category .page-news-guides-beginner-guides__image {
    margin-bottom: 20px;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.page-news-guides-beginner-guides__note {
    background-color: #FFD700;
    color: #1A1A1A; /* Dark text on gold */
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-news-guides-beginner-guides__faq-item {
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.page-news-guides-beginner-guides__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-news-guides-beginner-guides__final-cta {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-news-guides-beginner-guides__hero-title {
        font-size: 2.5em;
    }

    .page-news-guides-beginner-guides__hero-subtitle {
        font-size: 1em;
    }

    .page-news-guides-beginner-guides__section-title {
        font-size: 2em;
    }

    .page-news-guides-beginner-guides__step-list li {
        padding-left: 20px;
        padding-top: 60px;
    }

    .page-news-guides-beginner-guides__step-list li::before {
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
    }

    .page-news-guides-beginner-guides__step-list h3 {
        text-align: center;
        margin-top: 20px;
    }

    .page-news-guides-beginner-guides__grid,
    .page-news-guides-beginner-guides__game-categories {
        grid-template-columns: 1fr;
    }

    .page-news-guides-beginner-guides__content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-news-guides-beginner-guides__hero {
        padding: 60px 0;
    }

    .page-news-guides-beginner-guides__hero-title {
        font-size: 2em;
    }

    .page-news-guides-beginner-guides__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-news-guides-beginner-guides__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-news-guides-beginner-guides__section {
        padding: 40px 0;
    }

    .page-news-guides-beginner-guides__section-title {
        font-size: 1.8em;
    }

    .page-news-guides-beginner-guides__cta-box p {
        font-size: 1.1em;
    }
}