:root {
    --genvip-primary: #11A84E;
    --genvip-secondary: #22C768;
    --genvip-button-gradient-start: #2AD16F;
    --genvip-button-gradient-end: #13994A;
    --genvip-card-bg: #11271B;
    --genvip-background: #08160F;
    --genvip-text-main: #F2FFF6;
    --genvip-text-secondary: #A7D9B8;
    --genvip-border: #2E7A4E;
    --genvip-glow: #57E38D;
    --genvip-gold: #F2C14E;
    --genvip-divider: #1E3A2A;
    --genvip-deep-green: #0A4B2C;
}

.page-slot-games {
    background-color: var(--genvip-background);
    color: var(--genvip-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-slot-games__hero-section {
    position: relative;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--genvip-deep-green);
    padding-bottom: 60px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 500px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-slot-games__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    background-color: var(--genvip-card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--genvip-border);
}

.page-slot-games__main-title {
    color: var(--genvip-text-main);
    font-size: clamp(2.2em, 5vw, 3em);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-slot-games__intro-text {
    color: var(--genvip-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games__cta-buttons--center {
    margin-top: 40px;
    text-align: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, var(--genvip-button-gradient-start) 0%, var(--genvip-button-gradient-end) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, var(--genvip-button-gradient-end) 0%, var(--genvip-button-gradient-start) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
    background-color: var(--genvip-secondary);
    color: var(--genvip-background);
    transform: translateY(-2px);
}

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

.page-slot-games__section-title {
    color: var(--genvip-text-main);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-slot-games__section-description {
    color: var(--genvip-text-secondary);
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-slot-games__features-grid,
.page-slot-games__games-grid,
.page-slot-games__promo-cards,
.page-slot-games__steps-grid,
.page-slot-games__support-channels {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-slot-games__feature-card,
.page-slot-games__game-card,
.page-slot-games__promo-card,
.page-slot-games__step-card,
.page-slot-games__channel-card {
    background-color: var(--genvip-card-bg);
    border: 1px solid var(--genvip-border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__feature-card:hover,
.page-slot-games__game-card:hover,
.page-slot-games__promo-card:hover,
.page-slot-games__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-icon,
.page-slot-games__game-image,
.page-slot-games__promo-image,
.page-slot-games__mobile-image,
.page-slot-games__security-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--genvip-divider);
    max-width: 100%;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* No color-changing filter */
}

.page-slot-games__feature-title,
.page-slot-games__game-title,
.page-slot-games__promo-title,
.page-slot-games__step-title,
.page-slot-games__channel-title,
.page-slot-games__tip-title,
.page-slot-games__mobile-feature-title,
.page-slot-games__security-title {
    color: var(--genvip-gold);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slot-games__game-link {
    color: var(--genvip-gold);
    text-decoration: none;
}

.page-slot-games__game-link:hover {
    text-decoration: underline;
    color: var(--genvip-glow);
}

.page-slot-games__feature-description,
.page-slot-games__game-description,
.page-slot-games__promo-description,
.page-slot-games__step-description,
.page-slot-games__channel-description,
.page-slot-games__tip-description,
.page-slot-games__mobile-feature-description,
.page-slot-games__security-description {
    color: var(--genvip-text-secondary);
    font-size: 0.95em;
}

.page-slot-games__step-number {
    font-size: 2.5em;
    color: var(--genvip-gold);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.page-slot-games__tips-list,
.page-slot-games__mobile-features-list,
.page-slot-games__security-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-slot-games__tip-item,
.page-slot-games__mobile-feature-item,
.page-slot-games__security-item {
    background-color: var(--genvip-card-bg);
    border: 1px solid var(--genvip-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-slot-games__tip-item:hover,
.page-slot-games__mobile-feature-item:hover,
.page-slot-games__security-item:hover {
    transform: translateX(5px);
}

.page-slot-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-slot-games__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-slot-games__text-content {
    flex: 1;
}

.page-slot-games__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games__mobile-image,
.page-slot-games__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--genvip-text-main);
    font-size: 1.1em;
    background-color: var(--genvip-deep-green);
}

.page-slot-games__faq-question:hover {
    background-color: var(--genvip-primary);
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games__faq-answer {
    padding: 20px 25px;
    background-color: var(--genvip-card-bg);
    color: var(--genvip-text-secondary);
    border-top: 1px solid var(--genvip-divider);
    font-size: 1em;
}

.page-slot-games__faq-answer p {
    margin: 0;
}

.page-slot-games__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: 20px; /* Adjusted for smaller screens */
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__features-grid,
    .page-slot-games__games-grid,
    .page-slot-games__promo-cards,
    .page-slot-games__steps-grid,
    .page-slot-games__support-channels {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-slot-games__content-wrapper {
        flex-direction: column;
    }
    .page-slot-games__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-slot-games__text-content,
    .page-slot-games__image-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }
    .page-slot-games__intro-text {
        font-size: 1em;
    }
    .page-slot-games__hero-content {
        margin-top: 20px;
        padding: 30px 15px;
    }
    .page-slot-games__section {
        padding: 40px 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-slot-games__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-slot-games__section,
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__hero-content,
    .page-slot-games__features-grid,
    .page-slot-games__games-grid,
    .page-slot-games__promo-cards,
    .page-slot-games__steps-grid,
    .page-slot-games__support-channels,
    .page-slot-games__content-wrapper,
    .page-slot-games__text-content,
    .page-slot-games__image-content,
    .page-slot-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-slot-games__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-slot-games__hero-image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-slot-games__faq-answer {
        padding: 15px 20px;
    }
}