/* style/game-reviews-lottery-types-rules.css */
.page-game-reviews-lottery-types-rules {
    font-family: 'Arial', sans-serif;
    color: #0A2239;
    line-height: 1.6;
}

.page-game-reviews-lottery-types-rules__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-lottery-types-rules__hero {
    background: linear-gradient(135deg, #0A2239 0%, #304a63 100%); /* Dark blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-game-reviews-lottery-types-rules__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B44B; /* Golden yellow for highlight */
    font-weight: bold;
    line-height: 1.2;
}

.page-game-reviews-lottery-types-rules__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #CCCCCC;
}

.page-game-reviews-lottery-types-rules__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-reviews-lottery-types-rules__button--primary {
    background-color: #E0B44B; /* Golden yellow */
    color: #0A2239; /* Dark blue */
}

.page-game-reviews-lottery-types-rules__button--primary:hover {
    background-color: #f5c760;
    transform: translateY(-2px);
}

.page-game-reviews-lottery-types-rules__button--secondary {
    background-color: #0A2239; /* Dark blue */
    color: #E0B44B; /* Golden yellow */
    border: 2px solid #E0B44B;
}

.page-game-reviews-lottery-types-rules__button--secondary:hover {
    background-color: #1a3c5d;
    transform: translateY(-2px);
}

.page-game-reviews-lottery-types-rules__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-lottery-types-rules__section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-game-reviews-lottery-types-rules__section--dark {
    background-color: #F8F8F8; /* Light grey background */
    color: #0A2239;
}

.page-game-reviews-lottery-types-rules__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-reviews-lottery-types-rules__section-title .highlight {
    color: #E0B44B;
}

.page-game-reviews-lottery-types-rules__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B44B;
    border-radius: 2px;
}

.page-game-reviews-lottery-types-rules__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-game-reviews-lottery-types-rules__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-reviews-lottery-types-rules__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-lottery-types-rules__feature-title {
    font-size: 1.6em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-game-reviews-lottery-types-rules__feature-item p {
    color: #555555;
}

.page-game-reviews-lottery-types-rules__game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-reviews-lottery-types-rules__game-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-lottery-types-rules__game-card:hover {
    transform: translateY(-5px);
}

.page-game-reviews-lottery-types-rules__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #EEEEEE;
}

.page-game-reviews-lottery-types-rules__game-title {
    font-size: 1.4em;
    color: #0A2239;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-game-reviews-lottery-types-rules__game-card p {
    color: #555555;
    padding: 0 15px 20px;
}

.page-game-reviews-lottery-types-rules__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-game-reviews-lottery-types-rules__guide-list {
    list-style: none;
    padding: 0;
}

.page-game-reviews-lottery-types-rules__guide-list li {
    background-color: #F8F8F8;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-lottery-types-rules__guide-list li h3 {
    font-size: 1.8em;
    color: #0A2239;
    margin-bottom: 10px;
}

.page-game-reviews-lottery-types-rules__guide-list li p {
    color: #555555;
    margin-bottom: 15px;
}

.page-game-reviews-lottery-types-rules__tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-game-reviews-lottery-types-rules__tip-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-game-reviews-lottery-types-rules__tip-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-lottery-types-rules__tip-title {
    font-size: 1.6em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-game-reviews-lottery-types-rules__tip-item p {
    color: #555555;
}

.page-game-reviews-lottery-types-rules__strategy-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-lottery-types-rules__final-cta {
    text-align: center;
    background-color: #0A2239;
    color: #FFFFFF;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-lottery-types-rules__final-cta h2 {
    color: #E0B44B;
    margin-bottom: 20px;
}

.page-game-reviews-lottery-types-rules__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #CCCCCC;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-reviews-lottery-types-rules__hero-title {
        font-size: 2.5em;
    }

    .page-game-reviews-lottery-types-rules__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-reviews-lottery-types-rules__section-title {
        font-size: 2em;
    }

    .page-game-reviews-lottery-types-rules__features, .page-game-reviews-lottery-types-rules__game-types, .page-game-reviews-lottery-types-rules__tips {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-lottery-types-rules__guide-list li h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-lottery-types-rules__hero-title {
        font-size: 2em;
    }

    .page-game-reviews-lottery-types-rules__hero-subtitle {
        font-size: 1em;
    }

    .page-game-reviews-lottery-types-rules__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-reviews-lottery-types-rules__section {
        padding: 40px 0;
    }

    .page-game-reviews-lottery-types-rules__section-title {
        font-size: 1.8em;
    }
}