/* style/betting-guides-betting-terms-glossary.css */
.page-betting-guides-betting-terms-glossary {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #1A202C;
}

.page-betting-guides-betting-terms-glossary__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-guides-betting-terms-glossary__hero-section {
    position: relative;
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Darker gradient for depth */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

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

.page-betting-guides-betting-terms-glossary__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-guides-betting-terms-glossary__brand {
    color: #FFD700;
    font-weight: bold;
}

.page-betting-guides-betting-terms-glossary__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-betting-guides-betting-terms-glossary__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-guides-betting-terms-glossary__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-betting-guides-betting-terms-glossary__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-betting-guides-betting-terms-glossary__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.page-betting-guides-betting-terms-glossary__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-betting-guides-betting-terms-glossary__intro-section,
.page-betting-guides-betting-terms-glossary__content-section,
.page-betting-guides-betting-terms-glossary__cta-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-betting-guides-betting-terms-glossary__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-guides-betting-terms-glossary__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-betting-guides-betting-terms-glossary__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-betting-guides-betting-terms-glossary__content-section--alt {
    background-color: #1A202C;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-betting-guides-betting-terms-glossary__term-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-guides-betting-terms-glossary__term-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 5px;
}

.page-betting-guides-betting-terms-glossary__term-definition {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-betting-guides-betting-terms-glossary__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-betting-terms-glossary__cta-section {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
    position: relative;
    overflow: hidden;
}

.page-betting-guides-betting-terms-glossary__cta-section .page-betting-guides-betting-terms-glossary__section-title {
    color: #1A202C;
}

.page-betting-guides-betting-terms-glossary__cta-section .page-betting-guides-betting-terms-glossary__section-title::after {
    background-color: #1A202C;
}

.page-betting-guides-betting-terms-glossary__cta-title {
    font-size: 3em;
    color: #1A202C;
    margin-bottom: 20px;
}

.page-betting-guides-betting-terms-glossary__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-guides-betting-terms-glossary__cta-buttons .page-betting-guides-betting-terms-glossary__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-betting-terms-glossary__cta-buttons .page-betting-guides-betting-terms-glossary__btn--primary:hover {
    background-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-betting-terms-glossary__cta-buttons .page-betting-guides-betting-terms-glossary__btn--secondary {
    border-color: #1A202C;
    color: #1A202C;
}

.page-betting-guides-betting-terms-glossary__cta-buttons .page-betting-guides-betting-terms-glossary__btn--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

.page-betting-guides-betting-terms-glossary__cta-image {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    max-height: 80%;
    width: auto;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-betting-guides-betting-terms-glossary__hero-title {
        font-size: 2.8em;
    }
    .page-betting-guides-betting-terms-glossary__hero-subtitle {
        font-size: 1.1em;
    }
    .page-betting-guides-betting-terms-glossary__section-title {
        font-size: 2em;
    }
    .page-betting-guides-betting-terms-glossary__term-title {
        font-size: 1.5em;
    }
    .page-betting-guides-betting-terms-glossary__cta-title {
        font-size: 2.5em;
    }
    .page-betting-guides-betting-terms-glossary__cta-description {
        font-size: 1.1em;
    }
    .page-betting-guides-betting-terms-glossary__cta-image {
        right: -150px;
        max-height: 70%;
    }
}

@media (max-width: 768px) {
    .page-betting-guides-betting-terms-glossary__hero-section,
    .page-betting-guides-betting-terms-glossary__intro-section,
    .page-betting-guides-betting-terms-glossary__content-section,
    .page-betting-guides-betting-terms-glossary__cta-section {
        padding: 40px 0;
    }
    .page-betting-guides-betting-terms-glossary__hero-title {
        font-size: 2.2em;
    }
    .page-betting-guides-betting-terms-glossary__hero-subtitle {
        font-size: 1em;
    }
    .page-betting-guides-betting-terms-glossary__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-guides-betting-terms-glossary__btn--secondary {
        margin-left: 10px;
    }
    .page-betting-guides-betting-terms-glossary__section-title {
        font-size: 1.8em;
    }
    .page-betting-guides-betting-terms-glossary__term-list {
        grid-template-columns: 1fr;
    }
    .page-betting-guides-betting-terms-glossary__cta-title {
        font-size: 2em;
    }
    .page-betting-guides-betting-terms-glossary__cta-description {
        font-size: 1em;
    }
    .page-betting-guides-betting-terms-glossary__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-betting-guides-betting-terms-glossary__btn--secondary {
        margin-left: 0;
    }
    .page-betting-guides-betting-terms-glossary__cta-image {
        display: none;
    }
    .page-betting-guides-betting-terms-glossary__hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-betting-guides-betting-terms-glossary__hero-title {
        font-size: 1.8em;
    }
    .page-betting-guides-betting-terms-glossary__section-title {
        font-size: 1.5em;
    }
    .page-betting-guides-betting-terms-glossary__term-title {
        font-size: 1.3em;
    }
    .page-betting-guides-betting-terms-glossary__cta-title {
        font-size: 1.8em;
    }
}