/* style/slots.css */
.page-slots {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A1A; /* Dark background */
}

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

.page-slots-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slots-section-description {
    font-size: 1.1em;
    color: #CCCCCC; /* Slightly lighter grey for descriptions */
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-slots-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-slots-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A1A1A; /* Dark text on gold */
}

.page-slots-btn-primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-slots-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-slots-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.page-slots-btn-link {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 8px 15px;
    font-size: 1em;
}

.page-slots-btn-link:hover {
    text-decoration: underline;
    color: #E6C200;
}

.page-slots-btn-lg {
    padding: 16px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-slots-hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Burgundy to Gold gradient */
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #FFFFFF; /* White text on gradient */
}

.page-slots-hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-hero-subtitle {
    font-size: 1.4em;
    max-width: 900px;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #F0F0F0;
}

.page-slots-hero-actions .page-slots-btn {
    margin: 0 15px;
}

.page-slots-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 600px;
    height: auto;
    opacity: 0.7;
    z-index: 0;
}

.page-slots-hero .page-slots-container {
    z-index: 1;
    position: relative;
}

/* About Section (features grid) */
.page-slots-about {
    background-color: #222222;
}

.page-slots-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.page-slots-feature-item {
    text-align: left;
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-slots-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

.page-slots-feature-description {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Categories Section */
.page-slots-categories {
    background-color: #1A1A1A;
}

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

.page-slots-category-item {
    background-color: #2D2D2D;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-slots-category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #8B0000;
}

.page-slots-category-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 15px 10px 15px;
}

.page-slots-category-description {
    font-size: 0.95em;
    color: #CCCCCC;
    padding: 0 15px 20px 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.page-slots-category-item .page-slots-btn-link {
    margin-top: auto;
    padding-bottom: 20px;
}

/* Features Section (detailed cards) */
.page-slots-features {
    background-color: #222222;
}

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

.page-slots-feature-card {
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border-top: 5px solid #8B0000; /* Burgundy accent */
}

.page-slots-feature-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.page-slots-feature-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slots-feature-card-description {
    font-size: 0.95em;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Promo CTA Section */
.page-slots-promo-cta {
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}

.page-slots-promo-content {
    flex: 1;
    min-width: 400px;
    padding: 20px;
}

.page-slots-promo-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-slots-promo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.page-slots-promo-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-slots-promo-list li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* How To Start Section */
.page-slots-how-to-start {
    background-color: #222222;
    padding-bottom: 120px;
}

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

.page-slots-step-item {
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    border-bottom: 5px solid #FFD700;
}

.page-slots-step-number {
    background-color: #FFD700;
    color: #1A1A1A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: -60px auto 20px auto;
    box-shadow: 0 0 0 5px #2D2D2D;
}

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

.page-slots-step-description {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-slots-how-to-start-image {
    width: 80%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-slots-responsible-gaming {
    background-color: #1A1A1A;
}

.page-slots-responsible-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    text-align: left;
    max-width: 800px;
}

.page-slots-responsible-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-slots-responsible-list li::before {
    content: '✓';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
    font-weight: bold;
}

.page-slots-responsible-image {
    width: 80%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-slots-faq {
    background-color: #222222;
}

.page-slots-faq-items {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-faq-item {
    background-color: #2D2D2D;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    border-left: 5px solid #8B0000;
}

.page-slots-faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-slots-faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.6;
    display: none;
}

.page-slots-faq-item.active .page-slots-faq-answer {
    display: block;
}

/* Final CTA Section */
.page-slots-cta-final {
    background: linear-gradient(45deg, #8B0000 0%, #FFD700 100%);
    padding: 100px 0;
    color: #FFFFFF;
}

.page-slots-cta-final .page-slots-section-title,
.page-slots-cta-final .page-slots-section-description {
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-slots-cta-actions {
    margin-top: 40px;
}

.page-slots-cta-actions .page-slots-btn {
    margin: 0 15px;
}

.page-slots-cta-image {
    width: 60%;
    max-width: 800px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-grid-2-col, .page-slots-grid-3-col {
        grid-template-columns: 1fr;
    }

    .page-slots-hero-title {
        font-size: 3em;
    }

    .page-slots-hero-subtitle {
        font-size: 1.2em;
    }

    .page-slots-promo-cta {
        flex-direction: column;
    }

    .page-slots-promo-content {
        min-width: unset;
        width: 100%;
    }

    .page-slots-promo-image {
        max-width: 80%;
        margin-top: 40px;
    }

    .page-slots-how-to-start-image,
    .page-slots-responsible-image,
    .page-slots-cta-image {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .page-slots-section {
        padding: 60px 0;
    }

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

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

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

    .page-slots-hero-subtitle {
        font-size: 1em;
    }

    .page-slots-hero-actions .page-slots-btn {
        margin: 10px 5px;
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-slots-hero-image {
        width: 60%;
        max-width: unset;
        opacity: 0.5;
    }

    .page-slots-category-list {
        grid-template-columns: 1fr;
    }

    .page-slots-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin: -50px auto 15px auto;
    }

    .page-slots-feature-title, .page-slots-step-title, .page-slots-category-title {
        font-size: 1.5em;
    }

    .page-slots-faq-question {
        font-size: 1.2em;
    }

    .page-slots-promo-list,
    .page-slots-responsible-list {
        margin: 20px auto;
        padding: 0 10px;
    }

    .page-slots-promo-list li,
    .page-slots-responsible-list li {
        font-size: 1em;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .page-slots-hero-title {
        font-size: 2em;
    }

    .page-slots-hero-subtitle {
        font-size: 0.9em;
    }

    .page-slots-hero-actions {
        flex-direction: column;
    }

    .page-slots-hero-actions .page-slots-btn {
        width: 80%;
        max-width: 250px;
        margin: 10px auto;
    }

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

    .page-slots-feature-item, .page-slots-feature-card, .page-slots-step-item, .page-slots-faq-item {
        padding: 20px;
    }

    .page-slots-feature-title, .page-slots-step-title, .page-slots-category-title {
        font-size: 1.3em;
    }

    .page-slots-faq-question {
        font-size: 1.1em;
    }

    .page-slots-btn-lg {
        padding: 14px 30px;
        font-size: 1.1em;
    }
}