/* style/gambling-guide-common-terms.css */
.page-gambling-guide-common-terms {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
}

.page-gambling-guide-common-terms .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-guide-common-terms .hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero titles */
    border-bottom: 2px solid #FFD700;
}

.page-gambling-guide-common-terms .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold */
}

.page-gambling-guide-common-terms .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #F0F0F0; /* Light text */
}

.page-gambling-guide-common-terms .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-gambling-guide-common-terms .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gambling-common-terms .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gambling-guide-common-terms .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-gambling-guide-common-terms .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-gambling-guide-common-terms .introduction-section, 
.page-gambling-guide-common-terms .terms-section, 
.page-gambling-guide-common-terms .cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-gambling-guide-common-terms .introduction-section p, 
.page-gambling-guide-common-terms .terms-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #C0C0C0; /* Slightly lighter gray for body text */
}

.page-gambling-guide-common-terms .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-gambling-guide-common-terms .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-gambling-guide-common-terms .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-gambling-guide-common-terms .term-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.page-gambling-guide-common-terms .term-item {
    background-color: #1A2E46; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-gambling-guide-common-terms .term-item:hover {
    transform: translateY(-5px);
    background-color: #243E5C;
}

.page-gambling-guide-common-terms .term-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-gambling-guide-common-terms .term-definition {
    font-size: 1em;
    line-height: 1.7;
    color: #B0B0B0; /* Light gray */
}

.page-gambling-guide-common-terms .text-link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gambling-guide-common-terms .text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-gambling-guide-common-terms .cta-section {
    background-color: #0A192F;
    padding: 80px 0;
    border-top: 2px solid #FFD700;
}

.page-gambling-guide-common-terms .cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
}

.page-gambling-guide-common-terms .cta-description {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-guide-common-terms .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gambling-guide-common-terms .hero-title {
        font-size: 2.5em;
    }
    .page-gambling-guide-common-terms .hero-subtitle {
        font-size: 1.2em;
    }
    .page-gambling-guide-common-terms .section-title {
        font-size: 2em;
    }
    .page-gambling-guide-common-terms .term-grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-guide-common-terms .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-guide-common-terms .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gambling-guide-common-terms .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-gambling-guide-common-terms .hero-title {
        font-size: 2em;
    }
    .page-gambling-guide-common-terms .hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-guide-common-terms .section-title {
        font-size: 1.8em;
    }
    .page-gambling-guide-common-terms .term-item {
        padding: 20px;
    }
    .page-gambling-guide-common-terms .term-title {
        font-size: 1.4em;
    }
    .page-gambling-guide-common-terms .cta-title {
        font-size: 2em;
    }
    .page-gambling-guide-common-terms .cta-description {
        font-size: 1em;
    }
}