/* style/casino-live-dealer-games.css */

/* Custom Colors */
:root {
    --vv88-color-primary: #11A84E;
    --vv88-color-secondary: #22C768;
    --vv88-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --vv88-card-bg: #11271B;
    --vv88-bg: #08160F;
    --vv88-text-main: #F2FFF6;
    --vv88-text-secondary: #A7D9B8;
    --vv88-border: #2E7A4E;
    --vv88-glow: #57E38D;
    --vv88-gold: #F2C14E;
    --vv88-divider: #1E3A2A;
    --vv88-deep-green: #0A4B2C;
}

/* Base styles for the page, assuming a dark body background from shared.css */
.page-casino-live-dealer-games {
    background-color: var(--vv88-bg); /* Use custom background color */
    color: var(--vv88-text-main); /* Ensure light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-casino-live-dealer-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-casino-live-dealer-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--vv88-gold); /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-casino-live-dealer-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--vv88-glow);
    border-radius: 2px;
}

/* Hero Section */
.page-casino-live-dealer-games__hero-section {
    display: flex; /* Use flex for column layout */
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--vv88-deep-green); /* Fallback background for hero */
    padding-bottom: 40px; /* Add padding below content */
}

.page-casino-live-dealer-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height to control aspect ratio */
    overflow: hidden;
}

.page-casino-live-dealer-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 200px; /* Minimum size requirement */
}

.page-casino-live-dealer-games__hero-content-below-image {
    padding: 20px;
    max-width: 900px;
    margin-top: 30px; /* Spacing between image and content block */
}

.page-casino-live-dealer-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--vv88-gold);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-casino-live-dealer-games__subtitle {
    font-size: 1.2em;
    color: var(--vv88-text-secondary);
    margin-bottom: 30px;
}

.page-casino-live-dealer-games__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-casino-live-dealer-games__btn-primary,
.page-casino-live-dealer-games__btn-secondary,
.page-casino-live-dealer-games__small-btn,
.page-casino-live-dealer-games__game-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons adapt to mobile */
}

.page-casino-live-dealer-games__btn-primary {
    background: var(--vv88-btn-gradient);
    color: var(--vv88-text-main);
    border: 2px solid transparent;
}

.page-casino-live-dealer-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--vv88-glow);
}

.page-casino-live-dealer-games__btn-secondary {
    background-color: transparent;
    color: var(--vv88-glow);
    border: 2px solid var(--vv88-glow);
}

.page-casino-live-dealer-games__btn-secondary:hover {
    background-color: var(--vv88-glow);
    color: var(--vv88-bg);
    box-shadow: 0 0 15px var(--vv88-glow);
}

.page-casino-live-dealer-games__small-btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Intro Section */
.page-casino-live-dealer-games__intro-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--vv88-bg);
}

/* Advantages Section */
.page-casino-live-dealer-games__advantages-section {
    padding: 60px 0;
    background-color: var(--vv88-card-bg); /* Darker background for contrast */
    color: var(--vv88-text-main);
}

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

.page-casino-live-dealer-games__card {
    background-color: var(--vv88-deep-green); /* Card BG */
    border: 1px solid var(--vv88-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px; /* Minimum size requirement */
}

.page-casino-live-dealer-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-casino-live-dealer-games__card-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Recommended for card images */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-casino-live-dealer-games__card-title {
    font-size: 1.5em;
    color: var(--vv88-gold);
    margin-bottom: 10px;
}

/* Video Section */
.page-casino-live-dealer-games__video-section {
    padding: 60px 0;
    background-color: var(--vv88-bg);
    text-align: center;
}

.page-casino-live-dealer-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Max width for video container */
    margin: 0 auto 30px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.page-casino-live-dealer-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.page-casino-live-dealer-games__video-cta {
    margin-top: 30px;
}

/* Games Section */
.page-casino-live-dealer-games__games-section {
    padding: 60px 0;
    background-color: var(--vv88-bg);
}

.page-casino-live-dealer-games__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-casino-live-dealer-games__game-item {
    background-color: var(--vv88-deep-green); /* Card BG */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--vv88-border);
    text-align: center;
}

.page-casino-live-dealer-games__game-title {
    font-size: 1.3em;
    color: var(--vv88-gold);
    margin-bottom: 10px;
}

.page-casino-live-dealer-games__game-link {
    background-color: var(--vv88-color-primary);
    color: var(--vv88-text-main);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.page-casino-live-dealer-games__game-link:hover {
    background-color: var(--vv88-color-secondary);
}}