/* CSS Variables */
:root {
    --bg-darker: #0a0a0a;
    --bg-dark: #1a1a2e;
    --bg-medium: #16213e;
    --bg-light: #0f3460;
    --text-light: #ffffff;
    --text-muted: #e0e0e0;
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    --accent-gold: #ffd700;
    --accent-rose: #fbbf24;
    --gradient-primary: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    --navbar-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

/* Creative Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Glitch Effect */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Morphing Shapes */
@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-2deg); }
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }
    50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.6); }
}

/* Text Reveal */
@keyframes text-reveal {
    0% { 
        clip-path: inset(0 100% 0 0);
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Shift */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
    min-height: var(--navbar-height);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    filter: drop-shadow(0 2px 8px var(--accent-gold)66);
    transition: filter 0.3s ease;
}

.nav-logo:hover {
    filter: drop-shadow(0 4px 16px var(--accent-pink)99);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite, glitch 0.3s ease infinite;
    opacity: 0.3;
    z-index: -1;
}

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

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

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-pink);
    transform: translateY(-2px);
}

.nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.nav-social-icon:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    position: relative;
}

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

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

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

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

.mobile-menu-toggle:hover span {
    background: var(--accent-pink);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    position: relative;
    padding-top: var(--navbar-height);
    scroll-margin-top: 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    height: calc(100vh - var(--navbar-height));
    overflow: hidden;
}

.hero-text-block {
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-image-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 70%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 70%, transparent 85%);
    filter: blur(0px);
    transition: filter 0.3s ease;
}

/* Mobile Phone Animation Styles */
.mobile-phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}



/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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


/* Download App Section Styles */
.download-app-section {
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.download-app-section::before,
.download-app-section::after {
    pointer-events: none;
}

.download-app-visual {
    overflow: visible;
    position: relative;
    z-index: 2;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: gradient-shift 8s ease infinite;
}

.download-app-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

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

.download-app-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.download-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-title-main {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.download-title-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.download-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

.app-download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.app-store-button {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.app-store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.app-store-button:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(236, 72, 153, 0.4));
}

.app-store-button:active {
    transform: translateY(-2px) scale(1.02);
}

.store-icon {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.download-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.phone-container-wrapper .mobile-phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    overflow: visible;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(139, 92, 246, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
    filter: blur(40px);
    pointer-events: none;
}

.mobile-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Phone Carousel Styles */
.phone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 30px;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
    padding: 1rem 0;
    pointer-events: auto;
    isolation: isolate;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.carousel-dot:hover {
    background: rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
    transform: scale(1.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    width: 100%;
}

.glitzbee-text {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    display: block;
    position: relative;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
    position: relative;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtitle-scale-fade-in 1.2s cubic-bezier(0.4,0,0.2,1) 0.2s both, subtitle-gradient-move 3s linear 1.2s 1 forwards;
    overflow: visible;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

@keyframes subtitle-scale-fade-in {
    0% { opacity: 0; transform: scale(0.85) translateY(30px); }
    60% { opacity: 1; transform: scale(1.05) translateY(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes subtitle-gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.6);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.hero-logo-corner {
    position: absolute;
    top: calc(var(--navbar-height) + 20px);
    left: 32px;
    z-index: 10;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.custom-animation-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: container-glow 4s ease-in-out infinite;
    border: 2px solid rgba(236, 72, 153, 0.2);
}

@keyframes container-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(236, 72, 153, 0.4);
        transform: scale(1.05);
    }
}

.logo-morph-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morph-container-appear 2s ease-out;
}

@keyframes morph-container-appear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.final-logo {
    position: relative;
    width: 160px;
    height: 160px;
    animation: logo-solidify-fluid 3s ease-out 1s both;
}

@keyframes logo-solidify-fluid {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(360deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.8) rotate(180deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
        filter: blur(0px);
    }
}

.morphed-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logo-glow-fluid 4s ease-in-out infinite;
}

@keyframes logo-glow-fluid {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.6));
    }
}

.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    animation: aura-appear-fluid 2s ease-out 2s both;
}

