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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
}

/* Gaming Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(76, 29, 149, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: -1;
}

/* Floating Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.6), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(102, 126, 234, 0.7), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(168, 85, 247, 0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(76, 29, 149, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(255, 107, 53, 0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    z-index: -1;
    opacity: 0.5;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Modern CSS Variables - Dark Theme with Purple */
:root {
    --primary-purple: #667eea;
    --secondary-purple: #764ba2;
    --deep-purple: #4c1d95;
    --light-purple: #a855f7;
    --purple-glow: #8b5cf6;
    --accent-orange: #ff6b35;
    --light-orange: #ff8c42;
    --pure-white: #ffffff;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-card: #2a2a2a;
    --dark-border: #333333;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.5);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --neon-glow: 0 0 20px rgba(255, 107, 53, 0.6);
    --neon-glow-purple: 0 0 20px rgba(102, 126, 234, 0.6);
    --neon-glow-deep-purple: 0 0 20px rgba(76, 29, 149, 0.6);
    --neon-glow-cyan: 0 0 20px rgba(0, 255, 255, 0.6);
}

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

/* Modern Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

/* Floating Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--accent-orange), var(--primary-purple), var(--light-purple)) 1;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo h1 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: var(--neon-glow);
    animation: logoGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.logo h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 3s linear infinite;
    filter: blur(8px);
    opacity: 0.7;
}

@keyframes logoGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(255, 107, 53, 0.3)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 107, 53, 0.6)); }
}

@keyframes rainbowText {
    0% { background-position: 0%; }
    100% { background-position: 400%; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-right: 140px; /* Make space for the login button */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(102, 126, 234, 0.15));
    transform: translateY(-2px);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: navPulse 0.6s ease-in-out;
}

@keyframes navPulse {
    0%, 100% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

/* Login Button Styles */
.login-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #667eea 50%, #764ba2 100%);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 2px 10px rgba(102, 126, 234, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    overflow: hidden !important;
    z-index: 1001 !important;
    backdrop-filter: blur(10px) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.login-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-out;
    z-index: -1;
}

.login-btn:hover {
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 4px 15px rgba(102, 126, 234, 0.3), 0 0 20px rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: linear-gradient(135deg, #ff7a3d 0%, #7c8ff0 50%, #8a5bb8 100%) !important;
}

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

.login-btn:active {
    transform: translateY(-50%) scale(0.95) !important;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3), 0 1px 5px rgba(102, 126, 234, 0.2) !important;
    transition: all 0.1s ease !important;
}

.login-btn:focus {
    outline: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 2px 10px rgba(102, 126, 234, 0.2), 0 0 0 3px rgba(255, 107, 53, 0.3) !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
}

/* Main Content */
main {
    margin-top: 70px;
    background: var(--dark-bg);
    min-height: calc(100vh - 70px);
}

/* Hero Section with Carousel */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 1.5s ease-out 0.5s both;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-container {
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--deep-purple) 50%, var(--dark-card) 100%);
    position: relative;
    overflow: hidden;
}

/* Gaming Grid Pattern */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.15) 1px, transparent 1px),
        linear-gradient(45deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.25;
}

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

.carousel-slide.active {
    opacity: 1;
    animation: slideFadeIn 1s ease-out 0.8s both;
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide.active .slide-logo {
    animation: logoFloat 3s ease-in-out infinite, logoEntrance 1s ease-out;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.slide-content {
    flex: 1;
    padding: 0 60px;
    color: white;
    z-index: 2;
    animation: contentFadeIn 1.2s ease-out 1s both;
    opacity: 0;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    animation: titleFloat 3s ease-in-out infinite;
    position: relative;
}

.slide-content h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 20px;
    animation: titleGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

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

@keyframes titleGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    animation: imageFadeIn 1.2s ease-out 1.2s both;
    opacity: 0;
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.slide-logo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    box-shadow: var(--shadow-heavy), var(--neon-glow), var(--neon-glow-purple);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slide-logo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    border-radius: 50%;
    z-index: -1;
    animation: borderRainbow 3s linear infinite;
}

.slide-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: logoRotate 4s linear infinite;
}

.slide-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.slide-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: logoShine 4s linear infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
}

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

@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

@keyframes borderRainbow {
    0% { background-position: 0%; }
    100% { background-position: 400%; }
}

.slide-logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
}

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

.tiranga-colors {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.color-saffron {
    height: 33.33%;
    background: #FF9933;
}

.color-white {
    height: 33.33%;
    background: white;
    position: relative;
}

.color-white::after {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #000080;
}

.color-green {
    height: 33.33%;
    background: #138808;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 107, 53, 0.8);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium), var(--neon-glow), var(--neon-glow-purple);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(255, 107, 53, 0.8), 0 0 30px rgba(102, 126, 234, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-button:hover::after {
    opacity: 1;
}

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

/* About Us Section */
.about-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols" !important;
}

