/* General Styles for page-casino */
.page-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
}

.page-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-casino__section-padding {
    padding: 60px 0;
}

.page-casino__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-casino__subtitle {
    font-size: 18px;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-casino__subtitle--white {
    color: #f0f0f0;
}

.page-casino__center-text {
    text-align: center;
}

/* Hero Section */
.page-casino__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: #2F6BFF; /* Main color as fallback */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image then content */
    align-items: center;
}

.page-casino__hero-image {
    width: 100%;
    height: 600px; /* Desktop height */
    overflow: hidden;
}

.page-casino__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* No filter */
}

.page-casino__hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    padding: 40px 20px;
    background: linear-gradient(180deg, #2F6BFF 0%, #1a4a99 100%); /* Main color gradient */
    width: 100%;
    box-sizing: border-box;
}

.page-casino__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-casino__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Buttons */
.page-casino__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-card,
.page-casino__btn-text,
.page-casino__btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-casino__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-casino__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-casino__btn-secondary:hover {
    background: #f0f0f0;
    color: #1a4a99;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__btn-card {
    background: #2F6BFF;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 15px;
}

.page-casino__btn-card:hover {
    background: #4A8BFF;
}

.page-casino__btn-text {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.page-casino__btn-text:hover {
    text-decoration: underline;
}

.page-casino__btn-large {
    padding: 18px 40px;
    font-size: 18px;
    min-width: 250px;
}

/* About Section */
.page-casino__about-section {
    background: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
}

.page-casino__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-casino__text-block {
    flex: 1;
}

.page-casino__text-block p {
    margin-bottom: 15px;
}

.page-casino__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-casino__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* No filter */
}

/* Games Section */
.page-casino__games-section {
    background: #2F6BFF; /* Main color */
    color: #ffffff;
}

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

.page-casino__game-card {
    background: #ffffff; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    color: #1F2D3D; /* Text Main */
}

.page-casino__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* No filter */
}

.page-casino__card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-casino__card-title a {
    color: #1F2D3D;
    text-decoration: none;
}

.page-casino__card-title a:hover {
    color: #2F6BFF;
}

.page-casino__card-description {
    font-size: 15px;
    color: #555;
    padding: 0 15px;
    flex-grow: 1;
}

/* Promotions Section */
.page-casino__promotions-section {
    background: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
}

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

.page-casino__promo-card {
    background: #ffffff; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}