/* style/slot-games.css */

/* Base styles for the slot games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A1A1A; /* Main dark background */
    line-height: 1.6;
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-slot-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-slot-games__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 60px;
    color: #B0B0B0;
}

.page-slot-games__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-slot-games__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A1A1A; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

.page-slot-games__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

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

.page-slot-games__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* Hero Section */
.page-slot-games__hero-section {
    background: linear-gradient(135deg, #1A1A1A, #3A3A3A);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:slot_hero_pattern,abstract_lines,dark_gold]') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.page-slot-games__hero-section .page-slot-games__container {
    position: relative;
    z-index: 1;
}

.page-slot-games__hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__hero-subtitle {
    font-size: 1.3em;
    color: #F0F0F0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* About Section (Features) */
.page-slot-games__about-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-slot-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slot-games__feature-card {
    background-color: #282828;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-slot-games__feature-description {
    font-size: 1em;
    color: #B0B0B0;
}

.page-slot-games__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* Types Section */
.page-slot-games__types-section {
    padding: 80px 0;
    background-color: #222222;
}

.page-slot-games__grid--types {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-slot-games__type-card {
    background-color: #282828;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games__type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__type-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games__type-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slot-games__type-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    min-height: 100px; /* Ensure consistent height for descriptions */
}

/* Strategy Section */
.page-slot-games__strategy-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-slot-games__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.page-slot-games__strategy-item {
    background-color: #282828;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-slot-games__strategy-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slot-games__strategy-description {
    font-size: 1em;
    color: #B0B0B0;
}

/* Features Section (Bonus) */
.page-slot-games__features-section {
    padding: 80px 0;
    background-color: #222222;
}

.page-slot-games__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-slot-games__feature-item {
    background-color: #282828;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
    transform: translateY(-8px);
}

.page-slot-games__feature-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.page-slot-games__feature-item-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-slot-games__feature-item-description {
    font-size: 0.95em;
    color: #B0B0B0;
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

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

.page-slot-games__faq-item {
    background-color: #282828;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-slot-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-question.active::after {
    content: '-';
}

.page-slot-games__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 15px;
}

.page-slot-games__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-slot-games__faq-answer a:hover {
    color: #E6C200;
}

/* Subpages Section */
.page-slot-games__subpages-section {
    padding: 80px 0;
    background-color: #222222;
}

.page-slot-games__subpage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slot-games__subpage-item {
    background-color: #282828;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-slot-games__subpage-item:hover {
    transform: translateY(-5px);
}

.page-slot-games__subpage-title {
    font-size: 1.7em;
    margin-bottom: 10px;
}

.page-slot-games__subpage-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games__subpage-title a:hover {
    color: #E6C200;
}

.page-slot-games__subpage-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure consistent height */
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #1A1A1A, #333333);
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-slot-games__final-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 3em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-slot-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-slot-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__btn--secondary {
        margin-left: 0;
    }
    .page-slot-games__feature-card,
    .page-slot-games__type-card,
    .page-slot-games__strategy-item,
    .page-slot-games__feature-item,
    .page-slot-games__subpage-item {
        padding: 20px;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-slot-games__section-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-title {
        font-size: 2em;
    }
    .page-slot-games__hero-subtitle {
        font-size: 1em;
    }
    .page-slot-games__hero-section {
        padding: 60px 0;
    }
    .page-slot-games__section-title {
        font-size: 1.5em;
    }
    .page-slot-games__btn {
        width: 100%;
    }
    .page-slot-games__grid, .page-slot-games__grid--types, .page-slot-games__strategy-grid, .page-slot-games__feature-grid, .page-slot-games__subpage-list {
        grid-template-columns: 1fr;
    }
    .page-slot-games__type-description, .page-slot-games__subpage-description {
        min-height: auto;
    }
}