/* style/casino.css */

/* Base styles for the page-casino scope */
.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
}

/* Section general styles */
.page-casino__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-casino__dark-section {
    background: #111111; /* Card BG */
}

.page-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for smaller screens */
    box-sizing: border-box;
}

/* Typography */
.page-casino__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF6D6; /* Text Main */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.page-casino__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2C14E; /* Primary Color */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-casino h3 {
    font-size: 1.8em;
    color: #FFD36B; /* Auxiliary Color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-casino h4 {
    font-size: 1.4em;
    color: #FFF6D6; /* Text Main */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-casino p {
    margin-bottom: 15px;
    color: #FFF6D6; /* Text Main */
}

.page-casino a {
    color: #F2C14E; /* Primary Color for links */
    text-decoration: none;
}

.page-casino a:hover {
    text-decoration: underline;
    color: #FFD36B; /* Auxiliary Color on hover */
}

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    border: none; /* Remove default button border */
}

.page-casino__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom Button Color */
    color: #111111; /* Dark text for bright button */
}

.page-casino__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-casino__btn-secondary {
    background: transparent;
    color: #F2C14E; /* Primary Color */
    border: 2px solid #F2C14E; /* Primary Color for border */
}

.page-casino__btn-secondary:hover {
    background: #F2C14E; /* Primary Color */
    color: #111111; /* Dark text for bright button */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-casino__btn-primary--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-casino__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-casino__cta-buttons--centered {
    justify-content: center;
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-casino__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-casino__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any background elements */
}

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

/* Image + Text Block */
.page-casino__image-text-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap; /* Allow wrapping */
}

.page-casino__image-block {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-casino__text-block {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.page-casino__image-centered {
    display: block;
    margin: 50px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Feature Grid */
.page-casino__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-casino__feature-card {
    background: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}

.page-casino__feature-icon {
    width: 30px; /* Specific size for small icons */
    height: 30px; /* Specific size for small icons */
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-casino__feature-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-top: 0;
}

/* Game Categories */
.page-casino__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-casino__category-card {
    background: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border */
}