/* style/slots-games.css */
.page-slots-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

/* Hero Section */
.page-slots-games__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.page-slots-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.page-slots-games__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(255, 215, 0, 0.2));
    z-index: 2;
}

.page-slots-games__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #FFFFFF;
}

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

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

.page-slots-games__hero-actions .page-slots-games__btn {
    margin: 0 10px;
}

/* General Section Styling */
.page-slots-games__section {
    padding: 80px 0;
    text-align: center;
}

.page-slots-games__section:nth-of-type(even) {
    background-color: #1A2E44;
}

.page-slots-games__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    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__section-intro,
.page-slots-games__section-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #C0C0C0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots-games__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-slots-games__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-slots-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-slots-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-slots-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 25px;
}

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

.page-slots-games__feature-item {
    background-color: #1A2E44;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

.page-slots-games__feature-text {
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-slots-games__detail-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    width: 100%;
}

.page-slots-games__detail-list li {
    margin-bottom: 15px;
}

.page-slots-games__detail-link {
    display: block;
    background-color: #0A192F;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #E0E0E0;
    text-align: left;
    transition: background-color 0.3s ease;
    border: 1px solid #FFD70033;
}

.page-slots-games__detail-link:hover {
    background-color: #1A2E44;
    border-color: #FFD700;
}

.page-slots-games__detail-link h4 {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-slots-games__detail-link p {
    font-size: 0.95em;
    color: #C0C0C0;
    margin-bottom: 10px;
}

.page-slots-games__detail-list--center .page-slots-games__detail-link {
  text-align: center;
}

/* CTA Banner */
.page-slots-games__cta-banner {
    background: linear-gradient(90deg, #FFD700, #E6C200);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    color: #0A192F;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-games__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #0A192F;
}

.page-slots-games__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

.page-slots-games__cta-banner .page-slots-games__btn--primary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
}

.page-slots-games__cta-banner .page-slots-games__btn--primary:hover {
    background-color: #1A2E44;
    color: #FFD700;
    border-color: #1A2E44;
}

/* Providers Section */
.page-slots-games__providers {
    background-color: #0A192F;
}

.page-slots-games__provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-slots-games__provider-logo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.5);
    transition: filter 0.3s ease;
}

.page-slots-games__provider-logo:hover {
    filter: grayscale(0%) brightness(1.2);
}

/* Benefits Section */
.page-slots-games__benefits {
    background-color: #1A2E44;
}

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

.page-slots-games__benefit-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-left: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

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

.page-slots-games__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-slots-games__benefit-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slots-games__benefit-text {
    color: #C0C0C0;
    margin-bottom: 20px;
}

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

.page-slots-games__step-item {
    background-color: #1A2E44;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-slots-games__step-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slots-games__step-text {
    color: #C0C0C0;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-slots-games__responsible-gaming {
    background-color: #0A192F;
}

/* Final CTA Section */
.page-slots-games__final-cta {
    position: relative;
    padding: 100px 0;
    background-color: #1A2E44;
    overflow: hidden;
}

.page-slots-games__final-cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.page-slots-games__final-cta-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    background-color: rgba(10, 25, 47, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-slots-games__final-cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-slots-games__final-cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-slots-games__final-cta-actions .page-slots-games__btn {
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-games__hero-title {
        font-size: 2.8em;
    }

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

    .page-slots-games__section-title {
        font-size: 2.2em;
    }

    .page-slots-games__final-cta-image {
        width: 100%;
        opacity: 0.3;
    }

    .page-slots-games__final-cta-content {
        max-width: none;
        text-align: center;
        background-color: rgba(10, 25, 47, 0.95);
    }

    .page-slots-games__final-cta-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-slots-games__final-cta-actions .page-slots-games__btn {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .page-slots-games__hero {
        height: 500px;
    }

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

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

    .page-slots-games__section {
        padding: 60px 0;
    }

    .page-slots-games__section-title {
        font-size: 1.8em;
    }

    .page-slots-games__cta-title {
        font-size: 2em;
    }

    .page-slots-games__cta-text {
        font-size: 1em;
    }

    .page-slots-games__final-cta {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .page-slots-games__hero {
        height: 400px;
    }

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

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

    .page-slots-games__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-slots-games__feature-item,
    .page-slots-games__benefit-item,
    .page-slots-games__step-item {
        padding: 20px;
    }

    .page-slots-games__feature-heading,
    .page-slots-games__benefit-heading,
    .page-slots-games__step-heading {
        font-size: 1.3em;
    }

    .page-slots-games__provider-logo {
        width: 100px;
        height: 60px;
    }

    .page-slots-games__final-cta-title {
        font-size: 2em;
    }

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