.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Ensure all images are responsive by default */
.page-casino img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: none; /* No CSS filter on images */
}

/* Ensure all videos are responsive by default */
.page-casino video,
.page-casino__video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Headings colors */
.page-casino h1,
.page-casino h2,
.page-casino h3,
.page-casino h4,
.page-casino h5,
.page-casino h6 {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-casino h1 {
    font-weight: bold;
    letter-spacing: -0.02em;
    max-width: 90%; /* To prevent overly long titles on smaller screens before media queries kick in */
}

.page-casino h2 {
    font-size: 2.2em;
    text-align: center;
}

.page-casino h3 {
    font-size: 1.8em;
}

.page-casino p {
    margin-bottom: 1em;
}

.page-casino a {
    color: #2AD16F; /* A lighter green for links */
    text-decoration: none;
}

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

.page-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #08160F; /* Background */
}

.page-casino__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-casino__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    min-height: 300px; /* Minimum height for hero image */
}

.page-casino__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG for contrast */
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
}

.page-casino__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    margin-bottom: 20px;
}

.page-casino__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-casino__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-casino__btn-primary,
.page-casino__btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-casino__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

.page-casino__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-casino__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Lighter green for secondary */
    border: 2px solid #2AD16F;
}

.page-casino__btn-secondary:hover {
    background-color: #2AD16F;
    color: #08160F; /* Background color */
    transform: translateY(-2px);
}

/* Intro Section */
.page-casino__intro-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    text-align: center;
}

.page-casino__intro-section p {
    color: #A7D9B8; /* Text Secondary */
    max-width: 900px;
    margin: 0 auto 1em auto;
}

/* Games Section */
.page-casino__games-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-casino__game-category {
    margin-bottom: 60px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 40px;
}

.page-casino__game-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-casino__category-title {
    text-align: center;
    margin-bottom: 30px;
    color: #F2C14E; /* Gold */
}

.page-casino__category-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-casino__category-content--reverse {
    flex-direction: row-reverse;
}

.page-casino__game-image {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    min-width: 200px;
    min-height: 200px;
}

.page-casino__text-block {
    flex: 1;
    color: #A7D9B8; /* Text Secondary */
}

.page-casino__text-block ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

.page-casino__text-block ul li {
    margin-bottom: 0.5em;
    color: #F2FFF6; /* Text Main for list items */
}

/* Promotions Section */
.page-casino__promotions-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    text-align: center;
}

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

.page-casino__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-casino__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-casino__promo-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #F2C14E; /* Gold */
}

.page-casino__promo-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1;
}

.page-casino__promo-link {
    display: inline-block;
    margin-top: 15px;
    color: #2AD16F;
    font-weight: bold;
}

/* Security Section */
.page-casino__security-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

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

.page-casino__security-image {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    min-width: 200px;
    min-height: 200px;
}

/* Payment Section */
.page-casino__payment-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    text-align: center;
}

.page-casino__payment-methods-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-casino__payment-methods-list li {
    background-color: #0A4B2C; /* Deep Green */
    padding: 15px 25px;
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    border: 1px solid #2E7A4E; /* Border */
}

/* Registration Section */
.page-casino__registration-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    text-align: center;
}

.page-casino__registration-steps {
    list-style: decimal;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 25px;
    color: #A7D9B8; /* Text Secondary */
}

.page-casino__registration-steps li {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-casino__faq-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-casino__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-casino__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-casino__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default summary marker */
}

.page-casino__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-casino__faq-question:hover {
    background-color: #13994A; /* A slightly lighter green for hover */
}

.page-casino__faq-qtext {
    flex-grow: 1;
}

.page-casino__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-casino__faq-item[open] .page-casino__faq-toggle {
    content: "−";
}

.page-casino__faq-answer {
    padding: 0 25px 18px 25px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    background-color: #11271B; /* Card BG for answer */
}

.page-casino__faq-answer p {
    margin-bottom: 0;
}

/* Contact CTA Section */
.page-casino__contact-cta-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    text-align: center;
}

.page-casino__contact-cta-section p {
    color: #A7D9B8; /* Text Secondary */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-casino__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }
    .page-casino__category-content {
        flex-direction: column;
    }
    .page-casino__category-content--reverse {
        flex-direction: column;
    }
    .page-casino__security-content {
        flex-direction: column;
    }
    .page-casino__hero-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    /* Global responsive styles for content */
    .page-casino__section,
    .page-casino__card,
    .page-casino__container,
    .page-casino__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Images */
    .page-casino img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Videos */
    .page-casino video,
    .page-casino__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-casino__video-section,
    .page-casino__video-container,
    .page-casino__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-casino__video-section {
        padding-top: 10px !important;
    }

    /* Buttons */
    .page-casino__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__btn-primary,
    .page-casino__btn-secondary,
    .page-casino a[class*="button"],
    .page-casino a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-casino h2 {
        font-size: 1.8em;
    }

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

    .page-casino__hero-content {
        margin-top: -40px;
    }

    .page-casino__promo-image {
        height: 180px;
    }

    .page-casino__faq-question {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    .page-casino__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-casino__main-title {
        font-size: 1.5em;
    }
    .page-casino h2 {
        font-size: 1.5em;
    }
    .page-casino h3 {
        font-size: 1.3em;
    }
}

/* Ensure minimum image sizes are respected in CSS */
.page-casino__hero-image,
.page-casino__game-image,
.page-casino__promo-image,
.page-casino__security-image {
    min-width: 200px;
    min-height: 200px;
}

/* For content area images, ensure they are not shrunk below 200px by any rule */
.page-casino__content-area img,
.page-casino__text-block img {
    min-width: 200px;
    min-height: 200px;
}