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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 50%, #0a0a0a 100%);
    color: #fff;
    overflow-x: hidden;
}

/* Age Gate Styles */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d1b1b);
    border: 3px solid #ffd700;
    border-radius: 20px;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.casino-lights {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.casino-lights .light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700, #ff8c00);
    box-shadow: 0 0 15px #ffd700;
    animation: casinoBlinking 2s infinite alternate;
}

.casino-lights .light:nth-child(2) { animation-delay: 0.5s; }
.casino-lights .light:nth-child(3) { animation-delay: 1s; }
.casino-lights .light:nth-child(4) { animation-delay: 1.5s; }

@keyframes casinoBlinking {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.casino-chip {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 2rem auto;
    background: linear-gradient(145deg, #8b0000, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    animation: chipRotate 8s linear infinite;
}

.chip-ring {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 4px solid #ffd700;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.5);
}

.chip-inner {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #ff4444, #8b0000);
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.age-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    z-index: 1;
    position: relative;
}

@keyframes chipRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vegas-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 
        0 0 10px #ffd700,
        0 0 20px #ff8c00,
        0 0 30px #ff0000;
    margin-bottom: 1rem;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ff8c00, 0 0 30px #ff0000; }
    100% { text-shadow: 0 0 20px #ffd700, 0 0 30px #ff8c00, 0 0 40px #ff0000; }
}

.age-buttons {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.age-btn.confirm {
    background: linear-gradient(45deg, #228B22, #32CD32);
    color: #fff;
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.3);
}

.age-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.age-btn.deny {
    background: linear-gradient(45deg, #8B0000, #DC143C);
    color: #fff;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.age-btn.deny:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
}

.btn-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 15, 15, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-diamond {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transform: rotate(45deg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: diamondSpin 10s linear infinite;
}

.diamond-facet {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3));
    border-radius: 2px;
}

.diamond-facet:nth-child(1) {
    width: 50%;
    height: 50%;
    top: 0;
    left: 0;
}

.diamond-facet:nth-child(2) {
    width: 50%;
    height: 50%;
    top: 0;
    right: 0;
}

.diamond-facet:nth-child(3) {
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 0;
}

.diamond-facet:nth-child(4) {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
}

@keyframes diamondSpin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 10px #ffd700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-item:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.nav-item:hover::before {
    left: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(ellipse at center, #1a0f0f 0%, #0a0a0a 100%);
}

.casino-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.poker-table-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 128, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(255, 215, 0, 0.05) 49%, rgba(255, 215, 0, 0.05) 51%, transparent 51%);
}

.floating-chips {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-chips .chip {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: floatChips 15s linear infinite;
}

.floating-chips .chip.red {
    background: linear-gradient(145deg, #8b0000, #ff0000);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-chips .chip.blue {
    background: linear-gradient(145deg, #00008b, #0000ff);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-chips .chip.green {
    background: linear-gradient(145deg, #006400, #32cd32);
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.floating-chips .chip.yellow {
    background: linear-gradient(145deg, #b8860b, #ffd700);
    top: 40%;
    right: 30%;
    animation-delay: 7s;
}

@keyframes floatChips {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.7; }
}

.slot-reels {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    gap: 10px;
}

.reel {
    width: 40px;
    height: 120px;
    background: linear-gradient(180deg, #333, #111, #333);
    border: 2px solid #ffd700;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: 
        linear-gradient(0deg, #ff0000 0%, #ff0000 10%, transparent 10%, transparent 20%),
        linear-gradient(0deg, #0000ff 20%, #0000ff 30%, transparent 30%, transparent 40%),
        linear-gradient(0deg, #32cd32 40%, #32cd32 50%, transparent 50%, transparent 60%),
        linear-gradient(0deg, #ffd700 60%, #ffd700 70%, transparent 70%, transparent 80%);
    animation: reelSpin 3s linear infinite;
}

.reel:nth-child(2)::before { animation-delay: 0.5s; }
.reel:nth-child(3)::before { animation-delay: 1s; }

@keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.hero-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.playing-card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: cardFloat 6s ease-in-out infinite;
}

.card-left {
    top: 30%;
    left: 5%;
    animation-delay: 0s;
}

.card-right {
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
}

.card-face {
    font-size: 2rem;
    color: #8b0000;
    font-weight: bold;
}

.card-right .card-face {
    color: #dc143c;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
}

.title-line:first-child {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.vegas-neon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ff0000, #ffd700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonFlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px #ffd700;
}

@keyframes neonFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    position: relative;
    padding: 1.2rem 3rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-coins {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-coins span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff, #ffd700);
    border-radius: 50%;
    animation: coinSparkle 2s infinite;
}

.btn-coins span:nth-child(1) { left: -20px; animation-delay: 0s; }
.btn-coins span:nth-child(2) { left: 0; animation-delay: 0.7s; }
.btn-coins span:nth-child(3) { left: 20px; animation-delay: 1.4s; }

@keyframes coinSparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Overview Section */
.overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 100%);
    position: relative;
}

.overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.casino-table-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(0, 128, 0, 0.1), rgba(26, 15, 15, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.roulette-wheel {
    width: 80px;
    height: 80px;
    border: 4px solid #ffd700;
    border-radius: 50%;
    background: 
        conic-gradient(#8b0000 0deg, #000 18deg, #8b0000 36deg, #000 54deg, #8b0000 72deg, #000 90deg,
                       #8b0000 108deg, #000 126deg, #8b0000 144deg, #000 162deg, #8b0000 180deg, #000 198deg,
                       #8b0000 216deg, #000 234deg, #8b0000 252deg, #000 270deg, #8b0000 288deg, #000 306deg,
                       #8b0000 324deg, #000 342deg, #8b0000 360deg);
    position: relative;
    animation: rouletteSpinSlow 20s linear infinite;
}

.roulette-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rouletteSpinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #ffd700;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.poker-chips-decoration {
    display: flex;
    gap: 1rem;
}

.mini-chip {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mini-chip.red { background: linear-gradient(145deg, #8b0000, #ff0000); }
.mini-chip.blue { background: linear-gradient(145deg, #00008b, #0000ff); }
.mini-chip.green { background: linear-gradient(145deg, #006400, #32cd32); }

/* Features Section */
.features {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, #1a0f0f 0%, #0a0a0a 100%);
}

.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2d1b1b);
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ff0000, #8b0000, #ffd700);
    border-radius: 15px;
    z-index: -2;
    background-size: 300% 300%;
    animation: borderAnimation 6s linear infinite;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #1a1a1a, #2d1b1b);
    border-radius: 12px;
    z-index: -1;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.card-suit {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: suitPulse 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .card-suit { color: #000; text-shadow: 0 0 10px #fff; }
.feature-card:nth-child(2) .card-suit { color: #dc143c; text-shadow: 0 0 10px #dc143c; }
.feature-card:nth-child(3) .card-suit { color: #dc143c; text-shadow: 0 0 10px #dc143c; }

@keyframes suitPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.card-corner {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
    color: inherit;
}

/* Game Preview Section */
.game-preview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 100%);
}

.slot-machine-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-machine-frame {
    position: relative;
    padding: 3rem;
    background: linear-gradient(145deg, #2d1b1b, #1a1a1a);
    border-radius: 30px;
    border: 5px solid #ffd700;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.slot-machine-lights {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.light-bulb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700, #ff8c00);
    box-shadow: 0 0 20px #ffd700;
    animation: bulbFlicker 2s infinite alternate;
}

.light-bulb:nth-child(2) { animation-delay: 0.5s; }
.light-bulb:nth-child(3) { animation-delay: 1s; }
.light-bulb:nth-child(4) { animation-delay: 1.5s; }

@keyframes bulbFlicker {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.game-screen {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #333;
    max-width: 600px;
}

.game-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.play-icon {
    font-size: 2rem;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, #1a0f0f 0%, #0a0a0a 100%);
}

.casino-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #2d1b1b);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.about-card:hover::before {
    left: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dice-icon {
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    animation: diceRoll 4s ease-in-out infinite;
}

@keyframes diceRoll {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

.card-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.about-card a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-card a:hover {
    color: #ff8c00;
    text-shadow: 0 0 5px #ff8c00;
}

/* Disclaimer Section */
.disclaimer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 100%);
}

.disclaimer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.disclaimer-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bullet {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    min-width: 20px;
}

.disclaimer-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ffd700;
}

.corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, #1a0f0f 0%, #0a0a0a 100%);
}

.contact-casino-table {
    position: relative;
    background: linear-gradient(145deg, #006400, #228B22);
    border: 5px solid #ffd700;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.table-felt-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 25px 25px;
    border-radius: 25px;
    pointer-events: none;
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 20px #ffd700,
        0 0 40px rgba(255, 215, 0, 0.5);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

/* Badges Section */
.badges {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 100%);
}

.casino-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    position: relative;
    display: block;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.badge img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.badge:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.badge-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge:hover .badge-glow {
    opacity: 0.5;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0f 100%);
    border-top: 3px solid #ffd700;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter {
    margin-bottom: 2rem;
}

.newsletter h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-chips {
    display: flex;
    gap: 1rem;
}

.footer-chip {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: chipBounce 3s ease-in-out infinite;
}

.footer-chip.red {
    background: linear-gradient(145deg, #8b0000, #ff0000);
    animation-delay: 0s;
}

.footer-chip.blue {
    background: linear-gradient(145deg, #00008b, #0000ff);
    animation-delay: 1s;
}

.footer-chip.green {
    background: linear-gradient(145deg, #006400, #32cd32);
    animation-delay: 2s;
}

@keyframes chipBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 15, 15, 0.95));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .vegas-neon {
        font-size: 2.5rem;
    }
    
    .title-line:first-child {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .casino-table-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .casino-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-about-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .age-gate-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .vegas-title {
        font-size: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .vegas-neon {
        font-size: 2rem;
    }
    
    .title-line:first-child {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .about-card {
        padding: 2rem;
    }
    
    .contact-casino-table {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .casino-badges-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

.content{
    padding: 7% 10%;
  }
  .content *{
    line-height: 26px;
  }
  .content-block h2 {
    color: var(--casino-gold);
  }
  
  .content-block p {
    color: white;
  }

  .play-ground-area {
    padding: 2rem;
    background: black;
    margin-top: 30px;
  }
  
  .play-game {
    max-width: 940px;
    margin: 0 auto;
  }
  