/* style/game-types-lottery-games-rules.css */

:root {
    --page-game-types-lottery-games-rules-primary-color: #1A2B4C;
    --page-game-types-lottery-games-rules-secondary-color: #FFD700;
    --page-game-types-lottery-games-rules-text-light: #FFFFFF;
    --page-game-types-lottery-games-rules-text-dark: #333333;
    --page-game-types-lottery-games-rules-bg-light: #F8F8F8;
    --page-game-types-lottery-games-rules-bg-dark: #1A2B4C;
    --page-game-types-lottery-games-rules-border-color: #CCCCCC;
}

.page-game-types-lottery-games-rules {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-game-types-lottery-games-rules-text-dark);
}

.page-game-types-lottery-games-rules .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-game-types-lottery-games-rules .hero-section {
    background: linear-gradient(135deg, var(--page-game-types-lottery-games-rules-primary-color), #2C426F);
    color: var(--page-game-types-lottery-games-rules-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-types-lottery-games-rules .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games-rules .hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-types-lottery-games-rules .highlight {
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    font-weight: bold;
}

/* Buttons */
.page-game-types-lottery-games-rules .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-game-types-lottery-games-rules .primary-btn {
    background-color: var(--page-game-types-lottery-games-rules-secondary-color);
    color: var(--page-game-types-lottery-games-rules-primary-color);
    margin: 0 10px;
}

.page-game-types-lottery-games-rules .primary-btn:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games-rules .secondary-btn {
    background-color: transparent;
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    border: 2px solid var(--page-game-types-lottery-games-rules-secondary-color);
    margin: 0 10px;
}

.page-game-types-lottery-games-rules .secondary-btn:hover {
    background-color: var(--page-game-types-lottery-games-rules-secondary-color);
    color: var(--page-game-types-lottery-games-rules-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-game-types-lottery-games-rules .content-section {
    padding: 80px 0;
}

.page-game-types-lottery-games-rules .bg-light-blue {
    background-color: var(--page-game-types-lottery-games-rules-bg-light);
    color: var(--page-game-types-lottery-games-rules-text-dark);
}

.page-game-types-lottery-games-rules .bg-dark-blue {
    background-color: var(--page-game-types-lottery-games-rules-bg-dark);
    color: var(--page-game-types-lottery-games-rules-text-light);
}

.page-game-types-lottery-games-rules .section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--page-game-types-lottery-games-rules-primary-color);
}

.page-game-types-lottery-games-rules .bg-dark-blue .section-title {
    color: var(--page-game-types-lottery-games-rules-secondary-color);
}

.page-game-types-lottery-games-rules .section-intro {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
}

.page-game-types-lottery-games-rules .bg-dark-blue .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.page-game-types-lottery-games-rules .text-gold {
    color: var(--page-game-types-lottery-games-rules-secondary-color);
}

.page-game-types-lottery-games-rules .text-white {
    color: var(--page-game-types-lottery-games-rules-text-light);
}

.page-game-types-lottery-games-rules .highlight-gold {
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    font-weight: bold;
}

/* Game Type Grid */
.page-game-types-lottery-games-rules .game-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-types-lottery-games-rules .game-card {
    background-color: var(--page-game-types-lottery-games-rules-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery-games-rules .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery-games-rules .game-card-image {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-game-types-lottery-games-rules .game-card-title {
    font-size: 1.8em;
    color: var(--page-game-types-lottery-games-rules-primary-color);
    margin-bottom: 15px;
}

.page-game-types-lottery-games-rules .game-card-description {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 20px;
}

.page-game-types-lottery-games-rules .game-rules-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    color: #555;
}

.page-game-types-lottery-games-rules .game-rules-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-game-types-lottery-games-rules .game-rules-list li::before {
    content: '✓';
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-game-types-lottery-games-rules .list-highlight {
    color: var(--page-game-types-lottery-games-rules-primary-color);
}

/* Step-by-Step Guide */
.page-game-types-lottery-games-rules .step-by-step-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-game-types-lottery-games-rules .guide-step {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.page-game-types-lottery-games-rules .guide-step:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-types-lottery-games-rules .step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--page-game-types-lottery-games-rules-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-lottery-games-rules .icon-image {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1); /* Makes icons white if they are dark */
}

.page-game-types-lottery-games-rules .step-title {
    font-size: 1.6em;
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    margin-bottom: 15px;
}

.page-game-types-lottery-games-rules .step-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05em;
}

.page-game-types-lottery-games-rules .text-link {
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-game-types-lottery-games-rules .text-link:hover {
    color: #E6C200;
}

.page-game-types-lottery-games-rules .text-center {
    text-align: center;
    margin-top: 50px;
}

/* Feature Grid */
.page-game-types-lottery-games-rules .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-types-lottery-games-rules .feature-item {
    background-color: var(--page-game-types-lottery-games-rules-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-types-lottery-games-rules .feature-item:hover {
    transform: translateY(-5px);
}

.page-game-types-lottery-games-rules .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(15%) sepia(20%) saturate(2000%) hue-rotate(200deg) brightness(90%); /* Dark blue tint */
}

.page-game-types-lottery-games-rules .feature-title {
    font-size: 1.7em;
    color: var(--page-game-types-lottery-games-rules-primary-color);
    margin-bottom: 15px;
}

.page-game-types-lottery-games-rules .feature-description {
    font-size: 1.05em;
    color: #666;
}

/* Info Block */
.page-game-types-lottery-games-rules .info-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.page-game-types-lottery-games-rules .info-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
}

.page-game-types-lottery-games-rules .info-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-types-lottery-games-rules .info-description {
    font-size: 1.05em;
    line-height: 1.7;
}

/* Responsible Gaming */
.page-game-types-lottery-games-rules .responsible-gaming-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-game-types-lottery-games-rules .responsible-gaming-text {
    flex: 2;
    min-width: 300px;
    font-size: 1.05em;
    color: #555;
}

.page-game-types-lottery-games-rules .responsible-gaming-text p {
    margin-bottom: 15px;
}

.page-game-types-lottery-games-rules .responsible-gaming-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-game-types-lottery-games-rules .responsible-gaming-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-game-types-lottery-games-rules .responsible-gaming-list li::before {
    content: '•';
    color: var(--page-game-types-lottery-games-rules-primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-game-types-lottery-games-rules .responsible-gaming-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-game-types-lottery-games-rules .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.page-game-types-lottery-games-rules .faq-container {
    margin-top: 50px;
}

.page-game-types-lottery-games-rules .faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-game-types-lottery-games-rules .faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-game-types-lottery-games-rules .faq-question {
    font-size: 1.5em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-types-lottery-games-rules .faq-answer {
    font-size: 1.05em;
    line-height: 1.7;
    margin-top: 15px;
    /* Potentially add display: none/block for accordion functionality via JS */
}

/* CTA Section */
.page-game-types-lottery-games-rules .cta-section {
    background: linear-gradient(45deg, #2C426F, var(--page-game-types-lottery-games-rules-primary-color));
    color: var(--page-game-types-lottery-games-rules-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-game-types-lottery-games-rules .cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-game-types-lottery-games-rules-secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games-rules .cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-game-types-lottery-games-rules .cta-buttons .btn {
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-types-lottery-games-rules .hero-title {
        font-size: 2.8em;
    }

    .page-game-types-lottery-games-rules .section-title {
        font-size: 2.2em;
    }

    .page-game-types-lottery-games-rules .game-type-grid,
    .page-game-types-lottery-games-rules .step-by-step-guide,
    .page-game-types-lottery-games-rules .feature-grid,
    .page-game-types-lottery-games-rules .info-block {
        grid-template-columns: 1fr;
    }

    .page-game-types-lottery-games-rules .responsible-gaming-content {
        flex-direction: column;
    }

    .page-game-types-lottery-games-rules .cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-types-lottery-games-rules .hero-section,
    .page-game-types-lottery-games-rules .content-section,
    .page-game-types-lottery-games-rules .cta-section {
        padding: 60px 0;
    }

    .page-game-types-lottery-games-rules .hero-title {
        font-size: 2.2em;
    }

    .page-game-types-lottery-games-rules .hero-description {
        font-size: 1.1em;
    }

    .page-game-types-lottery-games-rules .section-title {
        font-size: 1.8em;
    }

    .page-game-types-lottery-games-rules .game-card,
    .page-game-types-lottery-games-rules .guide-step,
    .page-game-types-lottery-games-rules .feature-item,
    .page-game-types-lottery-games-rules .info-item,
    .page-game-types-lottery-games-rules .faq-item {
        padding: 20px;
    }

    .page-game-types-lottery-games-rules .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-types-lottery-games-rules .cta-title {
        font-size: 2em;
    }

    .page-game-types-lottery-games-rules .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-types-lottery-games-rules .cta-buttons .btn {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-game-types-lottery-games-rules .hero-title {
        font-size: 1.8em;
    }

    .page-game-types-lottery-games-rules .section-title {
        font-size: 1.6em;
    }

    .page-game-types-lottery-games-rules .game-card-title,
    .page-game-types-lottery-games-rules .step-title,
    .page-game-types-lottery-games-rules .feature-title,
    .page-game-types-lottery-games-rules .info-title,
    .page-game-types-lottery-games-rules .faq-question {
        font-size: 1.4em;
    }
}