/* Force emojis to be visible in about-section h2 */
.about-text h2 .emoji {
    -webkit-text-fill-color: initial !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ff6b35 !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols" !important;
}

/* Force emojis to be visible in how-to-section h2 */
.how-to-section h2 .emoji {
    -webkit-text-fill-color: initial !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ff6b35 !important;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols" !important;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-description strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    flex: 1;
    max-width: 150px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow-purple);
    border-color: var(--accent-orange);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.about-cta::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;
}

.about-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--neon-glow), var(--neon-glow-purple), var(--neon-glow-deep-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

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

.about-card {
    background: var(--dark-card);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--neon-glow-purple);
    border-color: var(--accent-orange);
}

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

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* How to Login and Register Section */
.how-to-section {
    padding: 120px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.how-to-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.how-to-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 400;
}

.how-to-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--neon-glow-purple);
    border-color: var(--accent-orange);
}

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

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: var(--neon-glow), 0 0 20px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
    animation: stepNumberPulse 2s ease-in-out infinite;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Login Register Demo */
.login-register-demo {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: stretch;
    padding: 20px 0;
}

.demo-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.demo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.demo-header {
    background: linear-gradient(135deg, #ff6b35, #667eea);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-header::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;
}

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

.demo-header h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.demo-status {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.demo-card:hover .demo-status {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.demo-form {
    padding: 25px 25px 35px 25px;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.demo-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.demo-card:hover .demo-input {
    border-bottom-color: rgba(255, 107, 53, 0.3);
}

.demo-label {
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.demo-card:hover .demo-label {
    color: #ffffff;
}

.demo-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-value.password {
    color: #888888;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 0.85rem;
}

.demo-card:hover .demo-value.password {
    color: #aaaaaa;
}

.demo-btn {
    width: 70%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
}

.demo-btn.login-btn {
    background: linear-gradient(135deg, #ff6b35, #667eea);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), 0 0 20px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-btn.login-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.6s ease;
}

.demo-btn.login-btn:hover {
    background: linear-gradient(135deg, #ff8c42, #764ba2);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.demo-btn.register-btn {
    background: linear-gradient(135deg, #667eea, #a855f7);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 0 20px rgba(168, 85, 247, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.demo-btn.register-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.6s ease;
}

.demo-btn.register-btn:hover {
    background: linear-gradient(135deg, #764ba2, #c084fc);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6), 0 0 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

.demo-btn:hover {
    transform: translateZ(0) scale(1.02);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.demo-btn:active {
    transform: translateZ(0) scale(0.98);
}

/* Benefits List */
.benefits-list {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--dark-border);
}

.benefits-list h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.benefits-list li i {
    color: var(--accent-orange);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* How to CTA */
.how-to-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-cta {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.secondary-cta::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.6s ease;
}

.secondary-cta:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(102, 126, 234, 0.2));
    color: #ffffff;
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3), 0 0 20px rgba(102, 126, 234, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.secondary-cta:hover::before {
    left: 100%;
}

.secondary-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0.5;
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact-info > p {
    color: #b8c5d6;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact item styling for contact.html */
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #1e1e2e, #2a2a3e);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.contact-item .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-item .contact-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item .contact-details p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-item .contact-details a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item .contact-details a:hover {
    color: #667eea;
    text-decoration: underline;
}

.social-contact {
    margin-top: 30px;
    text-align: center;
}

.social-contact h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links-contact a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-links-contact a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.contact-card {
    background: linear-gradient(145deg, #1e1e2e, #2a2a3e);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--neon-glow-purple);
    border-color: var(--accent-orange);
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple));
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact-status {
    display: inline-block;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.chat-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact-form-container {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(102, 126, 234, 0.05));
    z-index: -1;
}

.contact-form {
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--dark-surface);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: var(--neon-glow);
    background: var(--dark-card);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--neon-glow), var(--neon-glow-purple);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--neon-glow), var(--neon-glow-purple), var(--neon-glow-deep-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--dark-surface);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-purple) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    opacity: 0.3;
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark-card);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid var(--dark-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:nth-child(2) {
    animation-delay: 1s;
}

.feature-card:nth-child(3) {
    animation-delay: 2s;
}

.feature-card:nth-child(4) {
    animation-delay: 3s;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
    background: linear-gradient(145deg, var(--dark-card), #2a2a2a);
}

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

.feature-card i {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

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

@keyframes stepNumberPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--neon-glow), 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: var(--neon-glow), 0 0 30px rgba(255, 107, 53, 0.5);
    }
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-orange) 100%);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.3;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-primary);
}

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

.game-card {
    background: var(--dark-card);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--dark-border);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: gameCardFloat 8s ease-in-out infinite;
}

.game-card:nth-child(2) {
    animation-delay: 1.5s;
}

.game-card:nth-child(3) {
    animation-delay: 3s;
}

.game-card:nth-child(4) {
    animation-delay: 4.5s;
}

@keyframes gameCardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.game-card:hover::before {
    transform: translateX(100%);
}

.game-card:hover::after {
    opacity: 0.05;
}

.game-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium), var(--neon-glow), var(--neon-glow-purple);
    background: var(--dark-surface);
}

