/* Casino Gaming Style CSS */
:root {
    /* Casino Color Palette */
    --primary-gold: #FFD700;
    --primary-red: #DC143C;
    --primary-green: #00FF7F;
    --electric-blue: #1E90FF;
    --neon-purple: #8A2BE2;
    --casino-black: #0D0D0D;
    --casino-dark: #1A1A1A;
    --casino-gray: #2D2D2D;
    --casino-light-gray: #4A4A4A;
    --neon-cyan: #00FFFF;
    --royal-purple: #6A5ACD;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500);
    --red-gradient: linear-gradient(135deg, #DC143C, #B22222);
    --purple-gradient: linear-gradient(135deg, #8A2BE2, #9370DB);
    --blue-gradient: linear-gradient(135deg, #1E90FF, #4169E1);
    --dark-gradient: linear-gradient(135deg, #0D0D0D, #1A1A1A);
    --card-gradient: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    
    /* Fonts */
    --primary-font: 'Orbitron', monospace;
    --secondary-font: 'Rajdhani', sans-serif;
}

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

body {
    font-family: var(--secondary-font);
    background: var(--casino-black);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--casino-black), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.age-gate-container {
    background: var(--card-gradient);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 80px rgba(255, 215, 0, 0.8); }
}

.neon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px var(--primary-gold);
}

.age-text {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 900;
    color: var(--casino-black);
}

.neon-title {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--primary-gold);
    margin-bottom: 20px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.age-btn {
    position: relative;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.age-btn.confirm {
    background: var(--gold-gradient);
    color: var(--casino-black);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.age-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.age-btn.deny {
    background: var(--red-gradient);
    color: white;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.age-btn.deny:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
}

/* Main Content */
.main-content {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.diamond-shape {
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: diamond-spin 4s linear infinite;
}

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

.logo-text {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
    text-shadow: 0 0 10px var(--primary-gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px 16px;
    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: var(--gold-gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item:hover::before {
    left: 0;
}

.nav-item:hover {
    color: var(--casino-black);
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--royal-purple), var(--casino-black));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: particle-float 6s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary-gold);
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { left: 10%; animation-delay: 4s; }

@keyframes particle-float {
    0%, 100% { transform: translateY(100vh) scale(0); }
    50% { transform: translateY(-10px) scale(1); }
}

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

.hero-title {
    font-family: var(--primary-font);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.neon-text {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--primary-gold);
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    position: relative;
    padding: 20px 50px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--casino-black);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.btn-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.btn-particles span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 2px;
    animation: btn-particle-bounce 1.5s infinite ease-in-out;
}

.btn-particles span:nth-child(1) { animation-delay: 0s; }
.btn-particles span:nth-child(2) { animation-delay: 0.2s; }
.btn-particles span:nth-child(3) { animation-delay: 0.4s; }

@keyframes btn-particle-bounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Overview Section */
.overview {
    padding: 100px 0;
    background: var(--dark-gradient);
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
}

.section-title {
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--casino-dark), var(--casino-black));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-gradient);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Game Preview Section */
.game-preview {
    padding: 100px 0;
    background: var(--dark-gradient);
    border-top: 3px solid var(--electric-blue);
    border-bottom: 3px solid var(--electric-blue);
}

.game-showcase {
    text-align: center;
}

.game-screen {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(30, 144, 255, 0.4);
}

.game-screen img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.game-screen:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--blue-gradient);
    border: none;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.5);
}

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

.play-icon {
    font-size: 24px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--royal-purple), var(--casino-black));
}

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

.about-card {
    background: var(--card-gradient);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--neon-purple);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.5);
}

.card-header h2 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.about-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.about-card a:hover {
    text-shadow: 0 0 10px var(--primary-gold);
}

/* Disclaimer Section */
.disclaimer {
    padding: 100px 0;
    background: var(--dark-gradient);
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

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

.disclaimer-text h2 {
    font-family: var(--primary-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.disclaimer-point {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.disclaimer-point::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.disclaimer-image {
    text-align: center;
}

.disclaimer-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--casino-gray), var(--casino-black));
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-gradient);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.3);
}

.form-title {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group label {
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--casino-light-gray);
    border-radius: 10px;
    background: var(--casino-dark);
    color: white;
    font-family: var(--secondary-font);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 18px 40px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--casino-black);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* Badges Section */
.badges {
    padding: 60px 0;
    background: var(--casino-dark);
}

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

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: var(--card-gradient);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.badge-icon {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: var(--primary-font);
}

/* Footer */
.footer {
    background: var(--casino-black);
    border-top: 3px solid var(--primary-gold);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.newsletter h3 {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--casino-light-gray);
    border-radius: 8px;
    background: var(--casino-dark);
    color: white;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--casino-black);
    cursor: pointer;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--casino-gray);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .overview-grid,
    .disclaimer-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .game-screen img {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card,
    .about-card {
        padding: 30px;
    }
    
    .age-gate-container {
        padding: 30px;
        margin: 0 15px;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.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;
  }
  