:root {
    /* Color Palette */
    --bg-color: #0c0c0c;
    --text-color: #ffffff;
    --accent-gradient: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --secondary-gradient: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Wrapper layout */
.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Title Styling */
.title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInScale 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    cursor: default;
    user-select: none;
}

.title:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(161, 140, 209, 0.4));
}

/* Subtle Animated Background Glow */
.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.15) 0%, rgba(12, 12, 12, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 8s infinite alternate ease-in-out;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    animation: fadeInScale 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-item:hover,
.nav-item.active {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Instagram Link */
.instagram-link {
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.instagram-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

/* Easter Button */
.easter-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeInScale 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
    animation-delay: 0.5s;
    outline: none;
    user-select: none;
}

.easter-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(161, 140, 209, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(161, 140, 209, 0.2);
}

.easter-button:active {
    transform: translateY(-2px);
}

/* Emoji Shower Styles */
.emoji-particle {
    position: fixed;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    font-size: 2rem;
    user-select: none;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(0vh) translateX(calc(var(--sway) * 0.1)) rotate(36deg) scale(1.2);
    }
    50% {
        opacity: 1;
        transform: translateY(50vh) translateX(var(--sway)) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(calc(var(--sway) * 0.5)) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
}

.title-link {
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 768px) {
    .title {
        letter-spacing: -0.02em;
    }
    .instagram-link {
        top: 1.5rem;
        right: 1.5rem;
    }
    .instagram-icon {
        width: 28px;
        height: 28px;
    }
}
