/* style/slot-games.css */

/* --- Base Styles & Layout --- */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main for general content on dark background */
    background-color: #08160F; /* Background color from palette */
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__section--dark {
    background-color: #11271B; /* Card BG from palette */
}

/* --- Typography --- */
.page-slot-games h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1, no fixed huge size */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-slot-games h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2AD16F; /* Bright green for emphasis */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-games h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2AD16F, #13994A); /* Green gradient */
    border-radius: 2px;
}

.page-slot-games h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-slot-games p {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-slot-games ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-slot-games ul li {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-slot-games ul li::before {
    content: '✅'; /* Or a custom icon */
    position: absolute;
    left: 0;
    color: #2AD16F; /* Green accent */
}

/* --- Hero Section --- */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it takes full width */
    margin-bottom: 40px; /* Space between image and content */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__hero-description {
    font-size: 1.25rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 30px;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-top: 30px;
}

.page-slot-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn--primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
    background-color: transparent;
    color: #2AD16F; /* Green accent */
    border: 2px solid #2AD16F;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-slot-games__btn--secondary:hover {
    background-color: rgba(42, 209, 111, 0.1);
    color: #F2FFF6; /* Text Main */
    border-color: #F2FFF6; /* Text Main */
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
    transform: translateY(-2px);
}

/* --- Game Categories Section --- */
.page-slot-games__game-categories {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green from palette */
}

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

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-slot-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-slot-games__game-card-content {
    padding: 20px;
    flex-grow: 1;
}

.page-slot-games__game-card-title {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-slot-games__game-card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-slot-games__game-card-link {
    display: inline-block;
    color: #57E38D; /* Glow color for link */
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.page-slot-games__game-card-link:hover {
    color: #F2C14E; /* Gold on hover */
}

/* --- Advantages Section --- */
.page-slot-games__advantages {
    padding: 60px 0;
    background-color: #08160F; /* Background color */
}

.page-slot-games__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__advantage-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slot-games__advantage-item:hover {
    transform: translateY(-5px);
}

.page-slot-games__advantage-icon {
    font-size: 3rem;
    color: #57E38D; /* Glow color */
    margin-bottom: 20px;
}

.page-slot-games__advantage-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__advantage-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

/* --- How-to-Play Section --- */
.page-slot-games__how-to-play {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-slot-games__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1;
}

.page-slot-games__step-title {
    font-size: 1.25rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__step-description {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
}

/* --- Strategy Section --- */
.page-slot-games__strategy {
    padding: 60px 0;
    background-color: #08160F; /* Background color */
}

.page-slot-games__strategy-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__strategy-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__strategy-item h3 {
    color: #57E38D; /* Glow color */
    margin-bottom: 10px;
}

.page-slot-games__strategy-item p {
    color: #A7D9B8; /* Text Secondary */
}

/* --- Promotions Section --- */
.page-slot-games__promotions {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-games__promotion-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    text-align: left;
}

.page-slot-games__promotion-card:hover {
    transform: translateY(-5px);
}

.page-slot-games__promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-slot-games__promotion-content {
    padding: 20px;
}

.page-slot-games__promotion-title {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__promotion-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

/* --- Safety Section --- */
.page-slot-games__safety {
    padding: 60px 0;
    background-color: #08160F; /* Background color */
}

.page-slot-games__safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__safety-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-slot-games__safety-icon {
    font-size: 3rem;
    color: #F2C14E; /* Gold color */
    margin-bottom: 20px;
}

.page-slot-games__safety-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-slot-games__safety-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

/* --- FAQ Section --- */
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-slot-games__faq-item details {
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__faq-item details:last-child {
    border-bottom: none;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow color */
    margin-left: 15px;
}

.page-slot-games__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-games__container {
        padding: 0 15px;
    }

    .page-slot-games__section {
        padding: 40px 0;
    }

    .page-slot-games h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-slot-games h2 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-slot-games h3 {
        font-size: clamp(1.3rem, 6vw, 1.6rem);
    }

    .page-slot-games p {
        font-size: 1rem;
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 40px;
    }

    .page-slot-games__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box !important;
    }

    .page-slot-games__btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games__game-grid,
    .page-slot-games__advantage-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__promotion-grid,
    .page-slot-games__safety-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 0 15px;
    }

    .page-slot-games__game-card,
    .page-slot-games__advantage-item,
    .page-slot-games__step-item,
    .page-slot-games__promotion-card,
    .page-slot-games__safety-item {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Mobile image responsiveness */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games__hero-image-wrapper,
    .page-slot-games__game-card-image,
    .page-slot-games__promotion-image,
    .page-slot-games__strategy-image { /* Assuming strategy section might have images */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Mobile video responsiveness (if any, though not explicitly requested for this page) */
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-slot-games__video-section {
        padding-top: 10px !important;
    }
}