/* style/game-reviews-lottery.css */

/* General styles for the page content */
.page-game-reviews-lottery {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text on dark backgrounds for readability */
    background-color: #1A202C; /* Main dark background */
}

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

.page-game-reviews-lottery__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-reviews-lottery__section:nth-of-type(even) {
    background-color: #2a313d; /* Slightly lighter dark background for visual separation */
}

.page-game-reviews-lottery__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold accent for main titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-reviews-lottery__subtitle,
.page-game-reviews-lottery__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc; /* Slightly lighter text for body to ensure contrast */
}

.page-game-reviews-lottery__heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-game-reviews-lottery__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold for high contrast */
}

.page-game-reviews-lottery__btn--primary:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-game-reviews-lottery__btn--secondary {
    background-color: #0028ff; /* Complementary blue for secondary actions */
    color: #e5dfd3;
}

.page-game-reviews-lottery__btn--secondary:hover {
    background-color: #001fcc;
    transform: translateY(-2px);
}

.page-game-reviews-lottery__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-game-reviews-lottery__btn--outline:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-game-reviews-lottery__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-game-reviews-lottery__hero {
    background: linear-gradient(135deg, #1A202C, #000); /* Dark gradient for depth */
    padding: 100px 0;
    color: #e5dfd3;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Why W69 Section (Cards) */
.page-game-reviews-lottery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-lottery__card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.page-game-reviews-lottery__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-lottery__card-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-game-reviews-lottery__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-reviews-lottery__card-description {
    font-size: 1em;
    color: #ccc;
}

/* How to Play Section (Ordered List) */
.page-game-reviews-lottery__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-reviews-lottery__list li {
    background-color: #1A202C;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-game-reviews-lottery__list-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-game-reviews-lottery__list p {
    color: #ccc;
    font-size: 1.05em;
}

.page-game-reviews-lottery__list a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-reviews-lottery__list a:hover {
    color: #e5c100;
}

.page-game-reviews-lottery__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Game Types Section (Article Cards) */
.page-game-reviews-lottery__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-lottery__article-card {
    background-color: #1A202C;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.page-game-reviews-lottery__article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-lottery__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-game-reviews-lottery__article-title {
    font-size: 1.6em;
    padding: 20px 20px 10px;
    color: #FFD700;
}

.page-game-reviews-lottery__article-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-game-reviews-lottery__article-title a:hover {
    color: #e5c100;
    text-decoration: underline;
}

.page-game-reviews-lottery__article-excerpt {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 0.95em;
}

/* Promotions Section */
.page-game-reviews-lottery__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-game-reviews-lottery__promo-list li {
    display: flex;
    align-items: flex-start;
    background-color: #1A202C;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #0028ff; /* Blue accent for promos */
}

.page-game-reviews-lottery__promo-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 5px;
}

.page-game-reviews-lottery__promo-list p {
    color: #ccc;
    font-size: 1.05em;
}

.page-game-reviews-lottery__promo-list strong {
    color: #FFD700;
}

/* App Download Section */
.page-game-reviews-lottery__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-game-reviews-lottery__app-text {
    flex: 1;
    min-width: 300px;
}

.page-game-reviews-lottery__app-text .page-game-reviews-lottery__heading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-game-reviews-lottery__app-text .page-game-reviews-lottery__heading::after {
    left: 0;
    transform: translateX(0);
}

.page-game-reviews-lottery__app-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-reviews-lottery__app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-game-reviews-lottery__feature-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 3px;
    flex-shrink: 0;
}

.page-game-reviews-lottery__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-game-reviews-lottery__app-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 5px solid #FFD700;
}

/* Responsible Gambling Section */
.page-game-reviews-lottery__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-reviews-lottery__responsible-list li {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0028ff;
    color: #ccc;
    font-size: 1.05em;
}

.page-game-reviews-lottery__responsible-list strong {
    color: #FFD700;
}

.page-game-reviews-lottery__responsible-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-game-reviews-lottery__section--conclusion p {
    margin-bottom: 20px;
    color: #ccc;
}

.page-game-reviews-lottery__section--conclusion a {
    color: #FFD700;
    text-decoration: underline;
}

.page-game-reviews-lottery__section--conclusion a:hover {
    color: #e5c100;
}

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

    .page-game-reviews-lottery__heading {
        font-size: 2em;
    }

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

    .page-game-reviews-lottery__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-reviews-lottery__grid,
    .page-game-reviews-lottery__article-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-lottery__app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-game-reviews-lottery__app-text .page-game-reviews-lottery__heading {
        text-align: center;
    }

    .page-game-reviews-lottery__app-text .page-game-reviews-lottery__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-game-reviews-lottery__app-features li {
        justify-content: center;
    }
}

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

    .page-game-reviews-lottery__heading {
        font-size: 1.8em;
    }

    .page-game-reviews-lottery__hero {
        padding: 60px 0;
    }

    .page-game-reviews-lottery__section {
        padding: 40px 0;
    }

    .page-game-reviews-lottery__btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .page-game-reviews-lottery__cta-group {
        flex-direction: column;
    }
}