/* style/slots-electronic-games.css */

:root {
    --page-slots-electronic-games-primary-color: #CC0000;
    --page-slots-electronic-games-secondary-color: #FFD700;
    --page-slots-electronic-games-text-dark: #333333;
    --page-slots-electronic-games-text-light: #FFFFFF;
    --page-slots-electronic-games-bg-light: #F8F8F8;
    --page-slots-electronic-games-bg-dark: #222222;
    --page-slots-electronic-games-border-color: #E0E0E0;
}

.page-slots-electronic-games {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-slots-electronic-games-text-dark);
    background-color: var(--page-slots-electronic-games-bg-light);
}

.page-slots-electronic-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-slots-electronic-games-section-title {
    font-size: 2.5em;
    color: var(--page-slots-electronic-games-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-slots-electronic-games-section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-slots-electronic-games-text-dark);
}

.page-slots-electronic-games .highlight {
    color: var(--page-slots-electronic-games-primary-color);
    font-weight: bold;
}

/* Buttons */
.page-slots-electronic-games-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-slots-electronic-games-btn-primary {
    background-color: var(--page-slots-electronic-games-primary-color);
    color: var(--page-slots-electronic-games-text-light);
    border: 2px solid var(--page-slots-electronic-games-primary-color);
}

.page-slots-electronic-games-btn-primary:hover {
    background-color: #A30000; /* Darker red for hover */
    border-color: #A30000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-slots-electronic-games-btn-secondary {
    background-color: var(--page-slots-electronic-games-secondary-color);
    color: var(--page-slots-electronic-games-text-dark);
    border: 2px solid var(--page-slots-electronic-games-secondary-color);
}

.page-slots-electronic-games-btn-secondary:hover {
    background-color: #E6C200; /* Darker gold for hover */
    border-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-slots-electronic-games-btn-outline {
    background-color: transparent;
    color: var(--page-slots-electronic-games-primary-color);
    border: 2px solid var(--page-slots-electronic-games-primary-color);
}

.page-slots-electronic-games-btn-outline:hover {
    background-color: var(--page-slots-electronic-games-primary-color);
    color: var(--page-slots-electronic-games-text-light);
}

.page-slots-electronic-games-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-slots-electronic-games-link-inline {
    color: var(--page-slots-electronic-games-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-slots-electronic-games-link-inline:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-slots-electronic-games-hero {
    background: linear-gradient(135deg, var(--page-slots-electronic-games-primary-color) 0%, #db4d4d 100%); /* Slightly lighter red for gradient end */
    color: var(--page-slots-electronic-games-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    min-height: 500px;
}

.page-slots-electronic-games-hero-content {
    max-width: 600px;
    text-align: left;
    padding: 0 15px;
}

.page-slots-electronic-games-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-slots-electronic-games-text-light);
}

.page-slots-electronic-games-hero-title .highlight {
    color: var(--page-slots-electronic-games-secondary-color);
}

.page-slots-electronic-games-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-slots-electronic-games-hero-actions .page-slots-electronic-games-btn {
    margin-right: 15px;
}

.page-slots-electronic-games-hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
}

.page-slots-electronic-games-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* About kv999 Section */
.page-slots-electronic-games-about-kv999 {
    padding: 60px 0;
    background-color: var(--page-slots-electronic-games-bg-light);
}

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

.page-slots-electronic-games-feature-item {
    background-color: var(--page-slots-electronic-games-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slots-electronic-games-feature-item:hover {
    transform: translateY(-5px);
}

.page-slots-electronic-games-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-slots-electronic-games-feature-title {
    font-size: 1.5em;
    color: var(--page-slots-electronic-games-primary-color);
    margin-bottom: 10px;
}

.page-slots-electronic-games-feature-description {
    font-size: 1em;
    color: var(--page-slots-electronic-games-text-dark);
}

/* Game Categories Section */
.page-slots-electronic-games-game-categories {
    padding: 60px 0;
    background-color: #F0F0F0;
}

.page-slots-electronic-games-category-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--page-slots-electronic-games-text-light);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex-wrap: wrap;
}

.page-slots-electronic-games-category-card-reverse {
    flex-direction: row-reverse;
}

.page-slots-electronic-games-category-info {
    flex: 1;
    min-width: 300px;
}

.page-slots-electronic-games-category-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slots-electronic-games-category-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-electronic-games-category-title {
    font-size: 2em;
    color: var(--page-slots-electronic-games-primary-color);
    margin-bottom: 15px;
}

.page-slots-electronic-games-category-description {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-slots-electronic-games-text-dark);
}

.page-slots-electronic-games-game-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-slots-electronic-games-game-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: var(--page-slots-electronic-games-text-dark);
}

