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

:root {
    --primary: #ff6b35;
    --secondary: #00d4aa;
    --accent: #ffd23f;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-300: #aaa;
    
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    --gradient-accent: linear-gradient(135deg, #ffd23f 0%, #ff6b35 100%);
    --gradient-bg: linear-gradient(135deg, #ff6b35 0%, #8b5cf6 25%, #00d4aa 50%, #3b82f6 75%, #ffd23f 100%);
    
    --font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-4xl: 2.25rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    
    --radius-full: 9999px;
    --radius-2xl: 1.5rem;
    
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgb(255 107 53 / 0.3);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-bg);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    perspective: 1000px;
    transform-style: preserve-3d;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    bottom: 30%;
    left: 60%;
    animation-delay: 4s;
}

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

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

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: var(--font-size-7xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    transform-style: preserve-3d;
    animation: title3D 6s ease-in-out infinite;
}

.title-word {
    display: block;
    background: linear-gradient(45deg, var(--white), var(--accent), var(--secondary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate, gradientMove 4s ease infinite;
    position: relative;
    transform-style: preserve-3d;
}


@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 210, 63, 0.8));
    }
}

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

@keyframes title3D {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: rotateX(1deg) rotateY(1deg) rotateZ(0deg);
    }
}

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

.title-subtitle {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-top: var(--space-2);
    opacity: 1;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(10px);
}

.hero-description {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

.cta-button {
    position: relative;
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transform-style: preserve-3d;
    animation: buttonFloat 4s ease-in-out infinite;
}

.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: var(--transition);
}

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

.cta-button.primary {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-xl);
    transition: all 0.1s ease-out;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05) rotateX(10deg) rotateY(5deg);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.cta-button.primary.escaping {
    position: fixed !important;
    z-index: 1000 !important;
    animation: runningAround 8s linear infinite !important;
    pointer-events: none !important;
}

.cta-button.primary.escaping::after {
    content: '🏃‍♂️';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: legMovement 0.3s ease-in-out infinite alternate;
    z-index: 1001;
    pointer-events: none;
}

.cta-button.primary.escaping::before {
    content: '💨';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 16px;
    animation: windEffect 0.5s ease-in-out infinite alternate;
    z-index: 1001;
    pointer-events: none;
}

@keyframes windEffect {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateX(10px) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes runningAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    12.5% {
        transform: translate(200px, -100px) rotate(45deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(400px, 0px) rotate(90deg) scale(1);
        opacity: 1;
    }
    37.5% {
        transform: translate(300px, 200px) rotate(135deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(0px, 300px) rotate(180deg) scale(1);
        opacity: 1;
    }
    62.5% {
        transform: translate(-200px, 200px) rotate(225deg) scale(1);
        opacity: 1;
    }
    75% {
        transform: translate(-400px, 0px) rotate(270deg) scale(1);
        opacity: 1;
    }
    87.5% {
        transform: translate(-200px, -200px) rotate(315deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes legMovement {
    0% {
        transform: translateX(-50%) rotate(-10deg);
    }
    100% {
        transform: translateX(-50%) rotate(10deg);
    }
}

.notice-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35, #ffd23f, #00d4aa);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    z-index: 1001;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) rotateX(-10deg) rotateY(-5deg);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::selection {
    background: var(--primary);
    color: var(--white);
}