/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Casino Colors */
    --primary-green: #DC2626;
    --secondary-red: #EF4444;
    --accent-gold: #F59E0B;
    --dark-bg: #1A0B0B;
    --light-bg: #2D1B1B;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-red));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-red), var(--accent-gold));
    --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    
    /* Shadows */
    --shadow-light: 0 4px 15px rgba(220, 38, 38, 0.2);
    --shadow-medium: 0 8px 30px rgba(220, 38, 38, 0.3);
    --shadow-heavy: 0 15px 50px rgba(220, 38, 38, 0.4);
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 10px 40px rgba(0, 200, 81, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.nav-link.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}


/* Enhanced WhatsApp Button for Navigation */
.btn-whatsapp-enhanced {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    border: 3px solid #25D366 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    animation: floatUpDown 3s ease-in-out infinite;
}

.btn-whatsapp-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp-enhanced:hover::before {
    left: 100%;
}

.btn-whatsapp-enhanced:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6) !important;
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
}

.btn-whatsapp-enhanced i {
    font-size: 24px;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 200, 81, 0.1) 0%, 
        rgba(255, 215, 0, 0.1) 25%, 
        rgba(255, 23, 68, 0.1) 50%, 
        rgba(0, 200, 81, 0.1) 75%, 
        rgba(255, 215, 0, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 200, 81, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 23, 68, 0.1) 0%, transparent 50%);
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: 7s;
    animation-duration: 6s;
}

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

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 200px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 30px 60px rgba(0, 200, 81, 0.4);
    z-index: 10;
}

.hero-roulette {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.hero-chips {
    top: 55%;
    left: 5%;
    animation-delay: 1.5s;
}

.hero-cards {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.hero-slot {
    top: 35%;
    left: 12%;
    animation-delay: 4.5s;
}

@keyframes floatImage {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
        filter: brightness(1.2);
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
    position: relative;
    min-height: 80vh;
}

.hero-text {
    text-align: right;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8B5CF6, var(--accent-gold));
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, #DC2626, #EF4444, #F59E0B, #F97316);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.8);
    animation: titleGradient 3s ease-in-out infinite;
}








.hero-subtitle {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    animation: subtitleGlow 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes subtitleGlow {
    0%, 100% { 
        text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
        transform: scale(1.01);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 200, 81, 0.5);
    border-color: var(--accent-gold);
    animation: btnPulse 0.6s ease-in-out;
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.3);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
    border-color: var(--accent-gold);
    animation: btnPulse 0.6s ease-in-out;
}

@keyframes btnPulse {
    0% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-8px) scale(1.08); }
    100% { transform: translateY(-5px) scale(1.05); }
}

/* Casino Features */
.casino-features {
    margin-top: 0.5rem;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.casino-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(167, 139, 250, 0.1));
    z-index: 1;
}

.casino-features .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.casino-features .feature-grid {
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #A78BFA;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.roulette-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.roulette-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.slot-machine-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.slot-machine-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.blackjack-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.blackjack-icon:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.sports-betting-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.sports-betting-icon:hover {
    transform: scale(1.1) rotate(-3deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.baccarat-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.baccarat-icon:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.poker-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.poker-icon:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.dice-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.dice-icon:hover {
    transform: scale(1.1) rotate(4deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.basketball-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.basketball-icon:hover {
    transform: scale(1.1) rotate(-4deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.tennis-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
    transition: all 0.3s ease;
}

.tennis-icon:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #A78BFA;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: white;
}

.stat-item:hover .stat-label {
    color: var(--accent-gold);
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .casino-features {
        margin-top: 0.3rem;
        padding: 1rem 0;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .roulette-icon {
        width: 60px;
        height: 60px;
    }
    
    .slot-machine-icon {
        width: 60px;
        height: 60px;
    }
    
    .blackjack-icon {
        width: 60px;
        height: 60px;
    }
    
    .sports-betting-icon {
        width: 60px;
        height: 60px;
    }
    
    .baccarat-icon {
        width: 60px;
        height: 60px;
    }
    
    .poker-icon {
        width: 60px;
        height: 60px;
    }
    
    .dice-icon {
        width: 60px;
        height: 60px;
    }
    
    .basketball-icon {
        width: 60px;
        height: 60px;
    }
    
    .tennis-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    
    .casino-features {
        margin-top: 0.2rem;
        padding: 0.8rem 0;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .roulette-icon {
        width: 50px;
        height: 50px;
    }
    
    .slot-machine-icon {
        width: 50px;
        height: 50px;
    }
    
    .blackjack-icon {
        width: 50px;
        height: 50px;
    }
    
    .sports-betting-icon {
        width: 50px;
        height: 50px;
    }
    
    .baccarat-icon {
        width: 50px;
        height: 50px;
    }
    
    .poker-icon {
        width: 50px;
        height: 50px;
    }
    
    .dice-icon {
        width: 50px;
        height: 50px;
    }
    
    .basketball-icon {
        width: 50px;
        height: 50px;
    }
    
    .tennis-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .casino-features {
        margin-top: 0.1rem;
        padding: 0.6rem 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .roulette-icon,
    .slot-machine-icon,
    .blackjack-icon,
    .sports-betting-icon,
    .baccarat-icon,
    .poker-icon,
    .dice-icon,
    .basketball-icon,
    .tennis-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 1.5rem;
    }
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-bg);
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 200, 81, 0.2);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-green);
    width: 40px;
    text-align: center;
}

.feature-item h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
}

.agent-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.agent-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
}

.agent-card h4 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.agent-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 18px;
}

