:root {
    --white: #ffffff;
    --purple: #7c4dff;
    --red: #ff3d00;
    --orange: #ff9100;
    --blue-light: #00e5ff;
    --dark: #0a0a0b;
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

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

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

/* --- Innovative Layout Effects --- */

/* Pulping Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Swimming/Floating Animation */
@keyframes swim {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(2deg);
    }

    66% {
        transform: translateY(10px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Flickering/Glowing Text */
@keyframes flicker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

/* Exploding Text Particles */
@keyframes explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0) translate(var(--x), var(--y));
        opacity: 0;
    }
}

.pulsing {
    animation: pulse 4s infinite ease-in-out;
}

.swimming {
    animation: swim 10s infinite ease-in-out;
}

.flickering {
    animation: flicker 3s infinite alternate;
}

/* --- Bubble Navigation --- */
.bubble-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-bubble {
    width: 60px;
    height: 60px;
    background: var(--purple);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--red);
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.4);
}

.nav-bubble i {
    width: 28px;
    height: 28px;
}

.nav-bubble::after {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.nav-bubble:hover::after {
    opacity: 1;
    visibility: visible;
    right: 30px;
}

/* --- Sections --- */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

/* Hero Section - Shocking Design */
.hero {
    background: var(--white);
    color: var(--dark);
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.hero-bg-video-mock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(0, 229, 255, 0.1));
    z-index: -1;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--purple);
    /* Fallback for browsers that don't support text-clip */
    background: linear-gradient(90deg, var(--purple), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    min-height: 1.2em;
    /* Ensure height even when empty */
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--purple), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    animation: swim 10s infinite ease-in-out;
}

/* Legacy span styles removed */

.hero-description {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Layout for other sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--purple), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Forms & Contact elements */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: var(--red);
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.4);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 145, 0, 0.3);
}

.btn-orange:hover {
    transform: translateY(-5px);
    background: var(--red);
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bubble-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        height: auto;
        z-index: 2000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-bubble {
        width: 50px;
        height: 50px;
        margin: 0 5px;
    }

    .nav-bubble i {
        width: 22px;
        height: 22px;
    }

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