.game-image {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    animation: gameIconFloat 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gameIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

.game-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(45deg);
}

.social-icon i {
    transform: rotate(-45deg);
}

.social-icon:hover {
    background: #ffffff;
    color: #000000;
}

/* Main Footer Content */
.footer-main-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #cccccc;
}

.footer-column p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Shipping Logo */
.shipping-logo {
    margin-top: 15px;
}

.fedex-logo {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
}

.payment-logo {
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.payment-logo i {
    font-size: 14px;
}

/* PayPal icon - blue color */
.payment-logo .fa-paypal {
    color: #0070ba;
}

/* VISA icon - blue color */
.payment-logo .fa-cc-visa {
    color: #1a1f71;
}

/* Credit card icon - white color */
.payment-logo .fa-credit-card {
    color: #ffffff;
}

/* MasterCard icon - red and orange colors */
.payment-logo .fa-cc-mastercard {
    color: #eb001b;
}

.payment-logo span {
    font-size: 10px;
}

.payment-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.security-icon {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.security-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Newsletter Section */
.footer-newsletter {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter p {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    border-radius: 0;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-btn {
    padding: 12px 20px;
    background: #fa0303;
    color: #000000;
    border: 2px solid #000000;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

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

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

.separator {
    color: #ffffff;
    font-size: 12px;
}

/* Company Logo */
.footer-logo {
    display: flex;
    justify-content: center;
}

.company-logo {
    width: 80px;
    height: 30px;
    
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    overflow: hidden;
    transform: rotate(45deg);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-45deg);
    padding: 5px;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols";
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

.scroll-animate-left {
    opacity: 1;
    transform: translateX(0);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols";
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

.scroll-animate-right {
    opacity: 1;
    transform: translateX(0);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols";
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Ensure icons and emojis are visible in scroll-animate elements */
.scroll-animate i,
.scroll-animate-left i,
.scroll-animate-right i {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: inherit;
}

/* Ensure emojis are visible */
.scroll-animate,
.scroll-animate-left,
.scroll-animate-right {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Segoe UI Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols" !important;
    font-feature-settings: "liga" 1, "kern" 1 !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Force emoji visibility */
.scroll-animate::before,
.scroll-animate-left::before,
.scroll-animate-right::before {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", "EmojiSymbols" !important;
}

/* When animation is triggered, ensure icons are visible */
.scroll-animate.animated,
.scroll-animate-left.animated,
.scroll-animate-right.animated {
    opacity: 1;
}

.scroll-animate.animated i,
.scroll-animate-left.animated i,
.scroll-animate-right.animated i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force icons to be visible even when parent has opacity 0 */
.scroll-animate:not(.animated) i,
.scroll-animate-left:not(.animated) i,
.scroll-animate-right:not(.animated) i {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000;
        background-color: #000000;
        z-index: 9999;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
        max-width: 120px;
        padding: 12px 15px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .about-visual {
        gap: 15px;
    }

    .about-card {
        padding: 15px 20px;
    }

    .about-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .about-card p {
        font-size: 0.85rem;
    }

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

    .how-to-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-to-section h2 {
        font-size: 2.5rem;
    }

    .how-to-steps {
        gap: 20px;
    }

    .step-card {
        padding: 25px;
    }

    .login-register-demo {
        flex-direction: column;
        gap: 15px;
    }
    
    .demo-card {
        min-width: auto;
        max-width: none;
    }
    
    .demo-form {
        align-items: stretch;
    }
    
    .demo-btn {
        width: 100%;
        margin: 20px auto 0 auto;
    }

    .how-to-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 30px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .page-content h2 {
        font-size: 1.6rem;
    }
    
    .page-content p {
        font-size: 0.95rem;
    }

    .nav-menu.active {
        display: flex !important;
        animation: slideInMenu 0.3s ease-out;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 0 !important;
        height: 100vh !important;
        width: 100vw !important;
        min-height: 100vh !important;
        min-width: 100vw !important;
        overflow-y: visible !important;
        background: #000000 !important;
        background-color: #000000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 9999 !important;
        box-sizing: border-box !important;
    }
    

    
    .nav-menu.active::before {
        content: 'TIRANGA GAME LINK';
        position: fixed;
        top: 20px;
        left: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: 1px;
        z-index: 10000;
    }
    
    @keyframes slideInMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 300px;
        margin-top: 120px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 10000;
        overflow-y: visible;
    }

    .nav-menu.active ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active ul li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active ul li:hover {
        background: transparent;
    }
    
    /* Ensure full screen coverage on all mobile devices */
    @media (max-height: 600px) {
        .nav-menu.active {
            padding: 0 !important;
        }
        
        .nav-menu.active::after {
            top: 50px;
            font-size: 1.6rem;
        }
        
        .nav-menu.active ul {
            margin-top: 80px;
        }
        

    }
    
    /* Handle mobile viewport height issues */
    @supports (-webkit-touch-callout: none) {
        .nav-menu.active {
            height: -webkit-fill-available !important;
            min-height: -webkit-fill-available !important;
        }
    }
    
    /* Ensure full screen coverage on all devices */
    @supports (height: 100dvh) {
        .nav-menu.active {
            height: 100dvh !important;
            min-height: 100dvh !important;
        }
    }
    
    /* Ensure proper height on all devices */
    @media screen and (max-height: 500px) {
        .nav-menu.active ul {
            margin-top: 60px;
        }
        

    }

    .nav-menu.active a {
        color: #ffffff !important;
        font-size: 1.2rem !important;
        font-weight: 400 !important;
        padding: 15px 20px !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        transition: all 0.3s ease !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
        transform: none !important;
        z-index: 10000;
        border-radius: 0 !important;
    }
    
    .nav-menu.active a:hover,
    .nav-menu.active a.active {
        color: #ffffff !important;
        background: #ff6b35 !important;
    }
    
    .nav-menu.active a::after {
        display: none !important;
    }
    
    .login-btn {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: 0 !important;
        align-self: center;
        width: 100% !important;
        background: transparent !important;
        color: white !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        font-size: 1.2rem !important;
        font-weight: 400 !important;
        text-align: center !important;
        display: block !important;
    }
    
    .login-btn:hover {
        background: transparent !important;
        transform: none !important;
    }
    


    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 10001;
        cursor: pointer;
        color: white !important;
    }
    
    .nav-menu.active ~ .header-container .mobile-menu-toggle {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 10001 !important;
        background: #ff6b35 !important;
        border-radius: 4px !important;
        padding: 8px !important;
    }
    
    .mobile-menu-toggle i {
        transition: all 0.3s ease;
    }
    
    .nav-menu.active ~ .header-container .mobile-menu-toggle i,
    .nav-menu.active + .header-container .mobile-menu-toggle i {
        transform: rotate(45deg);
    }
    
    .nav-menu.active ~ .header-container .mobile-menu-toggle,
    .nav-menu.active + .header-container .mobile-menu-toggle {
        color: var(--accent-orange);
    }
    
    .slide-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-logo {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .slide-logo img {
        width: 75%;
        height: 75%;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    }
    
    .slide-logo-text {
        font-size: 2rem;
    }
}
    
    .carousel-btn {
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 15px;
    }
    
    .carousel-btn.next {
        right: 15px;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }

    .newsletter-btn {
        width: 100%;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal-links .separator {
        display: none;
    }
    
    .company-logo img {
        width: 40px;
        height: auto;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-logo {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .payment-logo span {
        font-size: 0.7rem;
    }


@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    /* Improve touch targets for mobile */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .login-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve form elements for mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        min-height: 44px;
        font-size: 16px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.2rem;
        padding: 6px;
    }
    
    .nav-menu.active {
        padding: 15px;
    }
    
    .nav-menu.active ul li {
        margin: 8px 0;
    }
    
    .nav-menu.active a {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .login-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* Improve mobile readability */
    .page-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .contact-item-content {
        gap: 12px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    /* Improve mobile spacing */
    .contact-grid {
        gap: 25px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    /* Improve mobile footer */
    .footer-main-content {
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-column p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .footer-newsletter {
        padding: 20px 0;
    }

    .newsletter-form {
        max-width: 250px;
    }
}

/* Page-specific styles for other pages */
.page-header {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content h2 {
    color: var(--text-primary);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.page-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--dark-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--dark-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--dark-surface);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e55a2b, #5a67d8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .floating-header {
        border-bottom-width: 1px;
    }
    
    .header-container {
        height: 65px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .nav-menu.active {
        max-height: 80vh;
        overflow-y: auto;
    }
} 