@keyframes aura-appear-fluid {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.aura-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-pink);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aura-float-fluid 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes aura-float-fluid {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle)));
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle)));
        opacity: 1;
    }
}

.lingering-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: lingering-appear 3s ease-out 3s both;
}

@keyframes lingering-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.continuous-glitter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.glitter-stream {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream-1 {
    animation: stream-1-fall 4s linear infinite;
}

.stream-2 {
    animation: stream-2-fall 4s linear infinite;
    animation-delay: 2s;
}

@keyframes stream-1-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes stream-2-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.glitter-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    left: var(--x);
    animation: glitter-fall-3d 4s linear infinite;
    animation-delay: calc(var(--delay, 0s) - 2s);
}

.glitter-particle:nth-child(even) {
    background: var(--accent-pink);
    width: 4px;
    height: 4px;
}

.glitter-particle:nth-child(3n) {
    background: var(--accent-purple);
    width: 8px;
    height: 8px;
}

@keyframes glitter-fall-3d {
    0% {
        transform: translateY(-100px) rotateX(0deg) rotateY(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(400px) rotateX(360deg) rotateY(360deg);
        opacity: 0;
    }
}

.persistent-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes ring-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Scroll Animations */
@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slide-in-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-down {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-scale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-rotate {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes glow-appear {
    0% {
        opacity: 0;
        box-shadow: 0 0 0px rgba(236, 72, 153, 0);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    }
}

.scroll-animate {
    opacity: 0;
    transition: all 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
}

.slide-left {
    transform: translateX(-50px);
}

.slide-left.animate-in {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(50px);
}

.slide-right.animate-in {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(50px);
}

.slide-up.animate-in {
    transform: translateY(0);
}

.slide-down {
    transform: translateY(-50px);
}

.slide-down.animate-in {
    transform: translateY(0);
}

.fade-scale {
    transform: scale(0.8);
}

.fade-scale.animate-in {
    transform: scale(1);
}

.fade-rotate {
    transform: rotate(-10deg) scale(0.8);
}

.fade-rotate.animate-in {
    transform: rotate(0deg) scale(1);
}

.glow-in {
    box-shadow: 0 0 0px rgba(236, 72, 153, 0);
}

.glow-in.animate-in {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Split Section */
.split-section {
    padding: 3rem 0;
    position: relative;
    scroll-margin-top: 100px;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.split-block {
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.split-block:hover {
    transform: scale(1.02);
}

.creators-block {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.users-block {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
}

    .spotlight-visual, .mirror-visual {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        animation: float 3s ease-in-out infinite;
    }
    
    /* Mobile visual enhancements */
    @media (max-width: 768px) {
        .spotlight-visual, .mirror-visual {
            width: 40px;
            height: 40px;
            top: 15px;
            right: 15px;
        }
        
        .split-block::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple), var(--accent-gold));
            opacity: 0.7;
        }
    }

.spotlight-visual {
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
}

.mirror-visual {
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.split-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.subtitle-line {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

.highlight-line {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.spotlight {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 6rem 0;
    position: relative;
    background: url('images/makeup-colors.jpeg') center/cover no-repeat, linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    scroll-margin-top: 100px;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(26, 26, 46, 0.6) 25%, 
        rgba(15, 52, 96, 0.5) 50%, 
        rgba(236, 72, 153, 0.3) 75%, 
        rgba(139, 92, 246, 0.4) 100%);
    z-index: 1;
    animation: gradient-shift 8s ease-in-out infinite;
}

/* .problem-solution::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(251, 191, 36, 0.2) 0%, transparent 40%);
    z-index: 2;
    animation: floating-lights 12s ease-in-out infinite;
} */

/* Shimmer Effect */
.problem-solution .shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 20%, 
            rgba(255, 255, 255, 0.15) 30%, 
            rgba(255, 255, 255, 0.25) 40%, 
            rgba(255, 255, 255, 0.15) 50%, 
            rgba(255, 255, 255, 0.05) 60%, 
            transparent 100%);
    z-index: 3;
    animation: shimmer-ripple 8s ease-in-out infinite;
    pointer-events: none;
    transform: translateX(-100%);
}

/* Glitter Particles */
.problem-solution .glitter-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.problem-solution .glitter-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-rose));
    border-radius: 50%;
    animation: glitter-fall 6s linear infinite;
    box-shadow: 0 0 8px var(--accent-gold);
}

.problem-solution .glitter-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.problem-solution .glitter-particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.problem-solution .glitter-particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.problem-solution .glitter-particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.problem-solution .glitter-particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.problem-solution .glitter-particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.problem-solution .glitter-particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.problem-solution .glitter-particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.problem-solution .glitter-particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }
.problem-solution .glitter-particle:nth-child(10) { left: 15%; animation-delay: 3.5s; }
.problem-solution .glitter-particle:nth-child(11) { left: 25%; animation-delay: 4.5s; }
.problem-solution .glitter-particle:nth-child(12) { left: 35%; animation-delay: 5.5s; }

