/* style/casino-slots.css */

/* Base styles for the page content, ensuring header offset and default text color */
.page-casino-slots {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    background-color: #1A1A1A; /* Main dark background */
    color: #f0f0f0; /* Light text for dark background, ensuring contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Hero Section */
.page-casino-slots__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for visual impact */
}

.page-casino-slots__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6); /* Slightly darken image for text readability, NO color change filters */
    min-width: 200px; /* Enforce minimum size for images */
    min-height: 200px;
}

.page-casino-slots__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.page-casino-slots__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slots__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-casino-slots__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-casino-slots__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Accent color for buttons */
    color: #1A1A1A; /* Dark text on accent button, ensuring contrast */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-casino-slots__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* General Content Sections */
.page-casino-slots__section {
    padding: 60px 20px;
    margin-bottom: 30px;
    background-color: #2a2a2a; /* Slightly lighter dark background for sections */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-slots__section--alt {
    background-color: #1a1a1a;
}

.page-casino-slots__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-casino-slots__heading-2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-casino-slots__heading-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-casino-slots__heading-3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-casino-slots__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-casino-slots__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-casino-slots__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #f0f0f0;
}

.page-casino-slots__list-item::before {
    content: '★'; /* Gold star for list items */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Image Galleries/Cards */
.page-casino-slots__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-slots__card {
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-casino-slots__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.page-casino-slots__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card image display */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size for images */
    min-height: 200px;
}

.page-casino-slots__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-casino-slots__card-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-casino-slots__card-text {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino-slots__card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-casino-slots__card-button:hover {
    background-color: #e6c200;
}

/* FAQ Section */
.page-casino-slots__faq-list {
    margin-top: 30px;
}

.page-casino-slots__faq-item {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-casino-slots__faq-question {
    display: block;
    width: 100%;
    padding: 20px 25px;
    background-color: #2a2a2a;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-casino-slots__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-casino-slots__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-casino-slots__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #f0f0f0;
}

.page-casino-slots__faq-answer.active {
    max-height: 300px; /* Adjust as needed for content */
    padding: 15px 25px 20px;
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-casino-slots__hero-title {
        font-size: 3em;
    }
    .page-casino-slots__heading-2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* Mobile-specific adjustments */
    .page-casino-slots {
        padding-top: var(--header-offset, 80px); /* Adjust padding for mobile header */
    }

    .page-casino-slots__hero-section {
        padding: 60px 15px;
        min-height: 450px;
    }

    .page-casino-slots__hero-title {
        font-size: 2.2em;
    }

    .page-casino-slots__hero-description {
        font-size: 1.1em;
    }

    .page-casino-slots__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-casino-slots__cta-button {
        width: 100%;
        font-size: 1em;
    }

    .page-casino-slots__section {
        padding: 40px 15px;
    }

    .page-casino-slots__heading-2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-casino-slots__heading-3 {
        font-size: 1.5em;
    }

    .page-casino-slots__paragraph,
    .page-casino-slots__list-item {
        font-size: 1em;
    }

    .page-casino-slots__gallery {
        grid-template-columns: 1fr; /* Single column for cards on mobile */
    }

    .page-casino-slots__card-image {
        height: 200px; /* Smaller image height for mobile cards */
    }

    .page-casino-slots__card-title {
        font-size: 1.2em;
    }

    /* Enforce image responsiveness and prevent overflow */
    .page-casino-slots img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for images */
        min-height: 200px;
        object-fit: cover;
    }
    /* Specific rules for images inside .page-casino-slots to override any smaller defaults if they exist */
    .page-casino-slots__section img,
    .page-casino-slots__gallery img,
    .page-casino-slots__card-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure no filter is used for image color changes */
.page-casino-slots img {
    filter: none; /* Explicitly disable any potential filters */
}