/* style/slots-games.css */
.page-slots-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f2eee8; /* Light text for dark background */
    background-color: #0D1117; /* Main dark background */
    line-height: 1.6;
    font-size: 16px;
}

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

.page-slots-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-slots-games__hero {
    background: linear-gradient(135deg, #0D1117 0%, #2a3038 100%); /* Darker gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.page-slots-games__hero-content {
    max-width: 600px;
    padding: 20px;
}

.page-slots-games__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-slots-games__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-slots-games__btn--primary {
    background-color: #FFD700; /* Gold accent */
    color: #0D1117; /* Dark text for gold background */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-slots-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0D1117;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-slots-games__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-slots-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-slots-games__hero-image-wrapper {
    flex-shrink: 0;
}

.page-slots-games__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__introduction, .page-slots-games__features, .page-slots-games__game-categories, .page-slots-games__how-to-play, .page-slots-games__promotions, .page-slots-games__app-download, .page-slots-games__detail-pages, .page-slots-games__cta {
    padding: 80px 0;
    text-align: center;
}

.page-slots-games__introduction p, .page-slots-games__how-to-play p, .page-slots-games__promotions p, .page-slots-games__app-download p, .page-slots-games__detail-pages p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #cccccc;
    font-size: 1.1em;
}

.page-slots-games__features {
    background-color: #1a1e24; /* Slightly lighter dark background */
}

.page-slots-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games__feature-item {
    background-color: #0D1117;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Subtle glow */
}

.page-slots-games__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-games__feature-item p {
    font-size: 1em;
    color: #a0a0a0;
    margin: 0;
}

.page-slots-games__game-categories {
    background-color: #0D1117;
}

.page-slots-games__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games__category-item {
    background-color: #1a1e24;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slots-games__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__category-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games__category-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slots-games__category-item p {
    font-size: 0.95em;
    color: #b0b0b0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-slots-games__how-to-play {
    background-color: #1a1e24;
}

.page-slots-games__steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-slots-games__steps li {
    background-color: #0D1117;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    counter-increment: step-counter;
}

.page-slots-games__steps li::before {
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0D1117;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-slots-games__steps li h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 10px;
}

.page-slots-games__steps li p {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.page-slots-games__promotions {
    background-color: #0D1117;
}

.page-slots-games__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games__promo-list li {
    background-color: #1a1e24;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__promo-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__promo-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-slots-games__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-games__promo-list li p {
    font-size: 1em;
    color: #a0a0a0;
    margin: 0;
}

.page-slots-games__app-download {
    background-color: #1a1e24;
}

.page-slots-games__app-download-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.page-slots-games__app-text {
    max-width: 500px;
}

.page-slots-games__app-text .page-slots-games__section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-slots-games__app-text .page-slots-games__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-slots-games__app-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-slots-games__app-benefits li {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-slots-games__app-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-slots-games__app-image-wrapper {
    flex-shrink: 0;
}

.page-slots-games__app-image {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slots-games__detail-pages {
    background-color: #0D1117;
}

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

.page-slots-games__detail-item {
    background-color: #1a1e24;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slots-games__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slots-games__detail-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-slots-games__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slots-games__detail-title a:hover {
    color: #e6c200;
}

.page-slots-games__detail-description {
    font-size: 0.95em;
    color: #b0b0b0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-slots-games__cta {
    background: linear-gradient(135deg, #0D1117 0%, #2a3038 100%);
    padding: 100px 0;
}

.page-slots-games__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slots-games__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-slots-games__hero-image-wrapper {
        order: -1;
    }

    .page-slots-games__app-download-content {
        flex-direction: column;
        text-align: center;
    }

    .page-slots-games__app-text .page-slots-games__section-title {
        text-align: center;
    }

    .page-slots-games__app-text .page-slots-games__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-slots-games__section-title {
        font-size: 2em;
    }

    .page-slots-games__hero-title {
        font-size: 2.5em;
    }

    .page-slots-games__hero-description {
        font-size: 1em;
    }

    .page-slots-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-slots-games__feature-grid, .page-slots-games__category-grid, .page-slots-games__steps, .page-slots-games__promo-list, .page-slots-games__detail-list {
        grid-template-columns: 1fr;
    }

    .page-slots-games__hero-image, .page-slots-games__app-image {
        max-width: 100%;
    }
    
    .page-slots-games__cta-title {
        font-size: 2.2em;
    }
    .page-slots-games__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-slots-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-slots-games__btn--large {
        width: 100%;
        box-sizing: border-box;
    }
}