/* style/casino.css */

/* Custom properties for colors */
:root {
    --page-casino-primary-color: #FF8C1A;
    --page-casino-secondary-color: #FFA53A;
    --page-casino-button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --page-casino-card-bg: #17191F;
    --page-casino-background: #0D0E12;
    --page-casino-text-main: #FFF3E6;
    --page-casino-border-color: #A84F0C;
    --page-casino-glow-color: #FFB04D;
    --page-casino-deep-orange: #D96800;
    /* Assume body background is dark from shared.css, so default text is light */
    --page-casino-default-text-color: var(--page-casino-text-main);
    --page-casino-light-text-color: #ffffff;
    --page-casino-dark-text-color: #333333;
    --page-casino-light-bg-section: #f8f9fa; /* For light-bg sections */
}

.page-casino {
    font-family: Arial, sans-serif;
    color: var(--page-casino-default-text-color); /* Default text color for the page */
    background-color: var(--page-casino-background); /* Page background */
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    background-color: var(--page-casino-background);
}

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

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

.page-casino__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    color: var(--page-casino-light-text-color);
}

.page-casino__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--page-casino-glow-color); /* Use a bright color for H1 */
    text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-casino__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--page-casino-light-text-color);
}

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

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

.page-casino__btn-primary {
    background: var(--page-casino-button-gradient);
    color: var(--page-casino-light-text-color);
    border: 2px solid var(--page-casino-deep-orange);
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-casino__btn-primary:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #E67800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-casino__btn-secondary {
    background-color: transparent;
    color: var(--page-casino-primary-color);
    border: 2px solid var(--page-casino-primary-color);
}

.page-casino__btn-secondary:hover {
    background-color: var(--page-casino-primary-color);
    color: var(--page-casino-light-text-color);
    transform: translateY(-2px);
}

/* Video Section */
.page-casino__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--page-casino-background);
    color: var(--page-casino-light-text-color);
}

.page-casino__video-container {
    width: 100%; /* Desktop: ensure width 100% with max-width */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-casino__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}