.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff; /* Default page background */
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
    box-sizing: border-box;
}

.page-casino__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-casino__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-casino__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-casino__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%; /* Ensure buttons are responsive */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-casino__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

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

.page-casino__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-casino__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
    border-color: #ffffff;
}

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

.page-casino__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #017439; /* Primary color for titles */
}

.page-casino__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-casino__image-content {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.page-casino__intro-section {
    background-color: #ffffff;
    color: #333333;
}

/* Games Section */
.page-casino__games-section {
    background-color: #017439; /* Primary color background */
    color: #ffffff;
}

.page-casino__games-section .page-casino__section-title {
    color: #ffffff;
}

.page-casino__games-section .page-casino__text-block {
    color: #f0f0f0;
}

.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: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-casino__game-card:hover {
    transform: translateY(-5px);
}

.page-casino__game-card .page-casino__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-casino__game-card .page-casino__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFFF00; /* Accent color for card titles */
}

.page-casino__game-card .page-casino__card-title a {
    color: #FFFF00;
    text-decoration: none;
}

.page-casino__game-card .page-casino__card-title a:hover {
    text-decoration: underline;
}

.page-casino__game-card .page-casino__card-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

/* Download Section */
.page-casino__download-section {
    background-color: #ffffff;
    color: #333333;
}

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

.page-casino__step-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino__step-title {
    font-size: 1.3em;
    color: #017439;
    margin-bottom: 10px;
}

.page-casino__step-description {
    font-size: 0.95em;
    color: #555555;
}

.page-casino__download-cta {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-casino__promotions-section {
    background-color: #017439; /* Primary color background */
    color: #ffffff;
}

.page-casino__promotions-section .page-casino__section-title {
    color: #ffffff;
}

.page-casino__promotions-section .page-casino__text-block {
    color: #f0f0f0;
}

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

.page-casino__promo-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-casino__promo-card:hover {
    transform: translateY(-5px);
}

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

.page-casino__promo-card .page-casino__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFFF00; /* Accent color for card titles */
}

.page-casino__promo-card .page-casino__card-title a {
    color: #FFFF00;
    text-decoration: none;
}

.page-casino__promo-card .page-casino__card-title a:hover {
    text-decoration: underline;
}

.page-casino__promo-card .page-casino__card-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-casino__promo-cta {
    text-align: center;
    margin-top: 50px;
}

/* Strategy Section */
.page-casino__strategy-section {
    background-color: #ffffff;
    color: #333333;
}

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

.page-casino__strategy-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino__strategy-card .page-casino__card-title {
    font-size: 1.3em;
    color: #017439;
    margin-bottom: 10px;
}

.page-casino__strategy-card .page-casino__card-title a {
    color: #017439;
    text-decoration: none;
}

.page-casino__strategy-card .page-casino__card-title a:hover {
    text-decoration: underline;
}

.page-casino__strategy-card .page-casino__card-description {
    font-size: 0.95em;
    color: #555555;
}

.page-casino__strategy-cta {
    text-align: center;
    margin-top: 50px;
}

/* Security Section */
.page-casino__security-section {
    background-color: #017439; /* Primary color background */
    color: #ffffff;
}

.page-casino__security-section .page-casino__section-title {
    color: #ffffff;
}

.page-casino__security-section .page-casino__text-block {
    color: #f0f0f0;
}

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