.rating span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Casino Games Section */
.casino-games {
    background: var(--dark-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(0, 200, 81, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.game-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 200, 81, 0.4);
    border-color: var(--accent-gold);
}

/* Gallery Slider */
.game-gallery, .sport-gallery {
    width: 100%;
    height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: linear-gradient(135deg, #0F0B1A, #1A1625);
}

@media (max-width: 768px) {
    .game-gallery, .sport-gallery {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .game-gallery, .sport-gallery {
        height: 250px;
        min-height: 250px;
    }
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-images {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.gallery-image.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.game-card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.game-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.game-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.game-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-features {
    list-style: none;
    margin-bottom: 25px;
}

.game-features li {
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.game-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Sports Betting Section */
.sports-betting {
    background: var(--light-bg);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sport-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 23, 68, 0.2);
    transition: all 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.sport-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.sport-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.sport-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sport-features {
    list-style: none;
    margin-bottom: 25px;
}

.sport-features li {
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.sport-btn {
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.sport-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Bonuses Section */
.bonuses {
    background: var(--dark-bg);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 200, 81, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-features li {
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 500;
}

.bonus-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

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

.bonus-btn:hover::before {
    left: 100%;
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

/* Testimonials & Stats Section */
.testimonials {
    background: var(--dark-bg);
    padding: 80px 0;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 200, 81, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 200, 81, 0.3);
    border-color: var(--accent-gold);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.stat-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-green);
}

.testimonial-content p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 200, 81, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.contact-details h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.contact-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 81, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 81, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 3px solid #25D366;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.floating-whatsapp-btn:hover::before {
    left: 100%;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.floating-whatsapp-btn i {
    font-size: 24px;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

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

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

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

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 20px;
    }
    
    .floating-whatsapp-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 18px;
    }
    
    .floating-whatsapp-text {
        font-size: 11px;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    color: var(--text-white);
    background: var(--gradient-primary);
}

/* Special styling for WhatsApp buttons in footer */

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .games-grid,
    .sports-grid,
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.95));
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        border-top: 3px solid var(--accent-gold);
        z-index: 999;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        top: 0;
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        display: block;
        padding: 20px 30px;
        font-size: 20px;
        font-weight: 600;
        border-radius: 15px;
        margin: 8px 0;
        text-decoration: none;
        color: var(--text-white);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        border: 2px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link::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.6s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
        border-color: rgba(255, 215, 0, 0.4);
        color: var(--accent-gold);
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
        border-color: rgba(255, 215, 0, 0.5);
        color: var(--accent-gold);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
        border: 2px solid rgba(255, 215, 0, 0.3);
        border-radius: 10px;
        cursor: pointer;
        padding: 8px;
        z-index: 1000;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
        border-color: rgba(255, 215, 0, 0.5);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--accent-gold);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
        box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
    }
    
    .hamburger.active {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
        border-color: rgba(255, 215, 0, 0.5);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--accent-gold);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(30px) scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--accent-gold);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .title-badge {
        font-size: 1rem;
        padding: 6px 16px;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 10px 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 20px 0;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        white-space: nowrap;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px 10px;
        min-height: 150px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
        max-width: 130px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .games-grid,
    .sports-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    /* Gallery Responsive */
    .game-gallery, .sport-gallery {
        height: 220px;
        min-height: 220px;
    }
    
    .gallery-prev, .gallery-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    /* Form Responsive */
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-white);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(0, 200, 81, 0.1);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-gray);
        opacity: 0.8;
    }
    
    /* Card Responsive */
    .game-card, .sport-card, .bonus-card {
        margin-bottom: 15px;
    }
    
    .game-card-content, .sport-card-content, .bonus-card-content {
        padding: 15px;
    }
    
    /* Button Responsive */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-whatsapp {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .bonus-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-badge {
        font-size: 0.9rem;
        padding: 5px 14px;
        margin-top: 6px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 15px 0;
    }

    .stat-item {
        padding: 12px 10px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .game-card,
    .sport-card,
    .bonus-card {
        padding: 15px;
    }
    
    .bonus-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Gallery Mobile Small */
    .game-gallery, .sport-gallery {
        height: 200px;
        min-height: 200px;
    }
    
    .gallery-prev, .gallery-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Form Mobile Small */
    .contact-form {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-white);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-green);
        box-shadow: 0 0 0 3px rgba(0, 200, 81, 0.1);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-gray);
        opacity: 0.8;
    }
    
    /* Button Mobile Small */
    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .btn-whatsapp {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }
    
    /* Card Mobile Small */
    .game-card-content, .sport-card-content,     .bonus-card-content {
        padding: 12px;
    }
    
    .bonus-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Hero Mobile Small */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    /* Navigation Mobile Small */
    .nav-menu {
        padding: 70px 15px 15px;
    }
    
    .nav-link {
        padding: 18px 25px;
        font-size: 18px;
        font-weight: 600;
        margin: 6px 0;
        text-decoration: none;
        color: var(--text-white);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link::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.6s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
        border-color: rgba(255, 215, 0, 0.4);
        color: var(--accent-gold);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
        border-color: rgba(255, 215, 0, 0.5);
        color: var(--accent-gold);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    
    .nav-menu li {
        margin: 6px 0;
        list-style: none;
    }
    
    /* Logo Mobile Small */
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}