/* ============================================
   AI AVATAR LANDING - CYBERPUNK STYLE
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors from Reference */
    --black: #000000;
    --white: #FFFFFF;
    
    /* Neon Accent Colors */
    --neon-orange: #FF9500;
    --neon-dark-orange: #FF6B00;
    --neon-magenta: #FF00FF;
    --neon-purple: #9D00FF;
    --neon-cyan: #00FFFF;
    --neon-blue: #00BFFF;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--neon-orange), var(--neon-magenta), var(--neon-cyan));
    --gradient-text: linear-gradient(90deg, var(--neon-orange), var(--neon-magenta), var(--neon-purple), var(--neon-cyan));
    --gradient-card: linear-gradient(145deg, rgba(255,149,0,0.1), rgba(255,0,255,0.1));
    
    /* Glow Effects */
    --glow-orange: 0 0 20px rgba(255, 149, 0, 0.5), 0 0 40px rgba(255, 149, 0, 0.3);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Selection */
::selection {
    background: var(--neon-magenta);
    color: var(--white);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-dot {
    width: 20px;
    height: 20px;
    background: var(--neon-cyan);
    border-radius: 50%;
    margin-left: 10px;
    animation: dotPulse 1s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
    }
}

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

.preloader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
    box-shadow: var(--glow-magenta);
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

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

.preloader-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 3s ease-in-out infinite;
}

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

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: var(--glow-cyan);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--neon-magenta);
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 60%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-5%, 5%) scale(1.1);
    }
    50% {
        transform: translate(5%, -5%) scale(0.95);
    }
    75% {
        transform: translate(-3%, -3%) scale(1.05);
    }
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
}

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

.bg-noise {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--neon-cyan);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s ease;
}

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

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

.nav-link:hover::before {
    clip-path: inset(0 0 0 0);
}

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

.nav-cta {
    position: relative;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    border-radius: 30px;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nav-cta span {
    position: relative;
    z-index: 2;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--neon-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
}

.nav-cta:hover {
    color: var(--black);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.nav-cta:hover .cta-glow {
    width: 300px;
    height: 300px;
}

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

.nav-burger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.hero-video-layer,
.hero-video-overlay {
    position: absolute;
    inset: 0;
}

.hero-video-layer {
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-video-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at top left, rgba(255, 149, 0, 0.18) 0%, transparent 38%),
        radial-gradient(circle at top right, rgba(0, 255, 255, 0.16) 0%, transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.72));
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.badge-icon {
    color: var(--neon-orange);
    animation: iconSpin 3s linear infinite;
}

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

.hero-badge span:last-child {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    --word-delay: 0s;
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--word-delay);
}

.word[data-delay="0"] { --word-delay: 0.2s; }
.word[data-delay="1"] { --word-delay: 0.4s; }
.word[data-delay="2"] { --word-delay: 0.6s; }

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

.word.gradient-text {
    animation:
        slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        gradientShift 3s linear infinite;
    animation-delay: var(--word-delay), 0s;
}

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

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.btn {
    position: relative;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--gradient-main);
    border: none;
    color: var(--white);
    box-shadow: var(--glow-magenta);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
}

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

.hero-stats {
    display: flex;
    gap: 60px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    z-index: 2;
}

.hero-avatar-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-frame {
    width: 350px;
    height: 350px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.avatar-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    border: 2px solid transparent;
    border-image: var(--gradient-main) 1;
    animation: glitchBorder 4s linear infinite;
}

@keyframes glitchBorder {
    0%, 100% {
        clip-path: inset(0 0 0 0);
    }
    5% {
        clip-path: inset(10% 0 85% 0);
    }
    10% {
        clip-path: inset(80% 0 5% 0);
    }
    15% {
        clip-path: inset(0 0 0 0);
    }
}

.avatar-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0,0,0,0.8), rgba(20,20,20,0.9));
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.face-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.face-circle {
    width: 100%;
    height: 100%;
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 255, 255, 0);
    }
}

.face-eyes::before,
.face-eyes::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--neon-magenta);
    border-radius: 50%;
    top: 35%;
    animation: blink 4s infinite;
}

.face-eyes::before {
    left: 25%;
}

