.page-casino__hero-section {
    background-color: #F4F7FB; /* Background color */
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
}
.page-casino__hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
.page-casino__hero-content {
    max-width: 1200px; /* Boxed layout */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.page-casino__hero-content h1 {
    color: #1F2D3D; /* Text Main */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* No hardcoded font-size */
}
.page-casino__hero-content p {
    color: #1F2D3D; /* Text Main */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.page-casino__button {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    display: inline-block;
}
.page-casino__button:hover {
    opacity: 0.9;
}

.page-casino__section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.page-casino__section-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.page-casino__section-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.page-casino__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.page-casino__game-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}
.page-casino__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.page-casino__game-card-image {
    width: 100%;
    height: 200px; /* Ensure minimum 200px height for cards */
    object-fit: cover;
    display: block;
}
.page-casino__game-card-content {
    padding: 20px;
}
.page-casino__game-card-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block; /* Make the whole title clickable */
    text-decoration: none;
}
.page-casino__game-card-title:hover {
    color: #2F6BFF; /* Primary color on hover */
}
.page-casino__game-card-description {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-casino__why-choose-us {
    padding-bottom: 60px;
}
.page-casino__why-choose-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}
.page-casino__why-choose-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}
.page-casino__why-choose-item strong {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}
.page-casino__why-choose-item span {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-casino__cta-section {
    background-color: #F4F7FB; /* Background color */
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.page-casino__cta-section h2 {
    color: #1F2D3D; /* Text Main */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.page-casino__cta-section p {
    color: #1F2D3D; /* Text Main */
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__responsible-gaming {
    background-color: #F4F7FB; /* Background color */
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.page-casino__responsible-gaming h3 {
    color: #1F2D3D; /* Text Main */
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.page-casino__responsible-gaming p {
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.page-casino__responsible-gaming a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: 500;
}
.page-casino__responsible-gaming a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-casino__hero-content h1 {
        font-size: 2rem; /* Adjusted for mobile, still not hardcoded to a small value */
    }
    .page-casino__section-title {
        font-size: 1.8rem;
    }
    .page-casino__cta-section h2 {
        font-size: 2rem;
    }
    .page-casino__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-casino__game-card-image {
        height: 250px; /* Ensure minimum 200px height for cards on mobile */
        max-width: 100%; /* Important for mobile overflow */
    }
    .page-casino__why-choose-list {
        grid-template-columns: 1fr;
    }
    /* Mobile overflow prevention for all images within .page-casino */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
}