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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #10b981;
    --dark: #1f2937;
    --darker: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1, #ec4899);
    --gradient-light: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.gaming-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.gaming-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    background-size: 600px 600px;
    animation: glassShimmer 20s ease-in-out infinite;
    backdrop-filter: blur(1px);
}

.gaming-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(255, 255, 255, 0.02) 70%, transparent 100%);
    background-size: 400px 400px;
    animation: glassWave 25s linear infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 1px at 25% 15%, rgba(255, 255, 255, 0.15), transparent 2px),
        radial-gradient(circle 1.5px at 75% 25%, rgba(255, 255, 255, 0.1), transparent 3px),
        radial-gradient(circle 0.8px at 45% 65%, rgba(255, 255, 255, 0.12), transparent 1.6px),
        radial-gradient(circle 1.2px at 15% 85%, rgba(255, 255, 255, 0.08), transparent 2.4px);
    background-size: 400px 400px;
    animation: abstractFloat 40s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    pointer-events: none;
    z-index: -5;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 25% 30%, transparent 0deg, rgba(255, 255, 255, 0.02) 90deg, transparent 180deg, rgba(255, 255, 255, 0.015) 270deg, transparent 360deg),
        conic-gradient(from 180deg at 75% 70%, transparent 0deg, rgba(255, 255, 255, 0.01) 120deg, transparent 240deg, rgba(255, 255, 255, 0.018) 300deg, transparent 360deg);
    background-size: 600px 600px, 800px 800px;
    animation: smoothRotate 60s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: -3;
}

@keyframes fluidMove {
    0%, 100% {
        background-position: 30% 40%, 70% 20%, 50% 80%, 10% 70%;
        filter: blur(0px) brightness(1);
    }
    25% {
        background-position: 60% 30%, 40% 60%, 80% 40%, 20% 50%;
        filter: blur(1px) brightness(1.1);
    }
    50% {
        background-position: 80% 70%, 20% 80%, 60% 20%, 40% 30%;
        filter: blur(0.5px) brightness(0.9);
    }
    75% {
        background-position: 40% 80%, 90% 30%, 20% 60%, 70% 80%;
        filter: blur(1.5px) brightness(1.05);
    }
}

@keyframes modernFlow {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-30px, 40px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes abstractFloat {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
        filter: blur(0px);
    }
    20% {
        transform: translate(20px, -15px) scale(1.05);
        filter: blur(0.5px);
    }
    40% {
        transform: translate(-10px, 25px) scale(0.95);
        filter: blur(0px);
    }
    60% {
        transform: translate(15px, -20px) scale(1.02);
        filter: blur(1px);
    }
    80% {
        transform: translate(-25px, 10px) scale(1.08);
        filter: blur(0.3px);
    }
}

@keyframes smoothRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.15;
    }
}

@keyframes waveFlow {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
        background-position: 0% 0%, 50% 50%, 100% 100%;
    }
    33% {
        transform: translate(20px, -10px) rotate(120deg);
        background-position: 30% 20%, 80% 70%, 40% 60%;
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
        background-position: 70% 80%, 20% 30%, 90% 10%;
    }
}

@keyframes glassShimmer {
    0%, 100% {
        background-position: 25% 25%, 75% 75%, 50% 10%;
        filter: brightness(1);
    }
    50% {
        background-position: 75% 50%, 25% 40%, 80% 90%;
        filter: brightness(1.2);
    }
}

@keyframes glassWave {
    0% {
        transform: translateX(0px) translateY(0px);
        background-position: 0% 0%;
    }
    100% {
        transform: translateX(400px) translateY(-200px);
        background-position: 100% 100%;
    }
}

@keyframes particleFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-200px) translateX(100px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 0.2;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(-180px) translateX(-80px) scale(2);
        opacity: 0.6;
    }
    85% {
        opacity: 0.1;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-220px) translateX(60px) scale(1.2);
        opacity: 1;
    }
    80% {
        opacity: 0.3;
    }
}

@keyframes particleFloat4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    50% {
        transform: translateY(-160px) translateX(-120px) scale(1.8);
        opacity: 0.7;
    }
    88% {
        opacity: 0.1;
    }
}

@keyframes particleFloat5 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-240px) translateX(40px) scale(1.3);
        opacity: 0.9;
    }
    75% {
        opacity: 0.2;
    }
}

@keyframes particleFloat6 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    18% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-190px) translateX(-40px) scale(1.6);
        opacity: 0.5;
    }
    82% {
        opacity: 0.1;
    }
}

@keyframes particleFloat7 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    14% {
        opacity: 1;
    }
    50% {
        transform: translateY(-210px) translateX(90px) scale(1.4);
        opacity: 0.7;
    }
    86% {
        opacity: 0.2;
    }
}

@keyframes particleFloat8 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    22% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(-170px) translateX(-60px) scale(1.1);
        opacity: 0.8;
    }
    78% {
        opacity: 0.1;
    }
}