.face-eyes::after {
    right: 25%;
}

@keyframes blink {
    0%, 96%, 100% {
        transform: scaleY(1);
    }
    98% {
        transform: scaleY(0.1);
    }
}

.face-smile {
    position: absolute;
    width: 40px;
    height: 20px;
    border: 3px solid var(--neon-orange);
    border-top: none;
    border-radius: 0 0 50px 50px;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.avatar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: scan 2s linear infinite;
}

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

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

.effect-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 0, 255, 0.3);
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    width: 450px;
    height: 450px;
    border-color: rgba(0, 255, 255, 0.2);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 149, 0, 0.1);
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

.float-element {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    animation: floatElement 4s ease-in-out infinite;
    animation-delay: var(--delay);
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 20px)) scale(1.2);
        opacity: 1;
    }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
    z-index: 2;
}

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

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

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

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--section-padding) 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.section-tag::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.section-tag::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: revealUp 0.8s ease forwards;
}

.title-reveal:nth-child(1) { animation-delay: 0.1s; }
.title-reveal:nth-child(2) { animation-delay: 0.2s; }
.title-reveal:nth-child(3) { animation-delay: 0.3s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   STYLES SECTION
   ============================================ */
.styles-section {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5), transparent);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.style-card {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0.03;
    transition: opacity 0.5s ease;
}

.style-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--neon-magenta);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2);
}

.style-card:hover::before {
    opacity: 0.08;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.78;
    filter: brightness(1.14) saturate(1.08);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.style-card[data-style="cyberpunk"] .card-bg {
    background-image: url("../images/landing/style-preview-cyberpunk.f152f5ff9745.png");
}

.style-card[data-style="street"] .card-bg {
    background-image: url("../images/landing/style-preview-street.10081cede5f8.png");
}

.style-card[data-style="fantasy"] .card-bg {
    background-image: url("../images/landing/style-preview-fantasy.14ec6ae18db0.png");
}

.style-card[data-style="anime"] .card-bg {
    background-image: url("../images/landing/style-preview-anime.bc216470bc81.png");
}

.style-card[data-style="retro"] .card-bg {
    background-image: url("../images/landing/style-preview-retro.81e97e6ed1a4.png");
}

.style-card[data-style="custom"] .card-bg {
    background-image: url("../images/landing/style-preview-custom.1f521ad97bb0.png");
}

.style-card:hover .card-bg {
    opacity: 0.9;
    transform: scale(1.04);
    filter: brightness(1.18) saturate(1.12);
}

.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 22px 22px 20px;
    margin: -22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.64) 100%);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--neon-cyan);
    transition: stroke 0.4s ease;
}

.style-card:hover .card-icon {
    background: var(--neon-magenta);
    transform: scale(1.1);
}

.style-card:hover .card-icon svg {
    stroke: var(--white);
}

.card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card-tags span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
    transition: all 0.3s ease;
}

.style-card:hover .card-tags span {
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-cyan);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.style-card:hover .card-glow {
    opacity: 1;
}

.styles-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.styles-nav.is-hidden {
    display: none;
}

.style-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.style-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.style-nav-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.style-nav-btn:hover svg {
    stroke: var(--neon-cyan);
}

.styles-counter {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
}

.styles-counter .current {
    color: var(--neon-cyan);
}

.styles-counter .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   GENERATOR SECTION
   ============================================ */
.generator-section {
    background: linear-gradient(180deg, transparent, rgba(255, 0, 255, 0.03), transparent);
    position: relative;
    overflow: hidden;
}

.generator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.generator-info {
    position: relative;
    z-index: 2;
}

.generator-info .section-tag,
.generator-info .section-title,
.generator-info .section-description {
    text-align: left;
}

.generator-info .section-tag::before {
    display: none;
}

.generator-info .section-title {
    font-size: 48px;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 149, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Upload Zone */
.generator-main {
    position: relative;
    z-index: 2;
}

.upload-zone {
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.upload-zone.drag-over {
    transform: scale(1.02);
}

.upload-inner {
    position: relative;
    z-index: 2;
}

.upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.upload-zone:hover .upload-icon {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.1);
}

.upload-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--neon-cyan);
}

