/* style/casino.css */

/* Base styles for the casino page content */
.page-casino {
    color: #333333; /* Dark text for light 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__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.page-casino__section-title {
    font-size: 2.5em;
    color: #003366; /* Royal Blue */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-casino__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__text-content {
    font-size: 1em;
    margin-bottom: 15px;
    color: #444444;
}

/* Buttons */
.page-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-casino__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Royal Blue */
    border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-casino__btn--secondary {
    background-color: transparent;
    color: #003366; /* Royal Blue */
    border: 2px solid #003366;
}

.page-casino__btn--secondary:hover {
    background-color: #003366;
    color: #FFD700; /* Gold */
}

.page-casino__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-casino__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: #001a33; /* Darker blue for hero background */
}

.page-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure image covers the area */
    max-height: 700px; /* Limit height for aesthetic */
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-casino__hero-container {
    position: relative;
    max-width: 100%; /* Ensure it doesn't overflow */
    margin: 0 auto;
}

.page-casino__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    line-height: 1.2;
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-casino__hero-actions .page-casino__btn {
    margin: 0 10px;
}

/* About Section */
.page-casino__about-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Game Categories Section */
.page-casino__game-categories-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-casino__game-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino__game-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency, ensures >= 200px */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-casino__game-card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-casino__game-card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1;
}

/* Promotions Section */
.page-casino__promotions-section {
    padding: 60px 0;
    background-color: #f0f5fa; /* Light blue-gray background */
}

.page-casino__promo-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
}

.page-casino__promo-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.page-casino__promo-content {
    padding: 30px;
    text-align: center;
}

.page-casino__promo-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 15px;
}

.page-casino__promo-text {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 25px;
}

/* Security Section */
.page-casino__security-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-casino__security-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-casino__security-image {
    width: 100%;
    max-width: 400px; /* Ensure image is not too small, >= 200px */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-casino__security-text {
    flex: 1;
    min-width: 300px; /* Ensure text block has enough width */
}

/* Mobile Experience Section */
.page-casino__mobile-experience-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-casino__mobile-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    flex-direction: row-reverse; /* Image on right, text on left for this section */
}

.page-casino__mobile-image {
    width: 100%;
    max-width: 400px; /* Ensure image is not too small, >= 200px */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-casino__mobile-text {
    flex: 1;
    min-width: 300px; /* Ensure text block has enough width */
}

/* Detail Pages Section */
.page-casino__detail-pages-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-casino__detail-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino__detail-card-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-casino__detail-card-title a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.page-casino__detail-card-title a:hover {
    color: #FFD700;
}

.page-casino__detail-card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CTA Section */
.page-casino__cta-section {
    background-color: #003366; /* Royal Blue background */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-casino__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
}

.page-casino__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-casino__hero-title {
        font-size: 3em;
    }
    .page-casino__hero-description {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    /* Mobile overflow prevention */
    .page-casino * {
        box-sizing: border-box;
    }
    .page-casino {
        overflow-x: hidden;
        padding-top: var(--header-offset, 80px); /* Adjust for potentially smaller mobile header */
    }

    /* All images within .page-casino must be responsive */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }

    .page-casino__hero-content {
        max-width: 90%;
        padding: 15px;
    }

    .page-casino__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-casino__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-casino__hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__hero-actions .page-casino__btn {
        margin: 0;
    }

    .page-casino__section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-casino__game-grid,
    .page-casino__security-content,
    .page-casino__mobile-content,
    .page-casino__detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-casino__security-image,
    .page-casino__mobile-image {
        max-width: 100%;
        margin: 0 auto; /* Center images when stacked */
    }

    .page-casino__promo-content {
        padding: 20px;
    }

    .page-casino__promo-title {
        font-size: 1.5em;
    }

    .page-casino__cta-title {
        font-size: 2em;
    }
    .page-casino__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-title {
        font-size: 1.8em;
    }
    .page-casino__hero-description {
        font-size: 0.9em;
    }
    .page-casino__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}