/* style/beginner-guide-how-to-place-a-bet.css */
.page-beginner-guide-how-to-place-a-bet {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1E90FF; /* Dodger Blue */
    --dark-background: #121212; /* Very Dark Grey */
    --light-text: #E0E0E0; /* Light Grey for body text */
    --heading-color: #D4AF37; /* Darker Gold for headings, passes contrast on dark-background */
    --button-text-dark: #121212; /* Text for primary buttons */
    --button-secondary-bg: #0A3D62; /* Darker Blue for secondary button background */
    --button-secondary-text: #FFFFFF; /* Text for secondary buttons */
    --link-color: #1E90FF; /* Dodger Blue for links */
    --border-color: #333333; /* For subtle borders */

    font-family: 'Arial', sans-serif;
    background-color: var(--dark-background);
    color: var(--light-text);
    line-height: 1.6;
}

.page-beginner-guide-how-to-place-a-bet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-beginner-guide-how-to-place-a-bet__hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 144, 255, 0.1)), url('[IMAGE:hero_main_bg]') no-repeat center center/cover;
    background-blend-mode: overlay;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-beginner-guide-how-to-place-a-bet__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-beginner-guide-how-to-place-a-bet__title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-how-to-place-a-bet__subtitle {
    font-size: 1.3em;
    color: var(--light-text);
    margin-bottom: 30px;
}

.page-beginner-guide-how-to-place-a-bet__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.page-beginner-guide-how-to-place-a-bet__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-how-to-place-a-bet__section {
    padding: 60px 0;
}

.page-beginner-guide-how-to-place-a-bet__section--steps {
    background-color: #1A1A1A;
}

.page-beginner-guide-how-to-place-a-bet__section--responsible-gambling {
    background-color: #181818;
}

.page-beginner-guide-how-to-place-a-bet__section--faq {
    background-color: #1A1A1A;
}

.page-beginner-guide-how-to-place-a-bet__section-title {
    font-size: 2.5em;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-beginner-guide-how-to-place-a-bet__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-how-to-place-a-bet__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-beginner-guide-how-to-place-a-bet__step-item {
    background-color: #1E1E1E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-how-to-place-a-bet__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-how-to-place-a-bet__step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--button-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-how-to-place-a-bet__step-heading {
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.page-beginner-guide-how-to-place-a-bet__step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.page-beginner-guide-how-to-place-a-bet__game-type {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.page-beginner-guide-how-to-place-a-bet__game-type:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-beginner-guide-how-to-place-a-bet__game-type-heading {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-beginner-guide-how-to-place-a-bet__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.page-beginner-guide-how-to-place-a-bet__list li {
    margin-bottom: 10px;
}

.page-beginner-guide-how-to-place-a-bet__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-beginner-guide-how-to-place-a-bet__btn--primary {
    background-color: var(--primary-color);
    color: var(--button-text-dark);
    border: 2px solid var(--primary-color);
}

.page-beginner-guide-how-to-place-a-bet__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-beginner-guide-how-to-place-a-bet__btn--secondary {
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    border: 2px solid var(--button-secondary-bg);
    margin-left: 15px;
}

.page-beginner-guide-how-to-place-a-bet__btn--secondary:hover {
    background-color: #082D4B; /* Slightly darker secondary blue */
    border-color: #082D4B;
    transform: translateY(-2px);
}

.page-beginner-guide-how-to-place-a-bet__container--flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-beginner-guide-how-to-place-a-bet__text-content {
    flex: 1;
}

.page-beginner-guide-how-to-place-a-bet__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide-how-to-place-a-bet__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-beginner-guide-how-to-place-a-bet__faq-item {
    background-color: #1E1E1E;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-beginner-guide-how-to-place-a-bet__faq-question {
    font-size: 1.4em;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-beginner-guide-how-to-place-a-bet__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-beginner-guide-how-to-place-a-bet__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-beginner-guide-how-to-place-a-bet__faq-answer {
    color: var(--light-text);
    margin-top: 0;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.page-beginner-guide-how-to-place-a-bet__faq-answer.active {
    display: block;
}

.page-beginner-guide-how-to-place-a-bet__cta-bottom {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(90deg, #1E90FF, #0A3D62);
    color: #FFFFFF;
}

.page-beginner-guide-how-to-place-a-bet__cta-bottom .page-beginner-guide-how-to-place-a-bet__section-title {
    color: #FFFFFF;
}

.page-beginner-guide-how-to-place-a-bet__cta-bottom .page-beginner-guide-how-to-place-a-bet__section-title::after {
    background-color: var(--primary-color);
}

.page-beginner-guide-how-to-place-a-bet__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-beginner-guide-how-to-place-a-bet__copyright {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #666;
    background-color: #0A0A0A;
    border-top: 1px solid #222;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-how-to-place-a-bet__title {
        font-size: 2.8em;
    }
    .page-beginner-guide-how-to-place-a-bet__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-how-to-place-a-bet__container--flex {
        flex-direction: column;
    }
    .page-beginner-guide-how-to-place-a-bet__btn {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-beginner-guide-how-to-place-a-bet__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-how-to-place-a-bet__hero {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-beginner-guide-how-to-place-a-bet__title {
        font-size: 2.2em;
    }
    .page-beginner-guide-how-to-place-a-bet__subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-how-to-place-a-bet__section {
        padding: 40px 0;
    }
    .page-beginner-guide-how-to-place-a-bet__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-beginner-guide-how-to-place-a-bet__step-item {
        padding: 25px;
    }
    .page-beginner-guide-how-to-place-a-bet__step-heading {
        font-size: 1.5em;
    }
    .page-beginner-guide-how-to-place-a-bet__game-type-heading {
        font-size: 1.3em;
    }
    .page-beginner-guide-how-to-place-a-bet__cta-bottom {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-how-to-place-a-bet__title {
        font-size: 1.8em;
    }
    .page-beginner-guide-how-to-place-a-bet__subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-how-to-place-a-bet__btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .page-beginner-guide-how-to-place-a-bet__hero-content .page-beginner-guide-how-to-place-a-bet__btn--secondary {
        margin-top: 10px;
    }
    .page-beginner-guide-how-to-place-a-bet__cta-bottom .page-beginner-guide-how-to-place-a-bet__btn {
        margin-top: 10px;
    }
    .page-beginner-guide-how-to-place-a-bet__cta-bottom .page-beginner-guide-how-to-place-a-bet__btn--secondary {
        margin-left: 0;
    }
}