.upload-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.upload-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.upload-formats {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.upload-formats span {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.upload-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
}

.upload-zone:hover .upload-glow {
    width: 400px;
    height: 400px;
}

/* Style Selector */
.style-selector {
    margin-bottom: 30px;
}

.selector-title,
.prompt-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.style-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.style-option {
    cursor: pointer;
}

.style-option input {
    display: none;
}

.option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.option-icon {
    font-size: 28px;
}

.option-text {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.style-option input:checked + .option-box {
    border-color: var(--neon-magenta);
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.style-option:hover .option-box {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
}

/* Prompt Input */
.prompt-input {
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper textarea {
    width: 100%;
    min-height: 100px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    resize: vertical;
    transition: all 0.3s ease;
}

.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.decoration-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.input-wrapper textarea:focus ~ .input-decoration .decoration-line {
    transform: scaleX(1);
}

/* Generate Button */
.generate-btn {
    width: 100%;
    padding: 22px 40px;
    background: var(--gradient-main);
    border: none;
    border-radius: 15px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: none;
}

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

.btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    transition: transform 0.3s ease;
}

.generate-btn:hover .btn-icon svg {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Generator Decoration */
.generator-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
}

.deco-line.line-1 {
    left: 10%;
    top: 0;
    height: 100%;
    opacity: 0.1;
}

.deco-line.line-2 {
    right: 10%;
    top: 0;
    height: 100%;
    opacity: 0.1;
}

.deco-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 0, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.02), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.large {
    grid-column: span 2;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.image-placeholder.cyberpunk {
    background: linear-gradient(135deg, #1a0033, #003366, #ff00ff);
}

.image-placeholder.fantasy {
    background: linear-gradient(135deg, #2d1b4e, #4a2c6a, #ffd700);
}

.image-placeholder.street {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #e94560);
}

.image-placeholder.anime {
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #fecfef);
}

.image-placeholder.retro {
    background: linear-gradient(135deg, #2d1b4e, #ff6b6b, #feca57);
}

.image-placeholder.custom {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-style {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-cyan);
}

.gallery-likes {
    font-size: 14px;
}

.gallery-cta {
    text-align: center;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.03), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.05));
    border-color: var(--neon-magenta);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    background: var(--gradient-main);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-subprice {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--neon-cyan);
}

.pricing-features .cross {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card .btn {
    width: 100%;
    padding: 16px 30px;
}

.pricing-card-empty {
    max-width: 420px;
    margin: 0 auto;
    grid-column: 1 / -1;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 60px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

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

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.social-link:hover svg {
    fill: var(--neon-cyan);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero {
        padding: 100px 40px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-visual {
        width: 400px;
        height: 400px;
    }
    
    .avatar-frame {
        width: 280px;
        height: 280px;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .generator-container {
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        width: 350px;
        height: 350px;
        margin-top: 60px;
    }
    
    .generator-container {
        grid-template-columns: 1fr;
    }
    
    .generator-info .section-tag,
    .generator-info .section-title,
    .generator-info .section-description {
        text-align: center;
    }
    
    .features-list {
        align-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }

    .style-card {
        padding: 24px;
    }

    .card-content {
        padding: 16px 16px 14px;
        margin: -16px;
        border-radius: 16px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-desc {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .card-tags {
        gap: 8px;
    }

    .card-tags span {
        padding: 4px 10px;
        font-size: 11px;
    }

    .hero-video {
        opacity: 0.28;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
    }
    
    .style-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-layer {
        display: none;
    }

    .hero-video-overlay {
        background:
            radial-gradient(circle at top left, rgba(255, 149, 0, 0.14) 0%, transparent 38%),
            radial-gradient(circle at top right, rgba(0, 255, 255, 0.12) 0%, transparent 34%),
            linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.62));
    }
}

@media (max-width: 480px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    button {
        cursor: pointer;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .avatar-frame {
        width: 220px;
        height: 220px;
    }
    
    .effect-ring.ring-1 { width: 280px; height: 280px; }
    .effect-ring.ring-2 { width: 320px; height: 320px; }
    .effect-ring.ring-3 { width: 360px; height: 360px; }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
