@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html { scroll-behavior: smooth; background-color: #0F0F11; }

@layer utilities {
    .bg-creative-dark { background-color: #0F0F11; }
    .bg-creative-purple { background-color: #7B2CBF; }
    .bg-creative-pink { background-color: #FF006E; }
    .bg-creative-yellow { background-color: #FFBE0B; }
    .bg-creative-blue { background-color: #3A86FF; }
    
    .text-creative-light { color: #F8F9FA; }
    .text-creative-muted { color: #8E9BAE; }
    
    .font-space { font-family: 'Space Grotesk', sans-serif; }
    .font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif; }
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #FF006E, #7B2CBF, #3A86FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #FF006E, #7B2CBF, #3A86FF);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.creative-btn {
    @apply inline-flex items-center justify-center px-8 py-4 bg-white text-black font-space font-bold rounded-full hover:scale-105 transition-transform duration-300 relative overflow-hidden z-10;
}

.creative-btn::before {
    content: '';
    @apply absolute inset-0 bg-gradient-custom -z-10 opacity-0 transition-opacity duration-300;
}

.creative-btn:hover::before {
    @apply opacity-100;
}
.creative-btn:hover {
    @apply text-white shadow-[0_0_20px_rgba(255,0,110,0.5)];
}

/* Marquee / Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #FFBE0B;
    color: #000;
    padding: 1rem 0;
    transform: rotate(-2deg) scale(1.05);
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
}

.ticker-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    padding: 0 2rem;
    text-transform: uppercase;
}

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

/* Custom Cursor */
body {
    cursor: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}
a:hover ~ .cursor-dot, button:hover ~ .cursor-dot, .creative-btn:hover ~ .cursor-dot {
    width: 20px;
    height: 20px;
    background-color: #FF006E;
    mix-blend-mode: difference;
}

/* Geometric blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: floatBlob 10s ease-in-out infinite;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}
