/* style/betting-guides-glossary.css */
.page-betting-guides-glossary {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-betting-guides-glossary__hero {
    background: linear-gradient(135deg, #0A2463, #3A5C9B);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-guides-glossary__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-betting-guides-glossary__hero > .page-betting-guides-glossary__container {
    position: relative;
    z-index: 1;
}

.page-betting-guides-glossary__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-betting-guides-glossary__title .highlight {
    color: #FFD700;
}

.page-betting-guides-glossary__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-betting-guides-glossary__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    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;
    border: 2px solid #FFD700;
}

.page-betting-guides-glossary__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-betting-guides-glossary__content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-betting-guides-glossary__intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: justify;
    color: #555;
}

.page-betting-guides-glossary__intro-text .keyword {
    font-weight: bold;
    color: #0A2463;
}

.page-betting-guides-glossary__section-heading {
    font-size: 2.5em;
    color: #0A2463;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 15px;
}

.page-betting-guides-glossary__section-heading .highlight {
    color: #FFD700;
}

.page-betting-guides-glossary__alphabet-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background-color: #0A2463;
    padding: 15px;
    border-radius: 8px;
}

.page-betting-guides-glossary__alphabet-index a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #FFD700;
    color: #0A2463;
    font-weight: bold;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-betting-guides-glossary__alphabet-index a:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-betting-guides-glossary__term-heading {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 5px solid #FFD700;
}

.page-betting-guides-glossary__term-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-guides-glossary__sub-heading {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-betting-guides-glossary__term-item p {
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

.page-betting-guides-glossary__term-item .keyword {
    font-weight: bold;
    color: #0A2463;
}

.page-betting-guides-glossary__image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-guides-glossary__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-betting-guides-glossary__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

.page-betting-guides-glossary__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-betting-guides-glossary__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border-color: #0A2463;
}

.page-betting-guides-glossary__cta-button--secondary:hover {
    background-color: #1A3E8A;
    border-color: #1A3E8A;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-guides-glossary__title {
        font-size: 2.8em;
    }
    .page-betting-guides-glossary__subtitle {
        font-size: 1.1em;
    }
    .page-betting-guides-glossary__section-heading {
        font-size: 2em;
    }
    .page-betting-guides-glossary__term-heading {
        font-size: 1.8em;
    }
    .page-betting-guides-glossary__sub-heading {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-betting-guides-glossary__hero {
        padding: 60px 0;
    }
    .page-betting-guides-glossary__title {
        font-size: 2.2em;
    }
    .page-betting-guides-glossary__subtitle {
        font-size: 1em;
    }
    .page-betting-guides-glossary__content {
        padding: 40px 0;
    }
    .page-betting-guides-glossary__section-heading {
        font-size: 1.8em;
    }
    .page-betting-guides-glossary__term-heading {
        font-size: 1.6em;
    }
    .page-betting-guides-glossary__sub-heading {
        font-size: 1.2em;
    }
    .page-betting-guides-glossary__alphabet-index a {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.9em;
    }
    .page-betting-guides-glossary__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-betting-guides-glossary__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-betting-guides-glossary__hero {
        padding: 40px 0;
    }
    .page-betting-guides-glossary__title {
        font-size: 1.8em;
    }
    .page-betting-guides-glossary__subtitle {
        font-size: 0.9em;
    }
    .page-betting-guides-glossary__section-heading {
        font-size: 1.5em;
    }
    .page-betting-guides-glossary__term-heading {
        font-size: 1.4em;
    }
    .page-betting-guides-glossary__sub-heading {
        font-size: 1.1em;
    }
    .page-betting-guides-glossary__alphabet-index {
        gap: 5px;
        padding: 10px;
    }
    .page-betting-guides-glossary__alphabet-index a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.8em;
    }
    .page-betting-guides-glossary__cta-button {
        width: 90%;
    }
}