.page-slots-electronic-games-game-list li::before {
    content: '•';
    color: var(--page-slots-electronic-games-secondary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -3px;
}

.page-slots-electronic-games-game-name {
    color: var(--page-slots-electronic-games-primary-color);
}

/* Why Choose Section */
.page-slots-electronic-games-why-choose {
    padding: 60px 0;
    background-color: var(--page-slots-electronic-games-text-light);
}

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

.page-slots-electronic-games-advantage-item {
    text-align: center;
    padding: 25px;
    border: 1px solid var(--page-slots-electronic-games-border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-slots-electronic-games-advantage-item:hover {
    border-color: var(--page-slots-electronic-games-secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-electronic-games-advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.page-slots-electronic-games-advantage-title {
    font-size: 1.3em;
    color: var(--page-slots-electronic-games-primary-color);
    margin-bottom: 10px;
}

.page-slots-electronic-games-advantage-description {
    font-size: 0.95em;
    color: var(--page-slots-electronic-games-text-dark);
}

/* Promotions Section */
.page-slots-electronic-games-promotions {
    padding: 60px 0;
    background-color: #F0F0F0;
}

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

.page-slots-electronic-games-promo-card {
    background-color: var(--page-slots-electronic-games-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slots-electronic-games-promo-card:hover {
    transform: translateY(-5px);
}

.page-slots-electronic-games-promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-slots-electronic-games-border-color);
}

.page-slots-electronic-games-promo-card h3 {
    font-size: 1.5em;
    color: var(--page-slots-electronic-games-primary-color);
    margin: 20px 15px 10px 15px;
}

.page-slots-electronic-games-promo-card p {
    font-size: 0.95em;
    color: var(--page-slots-electronic-games-text-dark);
    padding: 0 15px 20px 15px;
}

.page-slots-electronic-games-promo-card .page-slots-electronic-games-btn {
    margin-bottom: 20px;
}

.page-slots-electronic-games-promo-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: var(--page-slots-electronic-games-text-dark);
}

/* How To Play Section */
.page-slots-electronic-games-how-to-play {
    padding: 60px 0;
    background-color: var(--page-slots-electronic-games-text-light);
}

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

.page-slots-electronic-games-step-item {
    text-align: center;
    padding: 30px;
    background-color: #FFF8E1; /* Lighter gold background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-slots-electronic-games-step-number {
    background-color: var(--page-slots-electronic-games-primary-color);
    color: var(--page-slots-electronic-games-text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px auto; /* Adjust for overlap */
    border: 3px solid var(--page-slots-electronic-games-secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-electronic-games-step-title {
    font-size: 1.4em;
    color: var(--page-slots-electronic-games-primary-color);
    margin-bottom: 10px;
}

.page-slots-electronic-games-step-description {
    font-size: 0.95em;
    color: var(--page-slots-electronic-games-text-dark);
}

.page-slots-electronic-games-cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* Mobile App Section */
.page-slots-electronic-games-mobile-app {
    padding: 60px 0;
    background-color: var(--page-slots-electronic-games-bg-dark);
    color: var(--page-slots-electronic-games-text-light);
}

.page-slots-electronic-games-mobile-app .page-slots-electronic-games-section-title {
    color: var(--page-slots-electronic-games-text-light);
}

.page-slots-electronic-games-mobile-app .page-slots-electronic-games-section-title::after {
    background-color: var(--page-slots-electronic-games-secondary-color);
}

.page-slots-electronic-games-mobile-app .page-slots-electronic-games-section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.page-slots-electronic-games-app-content {
    max-width: 600px;
    padding-right: 30px;
}

.page-slots-electronic-games-mobile-app .page-slots-electronic-games-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-slots-electronic-games-app-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-slots-electronic-games-app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-slots-electronic-games-text-light);
}

.page-slots-electronic-games-app-feature-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-slots-electronic-games-app-image-wrapper {
    flex-shrink: 0;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.page-slots-electronic-games-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-slots-electronic-games-faq {
    padding: 60px 0;
    background-color: var(--page-slots-electronic-games-bg-light);
}

.page-slots-electronic-games-faq-item {
    background-color: var(--page-slots-electronic-games-text-light);
    border: 1px solid var(--page-slots-electronic-games-border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-electronic-games-faq-question {
    font-size: 1.25em;
    color: var(--page-slots-electronic-games-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-slots-electronic-games-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-slots-electronic-games-secondary-color);
    transition: transform 0.3s ease;
}

.page-slots-electronic-games-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots-electronic-games-faq-answer {
    font-size: 1em;
    color: var(--page-slots-electronic-games-text-dark);
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--page-slots-electronic-games-border-color);
}

.page-slots-electronic-games-faq-answer.open {
    display: block;
}

/* Final CTA Section */
.page-slots-electronic-games-final-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--page-slots-electronic-games-primary-color), #A30000);
    color: var(--page-slots-electronic-games-text-light);
    text-align: center;
}

.page-slots-electronic-games-final-cta .page-slots-electronic-games-section-title {
    color: var(--page-slots-electronic-games-text-light);
    font-size: 3em;
}

.page-slots-electronic-games-final-cta .page-slots-electronic-games-section-title::after {
    background-color: var(--page-slots-electronic-games-secondary-color);
}

.page-slots-electronic-games-final-cta .page-slots-electronic-games-section-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    margin-bottom: 50px;
}

.page-slots-electronic-games-final-actions .page-slots-electronic-games-btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-electronic-games-hero-title {
        font-size: 2.8em;
    }
    .page-slots-electronic-games-hero-description {
        font-size: 1.1em;
    }
    .page-slots-electronic-games-hero-content, .page-slots-electronic-games-hero-image-wrapper {
        max-width: 100%;
        text-align: center;
    }
    .page-slots-electronic-games-hero-actions {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    .page-slots-electronic-games-hero-actions .page-slots-electronic-games-btn {
        margin: 10px;
    }
    .page-slots-electronic-games-category-card, .page-slots-electronic-games-category-card-reverse {
        flex-direction: column;
    }
    .page-slots-electronic-games-app-content, .page-slots-electronic-games-app-image-wrapper {
        max-width: 100%;
        padding: 0;
    }
    .page-slots-electronic-games-mobile-app .page-slots-electronic-games-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-slots-electronic-games-section-title {
        font-size: 2em;
    }
    .page-slots-electronic-games-section-intro {
        font-size: 1em;
    }
    .page-slots-electronic-games-hero {
        padding: 60px 0;
    }
    .page-slots-electronic-games-hero-title {
        font-size: 2.2em;
    }
    .page-slots-electronic-games-features-grid, .page-slots-electronic-games-advantages-grid, .page-slots-electronic-games-promo-grid, .page-slots-electronic-games-steps-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-electronic-games-step-item {
        margin-top: 30px;
    }
    .page-slots-electronic-games-step-number {
        margin-top: -50px;
    }
    .page-slots-electronic-games-final-cta .page-slots-electronic-games-section-title {
        font-size: 2.2em;
    }
    .page-slots-electronic-games-final-actions .page-slots-electronic-games-btn {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-slots-electronic-games-hero-title {
        font-size: 1.8em;
    }
    .page-slots-electronic-games-hero-description {
        font-size: 0.9em;
    }
    .page-slots-electronic-games-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-slots-electronic-games-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-electronic-games-section-title {
        font-size: 1.8em;
    }
    .page-slots-electronic-games-category-title {
        font-size: 1.6em;
    }
    .page-slots-electronic-games-faq-question {
        font-size: 1.1em;
    }
}