/* style/casino-slots.css */

/* General Page Styling */
.page-casino-slots {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

.page-casino-slots__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-casino-slots__sub-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-casino-slots__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-slots__text-link {
    color: #1E90FF; /* Secondary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-casino-slots__text-link:hover {
    text-decoration: underline;
}

/* Buttons */
.page-casino-slots__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-casino-slots__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0d1a2f; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

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

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

.page-casino-slots__button--secondary:hover {
    background-color: #FFD700;
    color: #0d1a2f;
    transform: translateY(-2px);
}

.page-casino-slots__button--play {
    background-color: #1E90FF; /* Royal Blue */
    color: #ffffff;
    border: 2px solid #1E90FF;
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 100px;
}

.page-casino-slots__button--play:hover {
    background-color: #1565b3;
    transform: translateY(-2px);
}

.page-casino-slots__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 100px;
    background-color: #1E90FF;
    color: #ffffff;
    border: 2px solid #1E90FF;
}

.page-casino-slots__button--small:hover {
    background-color: #1565b3;
    transform: translateY(-2px);
}

.page-casino-slots__button--view-all,
.page-casino-slots__button--view-more,
.page-casino-slots__button--info {
    background-color: transparent;
    color: #1E90FF;
    border: 2px solid #1E90FF;
    margin-top: 30px;
}

.page-casino-slots__button--view-all:hover,
.page-casino-slots__button--view-more:hover,
.page-casino-slots__button--info:hover {
    background-color: #1E90FF;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section */
.page-casino-slots__hero-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0; /* Adjust padding to ensure content is visible */
}

.page-casino-slots__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-casino-slots__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-casino-slots__hero-content {
    padding: 30px;
}

.page-casino-slots__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bolder;
    line-height: 1.1;
    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;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Introduction Section */
.page-casino-slots__introduction-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

/* Game Categories */
.page-casino-slots__game-categories {
    padding: 60px 0;
}

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

.page-casino-slots__category-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-slots__category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
    min-width: 200px;
    min-height: 200px;
}

.page-casino-slots__card-title {
    font-size: 1.6em;
    margin: 20px 10px 10px;
    color: #FFD700;
    font-weight: bold;
}

.page-casino-slots__card-link {
    color: #FFD700;
    text-decoration: none;
}

.page-casino-slots__card-link:hover {
    text-decoration: underline;
}

.page-casino-slots__card-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px;
}

/* Featured Games */
.page-casino-slots__featured-games {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-casino-slots__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-casino-slots__game-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-slots__game-image {
    width: 100%;
    height: 180px; /* Fixed height for game images */
    object-fit: cover;
    border-bottom: 3px solid #1E90FF;
    min-width: 200px;
    min-height: 200px;
}

.page-casino-slots__game-title {
    font-size: 1.4em;
    margin: 15px 10px 5px;
    color: #FFD700;
    font-weight: bold;
}

.page-casino-slots__game-provider {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 15px;
}

.page-casino-slots__view-all-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Bonus Features */
.page-casino-slots__bonus-features {
    padding: 60px 0;
}

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

.page-casino-slots__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Mobile Gaming */
.page-casino-slots__mobile-gaming {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-casino-slots__mobile-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-casino-slots__mobile-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-casino-slots__mobile-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-casino-slots__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

/* Tips and Strategy */
.page-casino-slots__tips-strategy {
    padding: 60px 0;
}

.page-casino-slots__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-casino-slots__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__list-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-casino-slots__list-item .page-casino-slots__sub-title {
    color: #FFD700;
    margin-top: 0;
}

/* Security and Fairness */
.page-casino-slots__security-fairness {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

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

.page-casino-slots__security-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-casino-slots__faq {
    padding: 60px 0;
}

.page-casino-slots__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-slots__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-casino-slots__faq-question--active {
    color: #1E90FF;
}

.page-casino-slots__faq-answer {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 0;
}

/* Call to Action */
.page-casino-slots__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E90FF, #0f4c81); /* Gradient background */
    text-align: center;
    color: #ffffff;
}

.page-casino-slots__cta-container {
    max-width: 900px;
}

.page-casino-slots__cta-container .page-casino-slots__section-title {
    color: #FFD700;
}

.page-casino-slots__cta-container .page-casino-slots__text-content {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-casino-slots__hero-title {
        font-size: 3em;
    }
    .page-casino-slots__hero-description {
        font-size: 1.2em;
    }
    .page-casino-slots__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-casino-slots__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-casino-slots__hero-title {
        font-size: 2.5em;
    }
    .page-casino-slots__hero-description {
        font-size: 1.1em;
    }
    .page-casino-slots__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino-slots__button--secondary {
        margin-left: 0;
    }

    .page-casino-slots__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-casino-slots__sub-title {
        font-size: 1.3em;
    }
    .page-casino-slots__text-content {
        font-size: 1em;
    }

    .page-casino-slots__category-grid,
    .page-casino-slots__game-grid,
    .page-casino-slots__features-grid,
    .page-casino-slots__tip-list,
    .page-casino-slots__security-grid {
        grid-template-columns: 1fr;
    }

    .page-casino-slots__mobile-content {
        flex-direction: column-reverse; /* Image first on mobile */
        text-align: center;
    }
    .page-casino-slots__mobile-text {
        text-align: center;
    }
    .page-casino-slots__mobile-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Ensure images in content area don't overflow */
    .page-casino-slots img {
        max-width: 100%;
        height: auto;
        /* Enforce minimum size for content images if they are not specifically styled smaller */
        min-width: 200px;
        min-height: 200px;
    }

    .page-casino-slots__category-image,
    .page-casino-slots__game-image {
        height: auto; /* Allow height to adjust for responsiveness */
        min-height: 200px; /* Ensure images are not too small */
    }

    .page-casino-slots__button {
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-casino-slots__button--secondary {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-casino-slots__hero-title {
        font-size: 2em;
    }
    .page-casino-slots__hero-description {
        font-size: 0.9em;
    }
    .page-casino-slots__section-title {
        font-size: 1.5em;
    }
    .page-casino-slots__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-casino-slots__hero-container {
        padding: 15px;
    }
    .page-casino-slots__hero-content {
        padding: 20px;
    }
    .page-casino-slots__category-image,
    .page-casino-slots__game-image {
        height: auto;
        min-height: 200px; /* Ensure images are not too small */
    }
    .page-casino-slots__mobile-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-casino-slots img {
        min-width: 200px;
        min-height: 200px;
    }
}