:root {
    --vl88-primary: #11A84E; /* Main Color */
    --vl88-secondary: #22C768; /* Auxiliary Color */
    --vl88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --vl88-card-bg: #11271B;
    --vl88-background: #08160F;
    --vl88-text-main: #F2FFF6;
    --vl88-text-secondary: #A7D9B8;
    --vl88-border: #2E7A4E;
    --vl88-glow: #57E38D;
    --vl88-gold: #F2C14E;
    --vl88-divider: #1E3A2A;
    --vl88-deep-green: #0A4B2C;
}

.page-slot-games {
    color: var(--vl88-text-main); /* Light text for dark body background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 0; /* Handled by body padding-top in shared.css */
    background-color: var(--vl88-background);
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    padding: 80px 20px 40px;
    text-align: center;
    background-color: var(--vl88-deep-green); /* Darker background for hero */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small decorative top margin */
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-slot-games__main-title {
    font-size: clamp(2em, 4.5vw, 3.5em); /* H1 clamp font size */
    color: var(--vl88-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games__subtitle {
    font-size: 1.2em;
    color: var(--vl88-text-secondary);
    margin-bottom: 30px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px; /* Adjust as needed for layout */
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Buttons */
.page-slot-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;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure responsive */
    box-sizing: border-box; /* Include padding/border in width */
}

.page-slot-games__btn-primary {
    background: var(--vl88-button-gradient);
    color: var(--vl88-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--vl88-gold);
    border: 2px solid var(--vl88-gold);
}

.page-slot-games__btn-secondary:hover {
    background: var(--vl88-gold);
    color: var(--vl88-background);
}

/* Section Styles */
.page-slot-games__section {
    padding: 60px 20px;
    text-align: center;
}

.page-slot-games__section h2 {
    font-size: 2.5em;
    color: var(--vl88-gold);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-slot-games__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--vl88-primary);
    border-radius: 2px;
}

.page-slot-games__section p {
    font-size: 1.1em;
    color: var(--vl88-text-secondary);
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Intro Section */
.page-slot-games__intro-section {
    background-color: var(--vl88-card-bg);
}

.page-slot-games__intro-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Game Types Section */
.page-slot-games__game-types-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-slot-games__game-type-item {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 8px;
    padding: 20px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: var(--vl88-text-main);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    text-align: center;
}

/* Features Section */
.page-slot-games__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-slot-games__feature-card {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-slot-games__feature-card h3 {
    color: var(--vl88-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-slot-games__feature-card p {
    color: var(--vl88-text-secondary);
    font-size: 1em;
    margin-bottom: 0;
}

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Guide Section */
.page-slot-games__guide-list {
    list-style: none;
    counter-reset: guide-step;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.page-slot-games__guide-item {
    counter-increment: guide-step;
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 8px;
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.1em;
    color: var(--vl88-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__guide-item::before {
    content: counter(guide-step);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--vl88-primary);
    color: var(--vl88-text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* Strategy Section */
.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.page-slot-games__strategy-item {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--vl88-text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-slot-games__strategy-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-slot-games__promotions-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.page-slot-games__promotion-item {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--vl88-text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Why VL88 Section */
.page-slot-games__why-vl88-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.page-slot-games__why-vl88-item {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: var(--vl88-text-main);
    font-weight: bold;
}

/* FAQ Section */
.page-slot-games__faq-section {
    background-color: var(--vl88-deep-green);
}

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

.page-slot-games__faq-item {
    background-color: var(--vl88-card-bg);
    border: 1px solid var(--vl88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--vl88-text-main);
}

.page-slot-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--vl88-text-main);
    outline: none;
    list-style: none; /* Remove default marker */
}

.page-slot-games__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for webkit browsers */
}

.page-slot-games__faq-question {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--vl88-primary);
}

.page-slot-games__faq-answer {
    padding: 0 25px 18px;
    font-size: 1em;
    color: var(--vl88-text-secondary);
}

/* Final CTA Section */
.page-slot-games__final-cta-section {
    padding: 80px 20px;
    background-color: var(--vl88-background);
}

.page-slot-games__final-cta-section .page-slot-games__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__game-types-list li {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 60px 15px 30px;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-slot-games__subtitle {
        font-size: 1em;
    }

    .page-slot-games__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-left: 0;
    }

    .page-slot-games__hero-cta-group, 
    .page-slot-games__final-cta-section .page-slot-games__button-group {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-slot-games__section h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-slot-games__game-types-list li {
        width: calc(50% - 15px);
        min-height: 80px;
    }

    .page-slot-games__cards-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games__guide-item,
    .page-slot-games__strategy-item,
    .page-slot-games__promotion-item,
    .page-slot-games__why-vl88-item {
        padding: 15px 15px 15px 50px;
        font-size: 1em;
    }

    .page-slot-games__guide-item::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }

    .page-slot-games__faq-item summary {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-slot-games__faq-answer {
        padding: 0 20px 15px;
    }

    /* Mobile image, video, button responsive styles */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper,
    .page-slot-games__hero-cta-group,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small decorative top margin */
    }

    .page-slot-games__cta-button,
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__final-cta-section .page-slot-games__button-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__game-types-list li {
        width: 100%;
    }
}

/* No CSS filters on images */
.page-slot-games img {
    filter: none;
}