@keyframes trailMove1 {
    0%, 100% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(50px) rotate(180deg);
        opacity: 1;
    }
    90% {
        opacity: 0.2;
    }
}

@keyframes trailMove2 {
    0%, 100% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-80px) translateX(-30px) rotate(270deg);
        opacity: 0.8;
    }
    85% {
        opacity: 0.1;
    }
}

@keyframes trailMove3 {
    0%, 100% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(-100px) translateX(20px) rotate(90deg);
        opacity: 0.7;
    }
    80% {
        opacity: 0.2;
    }
}

/* Particle Animation System */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation: particleFloat1 15s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    animation: particleFloat2 18s ease-in-out infinite;
}

.particle-3 {
    width: 3px;
    height: 3px;
    bottom: 30%;
    left: 20%;
    animation: particleFloat3 22s ease-in-out infinite;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 40%;
    right: 30%;
    animation: particleFloat4 12s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    bottom: 20%;
    right: 25%;
    animation: particleFloat5 20s ease-in-out infinite;
}

.particle-6 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 40%;
    animation: particleFloat6 16s ease-in-out infinite;
}

.particle-7 {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 60%;
    animation: particleFloat7 14s ease-in-out infinite;
}

.particle-8 {
    width: 5px;
    height: 5px;
    bottom: 40%;
    right: 10%;
    animation: particleFloat8 19s ease-in-out infinite;
}

.particle-trail {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    border-radius: 50px;
}

.trail-1 {
    top: 15%;
    left: 80%;
    animation: trailMove1 25s linear infinite;
}

.trail-2 {
    top: 70%;
    left: 20%;
    animation: trailMove2 30s linear infinite;
}

.trail-3 {
    top: 40%;
    left: 50%;
    animation: trailMove3 20s linear infinite;
}

/* Abstract Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -2;
}

.float-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    filter: blur(0.5px);
    animation: abstractDrift 35s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.element-1 {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 40s;
}

.element-2 {
    top: 25%;
    right: 18%;
    animation-delay: 8s;
    animation-duration: 45s;
}

.element-3 {
    top: 55%;
    left: 8%;
    animation-delay: 16s;
    animation-duration: 38s;
}

.element-4 {
    bottom: 35%;
    right: 15%;
    animation-delay: 24s;
    animation-duration: 42s;
}

.element-5 {
    bottom: 25%;
    left: 25%;
    animation-delay: 12s;
    animation-duration: 44s;
}

.element-6 {
    top: 75%;
    right: 35%;
    animation-delay: 20s;
    animation-duration: 36s;
}

@keyframes abstractDrift {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0;
        filter: blur(0px);
    }
    15% {
        opacity: 0.2;
        filter: blur(0.5px);
    }
    30% {
        transform: translateY(-30px) translateX(20px) rotate(45deg) scale(1.1);
        opacity: 0.15;
        filter: blur(1px);
    }
    50% {
        transform: translateY(-60px) translateX(40px) rotate(90deg) scale(0.9);
        opacity: 0.25;
        filter: blur(0.3px);
    }
    70% {
        transform: translateY(-40px) translateX(-15px) rotate(180deg) scale(1.05);
        opacity: 0.1;
        filter: blur(0.8px);
    }
    85% {
        opacity: 0.2;
        filter: blur(0.2px);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: logoSpin 10s linear infinite;
}

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

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

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

@keyframes countGlow {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    animation: buttonPulse 0.6s ease;
}

@keyframes buttonPulse {
    0% { transform: translateY(-3px) scale(1.02); }
    50% { transform: translateY(-3px) scale(1.05); }
    100% { transform: translateY(-3px) scale(1.02); }
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Hero Visual */
.floating-phone {
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3748, #4a5568);
    border-radius: 25px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--darker);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-ui {
    text-align: center;
    color: var(--white);
}

.game-element i {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: rgba(17, 24, 39, 0.8);
    position: relative;
    z-index: 1;
}

.download-content {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.download-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.download-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-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.5s ease;
}

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

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    animation: downloadPulse 0.6s ease;
}

@keyframes downloadPulse {
    0% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-3px) scale(1.08); }
    100% { transform: translateY(-3px) scale(1.05); }
}

.features-highlight {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
}

.feature-point i {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(31, 41, 55, 0.8);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    animation: buttonPulse 0.6s ease;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: rgba(17, 24, 39, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    color: var(--primary);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(31, 41, 55, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 20px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stats-row {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }

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

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-highlight {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
        min-height: calc(100vh + 40px);
    }

    .hero-container {
        padding: 1.5rem 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .stats-row {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
        min-width: 90px;
    }

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

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

    .nav-container {
        padding: 1rem;
    }

    .floating-phone {
        margin-top: 1rem;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }
}

/* Smooth 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);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Mobile Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}