@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #a855f7; /* Purple */
    --accent: #22d3ee; /* Cyan */
    --smm: #f43f5e; /* Rose / SMM Section */
    --smm-glow: rgba(244, 63, 94, 0.5);
    --bg-dark: #020617;
    --surface-1: rgba(15, 23, 42, 0.6);
    --surface-2: rgba(30, 41, 59, 0.4);
    --border-color: rgba(148, 163, 184, 0.1);
    --border-glow: rgba(99, 102, 241, 0.2);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #f8fafc;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Texture Overlay */
.grainy-bg::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* Premium Navigation */
.nav-frosted {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
}

/* Typography Overhaul */
.text-gradient {
    background: linear-gradient(135deg, #818cf8, #c084fc, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.text-balance {
    text-wrap: balance;
}

/* Surfaces & Glassmorphism */
.glass-surface {
    background: var(--surface-1);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-surface:hover {
    background: var(--surface-2);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Animations */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); clip-path: inset(100% 0 0 0); }
    to { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}

.reveal-up {
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Section Decor */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}

.glow-primary { background: var(--primary); }
.glow-secondary { background: var(--secondary); }
.glow-smm { background: var(--smm); }

/* Buttons */
.btn-premium-hero {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-premium-hero:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    transform: scale(1.05);
}
