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

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

.page-gambling-glossary__hero {
    background: linear-gradient(135deg, #1A2B5B 0%, #3a4b7d 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-glossary__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-gambling-glossary__hero-pulse 15s infinite alternate;
}

@keyframes page-gambling-glossary__hero-pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-gambling-glossary__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-gambling-glossary__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-gambling-glossary__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-gambling-glossary__hero-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-gambling-glossary__introduction, 
.page-gambling-glossary__content, 
.page-gambling-glossary__related-glossary, 
.page-gambling-glossary__conclusion {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gambling-glossary__introduction {
    text-align: center;
    padding-top: 40px;
}

.page-gambling-glossary__section-title {
    font-size: 2.5em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-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-gambling-glossary__introduction p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555;
}

.page-gambling-glossary__image-wrapper {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-glossary__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-gambling-glossary__glossary-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.page-gambling-glossary__sub-section-title {
    font-size: 1.8em;
    color: #1A2B5B;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-gambling-glossary__glossary-list dt {
    font-weight: bold;
    color: #1A2B5B;
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.page-gambling-glossary__glossary-list dt::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
}

.page-gambling-glossary__glossary-list dd {
    margin-left: 15px;
    margin-bottom: 15px;
    color: #555;
    padding-left: 15px;
    border-left: 3px solid #e0e0e0;
}

.page-gambling-glossary__glossary-list dd strong {
    color: #1A2B5B;
}

.page-gambling-glossary__glossary-list dd a {
    color: #1A2B5B;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gambling-glossary__glossary-list dd a:hover {
    color: #FFD700;
}

.page-gambling-glossary__call-to-action {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f4f8;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.page-gambling-glossary__call-to-action p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-glossary__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gambling-glossary__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gambling-glossary__button--primary {
    background-color: #FFD700;
    color: #1A2B5B;
}

.page-gambling-glossary__button--primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-glossary__button--secondary {
    background-color: #1A2B5B;
    color: #ffffff;
    border: 2px solid #1A2B5B;
}

.page-gambling-glossary__button--secondary:hover {
    background-color: #0d1e4a;
    border-color: #0d1e4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-glossary__related-glossary {
    background-color: #f0f4f8;
}

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

.page-gambling-glossary__detail-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-gambling-glossary__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-gambling-glossary__detail-title {
    font-size: 1.5em;
    color: #1A2B5B;
    margin-bottom: 15px;
}

.page-gambling-glossary__detail-title a {
    text-decoration: none;
    color: #1A2B5B;
    transition: color 0.3s ease;
}

.page-gambling-glossary__detail-title a:hover {
    color: #FFD700;
}

.page-gambling-glossary__detail-description {
    color: #666;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-gambling-glossary__detail-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gambling-glossary__detail-button:hover {
    background-color: #e5c100;
    transform: translateY(-1px);
}

.page-gambling-glossary__conclusion {
    text-align: center;
    background-color: #ffffff;
}

.page-gambling-glossary__conclusion p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 25px auto;
    color: #555;
}

.page-gambling-glossary__button--final-cta {
    display: inline-block;
    background-color: #1A2B5B;
    color: #FFD700;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-gambling-glossary__button--final-cta:hover {
    background-color: #0d1e4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-glossary__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-glossary__hero-subtitle {
        font-size: 1.2em;
    }
    .page-gambling-glossary__section-title {
        font-size: 2em;
    }
    .page-gambling-glossary__sub-section-title {
        font-size: 1.6em;
    }
    .page-gambling-glossary__glossary-list dt {
        font-size: 1.1em;
    }
    .page-gambling-glossary__glossary-list dd {
        font-size: 0.95em;
    }
    .page-gambling-glossary__buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gambling-glossary__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-gambling-glossary__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-glossary__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-glossary__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-glossary__section-title {
        font-size: 1.8em;
    }
    .page-gambling-glossary__introduction p, 
    .page-gambling-glossary__conclusion p {
        font-size: 1em;
    }
    .page-gambling-glossary__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gambling-glossary__hero {
        padding: 60px 0;
    }
    .page-gambling-glossary__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-glossary__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gambling-glossary__section-title {
        font-size: 1.5em;
    }
    .page-gambling-glossary__sub-section-title {
        font-size: 1.4em;
    }
    .page-gambling-glossary__button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-gambling-glossary__button--final-cta {
        font-size: 1em;
        padding: 15px 25px;
    }
}