/* Base Styles */
:root {
    --color-dark: #191919;
    --color-dark-secondary: #252525;
    --color-purple: #4A154B;
    --color-purple-light: #6A356B;
    --color-gold: #D4AF37;
    --color-gold-light: #F4CF67;
    --color-silver: #C0C0C0;
    --color-silver-dark: #A0A0A0;
    --color-text: #F5F5F5;
    --color-text-secondary: #BCBCBC;
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-error: #DC3545;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-gold);
}

.gold-text {
    color: var(--color-gold);
}

.silver-text {
    color: var(--color-silver);
}

/* Container */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-discover {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    color: var(--color-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
    color: var(--color-gold-light);
}

.btn-discover {
    background: rgba(25, 25, 25, 0.8);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
}

.btn-discover:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--color-purple), var(--color-gold), var(--color-purple));
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/531880/pexels-photo-531880.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.85), rgba(74, 21, 75, 0.85));
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-md);
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-silver);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    background-color: var(--color-dark-secondary);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(74, 21, 75, 0.3), transparent 60%);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.8), rgba(25, 25, 25, 0.8));
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.exclusive-icon {
    background-image: url('https://img.icons8.com/ios-filled/100/D4AF37/crown.png');
}

.rewards-icon {
    background-image: url('https://img.icons8.com/ios-filled/100/D4AF37/money-bag.png');
}

.social-icon {
    background-image: url('https://img.icons8.com/ios-filled/100/D4AF37/group.png');
}

.security-icon {
    background-image: url('https://img.icons8.com/ios-filled/100/D4AF37/lock.png');
}

.feature-card h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    position: relative;
    background-color: var(--color-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-content {
    padding-right: var(--spacing-lg);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: var(--border-radius-md);
    background-image: url('/assets/abt.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 21, 75, 0.3), transparent);
}

/* Games Section */
.games-section {
    background-color: var(--color-dark-secondary);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.game-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-image {
    width: 100%;
    padding-bottom: 133%; /* 3:4 aspect ratio */
    position: relative;
    background-size: cover;
    background-position: center;
}

.game-card[data-game="slots"] .game-image {
    background-image: url('/assets/connectthebubble.webp');
}

.game-card[data-game="poker"] .game-image {
    background-image: url('/assets/hexamerge.webp');
}

.game-card[data-game="blackjack"] .game-image {
    background-image: url('/assets/bottleshooter.webp');
}

.game-card[data-game="roulette"] .game-image {
    background-image: url('/assets/1010halloween.webp');
}

.game-card[data-game="baccarat"] .game-image {
    background-image: url('/assets/mahjonggpyramids.webp');
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(25, 25, 25, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--spacing-md);
    transition: background var(--transition-speed) ease;
}

.game-card:hover .game-overlay {
    background: linear-gradient(to bottom, rgba(74, 21, 75, 0.4), rgba(25, 25, 25, 0.9));
}

.game-overlay h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: var(--color-dark);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.disclaimer-content {
    background-color: rgba(25, 25, 25, 0.5);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    border: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--color-silver);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.age-verification-content {
    background: linear-gradient(145deg, var(--color-dark-secondary), var(--color-dark));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--color-silver-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.age-verification h2 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}