/* v4/css/styles.css */
:root {
    --bg-color: #0d0116;
    /* Deep dark purple/black for space */
    --text-primary: #ffffff;
    --text-secondary: #ffbaf2;
    --accent-pink: #ff1493;
    /* Hot pink */
    --accent-pink-hover: #ff69b4;
    --accent-glow: rgba(255, 20, 147, 0.6);
    --glass-bg: rgba(255, 20, 147, 0.05);
    --glass-border: rgba(255, 20, 147, 0.2);

    --nav-height: 80px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Background Canvas */
#starsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
.v-badge {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: var(--accent-pink);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-banner strong {
    font-weight: 800;
}

/* Header */
.site-header {
    background: rgba(13, 1, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 38px;
    /* Below disclaimer */
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-badge {
    font-size: 0.8rem;
    background: var(--accent-pink);
    padding: 3px 8px;
    border-radius: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-pink-hover);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-subtitle {
    color: var(--accent-pink);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--accent-glow);
    border-color: var(--accent-pink);
}

/* Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-pink-hover);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
}

.btn-outline:hover {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Footer */
.site-footer {
    background: rgba(13, 1, 22, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--accent-pink);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease backwards;
}

.stagger-1 {
    animation-delay: 0.2s;
}

.stagger-2 {
    animation-delay: 0.4s;
}

.stagger-3 {
    animation-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page specific styles */
.page-header {
    text-align: center;
    padding: 6rem 0 3rem;
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.service-icon {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

/* ===== CRAZY EMOJI ANIMATIONS ===== */

.emoji-pitch-section {
    position: relative;
    overflow: hidden;
}

.emoji-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

/* Spinning emoji */
.emoji-spin {
    display: inline-block;
    animation: emojiSpin 2s linear infinite;
}

/* Bouncing emoji */
.emoji-bounce {
    display: inline-block;
    animation: emojiBounce 1s ease infinite;
}

/* Floating emoji (big card icons) */
.emoji-float {
    animation: emojiFloat 3s ease-in-out infinite;
}

/* Pulsing glow emoji */
.emoji-pulse {
    display: inline-block;
    animation: emojiPulse 1.5s ease-in-out infinite;
}

/* Big emoji icon in cards */
.emoji-big {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* Emoji card hover effects */
.emoji-card {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.emoji-card:hover {
    transform: translateY(-15px) rotate(-2deg) scale(1.03);
    box-shadow: 0 15px 40px var(--accent-glow), 0 0 60px rgba(255, 20, 147, 0.3);
    border-color: var(--accent-pink-hover);
}

.emoji-card:hover .emoji-big {
    animation: emojiParty 0.5s ease infinite;
}

/* ===== EMOJI RAIN ===== */
.emoji-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.emoji-rain span {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.15;
    top: -50px;
    animation: emojiRainFall 8s linear infinite;
    animation-delay: calc(var(--i) * 0.6s);
    left: calc(var(--i) * 8.33%);
}

/* ===== KEYFRAMES ===== */
@keyframes emojiSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes emojiBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes emojiFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes emojiPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.3);
        filter: brightness(1.5);
    }
}

@keyframes emojiParty {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-10px) rotate(15deg) scale(1.2);
    }

    50% {
        transform: translateY(0) rotate(-15deg) scale(1);
    }

    75% {
        transform: translateY(-5px) rotate(10deg) scale(1.15);
    }

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

@keyframes emojiRainFall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(calc(100vh + 60px)) rotate(720deg);
        opacity: 0;
    }
}