/* Sparkle Effects */
.problem-solution .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle-twinkle 3s ease-in-out infinite;
    z-index: 4;
}

.problem-solution .sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.problem-solution .sparkle:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.problem-solution .sparkle:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 2s; }
.problem-solution .sparkle:nth-child(4) { bottom: 35%; right: 15%; animation-delay: 0.5s; }
.problem-solution .sparkle:nth-child(5) { top: 50%; left: 10%; animation-delay: 1.5s; }

.problem-solution .container {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* Enhanced Animations */
@keyframes shimmer-ripple {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes glitter-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
        box-shadow: 0 0 15px var(--accent-gold);
    }
}

@keyframes floating-lights {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1.2) rotate(90deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        opacity: 1;
        transform: scale(1.1) rotate(270deg);
    }
}

/* Why GlitzBee? Feature Grid */
.why-glitzbee {
    padding: 6rem 0;
    scroll-margin-top: 100px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Waitlist Section */
.waitlist {
    padding: 6rem 0;
    position: relative;
    scroll-margin-top: 100px;
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.waitlist-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-phone {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: phone-float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: float-around 8s ease-in-out infinite;
    opacity: 0.8;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon-4 {
    bottom: 35%;
    right: 10%;
    animation-delay: 6s;
}

.waitlist-form-container {
    text-align: left;
}

@keyframes phone-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(-10px, -30px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(-20px, -10px) scale(1.05);
        opacity: 0.9;
    }
}

.animated-form {
    max-width: 400px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: form-float 6s ease-in-out infinite;
}

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

.form-group {
    position: relative;
    animation: form-group-appear 0.6s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.6s; }

@keyframes form-group-appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.form-group input::placeholder {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0.5;
}

.animated-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: button-bounce 2s ease-in-out infinite;
    box-shadow: none;
}

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

.button-text {
    position: relative;
    z-index: 2;
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.button-particles::before,
.button-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: particle-float 2s ease-in-out infinite;
}

.button-particles::before {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.button-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.animated-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.animated-button:hover .button-particles::before,
.animated-button:hover .button-particles::after {
    animation-duration: 1s;
}

.animated-form.submitting .form-group {
    transform: scale(0.95);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

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

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.footer-social-icon:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.bee-icon {
    animation: float 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
        font-size: 18px;
    }
    
    .navbar {
        min-height: var(--navbar-height);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1001;
    }
    
    .nav-content {
        padding: 0.8rem 0;
        position: relative;
    }
    
    .nav-left {
        gap: 0.5rem;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 1.5rem;
        transform: translateY(-50%);
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(236, 72, 153, 0.2);
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        padding: 1rem 0;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a:hover {
        transform: none;
    }
    
    .nav-socials {
        display: none;
    }
    
    /* Hero Section Mobile Fixes */
    .hero {
        padding-top: var(--navbar-height);
        min-height: calc(100vh - var(--navbar-height));
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto;
        min-height: calc(100vh - var(--navbar-height));
    }
    
    .hero-text-block {
        order: 1;
        padding: 2.5rem 1.5rem;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-image-block {
        order: 2;
        height: 500px;
        min-height: 500px;
        overflow: visible;
    }
    
    .hero-image-container {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-image {
        object-fit: contain;
        object-position: center;
    }
    
    /* Mobile Phone Responsive Styles */
    .mobile-phone-container {
        width: 250px;
        height: 500px;
    }
    
    /* Download App Section Mobile Styles */
    .download-app-section {
        padding: 4rem 0;
    }
    
    .download-app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .download-app-text {
        align-items: center;
    }
    
    .download-title-main {
        font-size: 2.5rem;
    }
    
    .download-title-subtitle {
        font-size: 1.2rem;
    }
    
    .download-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .app-download-buttons {
        justify-content: center;
    }
    
    .store-icon {
        height: 50px;
    }
    
    .phone-container-wrapper .mobile-phone-container {
        width: 250px;
        height: 500px;
    }
    
    .phone-glow {
        width: 300px;
        height: 300px;
    }
    
    .carousel-dots {
        bottom: -40px;
        gap: 0.4rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Logo Corner Mobile Optimization */
    .hero-logo-corner {
        position: absolute;
        top: calc(var(--navbar-height) + 20px);
        left: 20px;
        z-index: 1;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .logo-container {
        width: 100%;
        height: 100%;
    }
    
    .logo-animation {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .final-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Split Section Mobile */
    .split-section {
        padding: 4rem 0;
    }
    
    .split-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .split-block {
        padding: 3rem 2rem;
        text-align: center;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
        border: 1px solid rgba(236, 72, 153, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .split-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .split-block:hover::before {
        opacity: 1;
    }
    
    .split-block h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        gap: 0.3rem;
    }
    
    .title-line {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.1;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    
    .subtitle-line {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--text-muted);
        line-height: 1.2;
    }
    
    .highlight-line {
        font-size: 1.9rem;
        font-weight: 700;
        line-height: 1.2;
        margin-top: 0.3rem;
    }
    
    .split-block p {
        font-size: 1.1rem;
        line-height: 1.7;
        position: relative;
        z-index: 2;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Problem Solution Mobile */
    .problem-solution {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    /* Feature Grid Mobile */
    .why-glitzbee {
        padding: 4rem 0;
    }
    
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .feature-icon {
        font-size: 2.7rem;
        margin-bottom: 1rem;
    }
    
    /* Waitlist Section Mobile */
    .waitlist {
        padding: 4rem 0;
    }
    
    .waitlist-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .waitlist-visual {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .waitlist-form-container {
        order: 2;
        text-align: center;
        padding: 0 1rem;
    }
    
    .mobile-phone-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .mobile-phone {
        width: 280px;
        height: auto;
        max-width: 100%;
        z-index: 2;
        position: relative;
    }
    
    .phone-glow {
        position: absolute;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
        animation: phone-float 3s ease-in-out infinite;
    }
    
    /* Google Sign-In Mobile */
    .google-signin-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .google-signin-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .google-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* Scroll Margins */
    #hero, #creators, #users, #waitlist {
        scroll-margin-top: 70px;
    }
    
    /* Container Padding */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Improve text readability */
    .hero-description br {
        display: none;
    }
    
    .section-description br {
        display: none;
    }
    
    /* Better spacing for mobile */
    .hero {
        padding: calc(var(--navbar-height) + 1rem) 0 2rem;
    }
    
    .split-section {
        padding: 3rem 0;
    }
    
    .problem-solution {
        padding: 3rem 0;
    }
    
    .why-glitzbee {
        padding: 3rem 0;
    }
    
    .waitlist {
        padding: 3rem 0;
    }
    
    /* Optimize logo corner for mobile */
    .hero-logo-corner {
        opacity: 0.8;
        left: 16px;
        width: 80px;
        height: 80px;
    }
    
    /* Better form container */
    .waitlist-form-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Improve button spacing */
    .google-signin-container {
        margin-top: 1.5rem;
    }
    
    /* CTA Button Mobile */
    .cta-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 16px;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Download App Section - Small Mobile */
    .download-app-section {
        padding: 3rem 0;
    }
    
    .download-app-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .download-title-main {
        font-size: 2rem;
    }
    
    .download-title-subtitle {
        font-size: 1rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .store-icon {
        height: 45px;
    }
    
    .phone-container-wrapper .mobile-phone-container {
        width: 200px;
        height: 400px;
    }
    
    .phone-glow {
        width: 250px;
        height: 250px;
    }
    
    .carousel-dots {
        bottom: -35px;
        gap: 0.35rem;
        padding: 0.75rem 0;
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .carousel-dot.active {
        transform: scale(1.2);
    }
    
    .navbar {
        min-height: 60px;
    }
    
    .nav-content {
        padding: 0.6rem 0;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        top: 60px;
        padding: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.3rem;
        right: 1rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Hero Section Small Mobile */
    .hero {
        padding-top: calc(60px + 1.5rem);
    }
    
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Logo Corner Small Mobile */
    .hero-logo-corner {
        top: calc(60px + 15px);
        left: 15px;
        width: 40px;
        height: 40px;
    }
    
    /* Split Section Small Mobile */
    .split-block {
        padding: 2.5rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .split-block h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        gap: 0.2rem;
    }
    
    .title-line {
        font-size: 1.9rem;
        font-weight: 800;
        line-height: 1.1;
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
    }
    
    .subtitle-line {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-muted);
        line-height: 1.2;
    }
    
    .highlight-line {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.2;
        margin-top: 0.2rem;
    }
    
    .split-block p {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Feature Cards Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    /* Waitlist Small Mobile */
    .mobile-phone {
        width: 240px;
    }
    
    .phone-glow {
        width: 280px;
        height: 280px;
    }
    
    /* Google Sign-In Small Mobile */
    .google-signin-btn {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    .google-icon {
        width: 20px;
        height: 20px;
    }
    
    /* CTA Button Small Mobile */
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    /* Scroll Margins Small Mobile */
    #hero, #creators, #users, #waitlist {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .split-block h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 1.2rem 0.8rem;
    }
    
    .mobile-phone {
        width: 200px;
    }
    
    .phone-glow {
        width: 240px;
        height: 240px;
    }
    
    .google-signin-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Smaller logo corner */
    .hero-logo-corner {
        width: 30px;
        height: 30px;
        top: calc(60px + 8px);
        left: 8px;
    }
}

.liquid-blob {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(1px) brightness(1.1);
    opacity: 0.85;
    animation: blob-bounce 5s cubic-bezier(0.4,0,0.2,1) infinite alternate, blob-morph 8s ease-in-out infinite alternate;
}

.blob-creators {
    background: radial-gradient(circle at 60% 40%, var(--accent-pink) 0%, var(--accent-purple) 100%);
}

.blob-users {
    background: radial-gradient(circle at 40% 60%, var(--accent-gold) 0%, var(--accent-rose) 100%);
}

@keyframes blob-bounce {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(30px, 10px); }
    40%  { transform: translate(-10px, 40px); }
    60%  { transform: translate(20px, 60px); }
    80%  { transform: translate(-20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    25% {
        border-radius: 60% 40% 50% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 40% 60% 70% 30% / 50% 70% 30% 60%;
    }
    75% {
        border-radius: 70% 30% 60% 40% / 40% 60% 70% 50%;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 40%, var(--accent-gold) 60%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Page Styles - Simplified */
.story-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-medium) 100%);
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.story-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.story-text-column {
    flex: 1;
    max-width: 600px;
}

.story-image-column {
    flex: 0 0 400px;
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
}

/* Floating Bees - Keep these */
.bee-particles-container {
    display: none;
}

.bee-particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: bee-float 8s ease-in-out infinite;
}

.bee-particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.bee-particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.bee-particle:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.bee-particle:nth-child(4) { top: 40%; right: 10%; animation-delay: 3s; }
.bee-particle:nth-child(5) { top: 80%; left: 20%; animation-delay: 4s; }
.bee-particle:nth-child(6) { top: 30%; right: 25%; animation-delay: 5s; }
.bee-particle:nth-child(7) { top: 70%; left: 15%; animation-delay: 6s; }
.bee-particle:nth-child(8) { top: 50%; right: 5%; animation-delay: 7s; }

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

/* Remove background patterns */
.story-background-patterns {
    display: none;
}

/* Simple title without typewriter effect */
.story-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 30%, var(--accent-gold) 70%, var(--accent-pink) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

.story-text {
    margin-bottom: 3rem;
}

.story-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-align: left;
}

/* Remove highlight effects */
.highlight-text {
    transition: none;
}

.highlight-glow {
    background: none;
    animation: none;
}

/* Simple founder image without 3D effects */
.founder-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 500px;
}

.founder-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.2);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

/* Remove image glow and overlay effects */
.image-glow {
    display: none;
}

.image-overlay {
    display: none;
}

/* Keep bee button animation */
.particle-button {
    position: relative;
    overflow: hidden;
}

.button-content {
    position: relative;
    z-index: 2;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.particle:nth-child(1) { top: 20%; left: 20%; }
.particle:nth-child(2) { top: 30%; right: 30%; }
.particle:nth-child(3) { bottom: 30%; left: 30%; }
.particle:nth-child(4) { bottom: 20%; right: 20%; }
.particle:nth-child(5) { top: 50%; left: 50%; }

@keyframes particle-explode {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translate(var(--x), var(--y));
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(calc(var(--x) * 2), calc(var(--y) * 2));
    }
}


/* Remove floating sparkles */
.interactive-elements {
    display: none;
}

/* Active navigation state */
.nav-links a.active {
    color: var(--accent-pink);
    font-weight: 600;
}

.nav-links a.active::before {
    width: 100%;
}

/* Responsive Story Page */
@media (max-width: 1024px) {
    .story-content {
        gap: 3rem;
    }
    
    .story-image-column {
        flex: 0 0 350px;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .bee-particle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .story-hero {
        padding: calc(var(--navbar-height) + 1rem) 0 2rem;
    }
    
    .story-content {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .story-text-column {
        order: 2;
    }
    
    .story-image-column {
        order: 1;
        flex: none;
        width: 100%;
        position: static;
    }
    
    .founder-image-container {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-image-container:hover {
        transform: scale(1.02);
    }
    
    .story-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .story-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .bee-particles-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    
    .founder-image-container {
        max-width: 300px;
    }
}

/* Gradient text styling for highlighted words */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 30%, var(--accent-gold) 70%, var(--accent-pink) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Simple title without typewriter effect */
.story-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 30%, var(--accent-gold) 70%, var(--accent-pink) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

/* Google Sign-In Styles */
.google-signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    min-height: 44px;
}

.google-signin-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.google-signin-btn:active {
    transform: translateY(0);
}

.google-signin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.google-text {
    font-weight: 500;
}

.signin-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 300px;
}

/* Loading States */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--accent-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Message Styles */
.info-message {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    animation: fadeInUp 0.3s ease;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    animation: fadeInUp 0.3s ease;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Google Sign-In */
@media (max-width: 768px) {
    .google-signin-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .google-icon {
        width: 16px;
        height: 16px;
    }
    
    .signin-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .google-signin-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .google-icon {
        width: 14px;
        height: 14px;
    }
    
    .google-text {
        font-size: 0.85rem;
    }
}

/* Gradient text styling for highlighted words */

/* Page Transition Animations */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.95) 50%, rgba(55, 65, 81, 0.95) 100%);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.page-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.page-transition.active {
    transform: translateY(0);
}

.page-transition-out {
    transform: translateY(-100%);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Page content fade animations */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for page elements */
.page-content.loaded .navbar {
    animation: slideInDown 0.6s ease 0.2s both;
}

.page-content.loaded .hero,
.page-content.loaded .story-hero {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-content.loaded .split-section {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.page-content.loaded .problem-solution {
    animation: fadeInUp 0.8s ease 0.8s both;
}


.page-content.loaded .waitlist {
    animation: fadeInUp 0.8s ease 1.2s both;
}

.page-content.loaded .footer {
    animation: fadeInUp 0.8s ease 1.4s both;
}

/* Transition keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for page content */
.loading-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-medium) 100%);
}

.loading-spinner-page {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .back-to-top::before {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top::before {
        font-size: 1.2rem;
    }
}

/* Loading animation for page content */