/* style/casino.css */

/* Base styles for the casino page content */
.page-casino {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f4f4f4; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-casino__hero-section {
    background: linear-gradient(135deg, #1A237E, #FFD700);
    color: #ffffff; /* Light text for dark/gradient background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:casino_hero_pattern,abstract_geometric,dark_blue_gold]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-casino__hero-section > .page-casino__container {
    position: relative;
    z-index: 1;
}

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

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-casino__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-casino__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-casino__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark indigo */
    border-color: #FFD700;
}

.page-casino__button--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-casino__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border-color: #FFD700;
}

.page-casino__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-casino__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark indigo */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-casino__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-casino__section-subtitle {
    font-size: 1.2em;
    color: #555555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.page-casino__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-casino__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* No filter to change color */
}

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

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

.page-casino__category-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-casino__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* No filter to change color */
}

.page-casino__card-title {
    font-size: 1.6em;
    color: #1A237E; /* Dark indigo */
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

.page-casino__card-title a {
    color: #1A237E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino__card-title a:hover {
    color: #FFD700; /* Gold on hover */
}

.page-casino__card-description {
    font-size: 1em;
    color: #666666;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-casino__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    background-color: #1A237E;
    color: #ffffff;
    border-color: #1A237E;
}

.page-casino__button--small:hover {
    background-color: #0d125e;
    border-color: #0d125e;
    color: #FFD700;
}

/* Why Choose Us Section */
.page-casino__why-choose-us {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-casino__benefit-item {
    background-color: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.page-casino__benefit-icon {
    width: 200px; /* Minimum width */
    height: 200px; /* Minimum height */
    margin-left: auto;
    margin-right: auto;
    display: block;
    object-fit: contain; /* Or cover, depending on desired effect */
    margin-bottom: 20px;
    /* No filter to change color */
}

.page-casino__benefit-title {
    font-size: 1.8em;
    color: #1A237E; /* Dark indigo */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-casino__benefit-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* How to Start Section */
.page-casino__how-to-start {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-casino__step-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}