/* Floki 2026 - CSS Styles */
/* Ultra Visual Edition with GSAP + Lenis */

/* Color Palette from Floki Image:
   - Red (Santa): #DC143C, #C41E3A
   - White: #FFFFFF
   - Gold: #FFD700, #FDB931
   - Brown/Orange: #D2691E, #CD853F
   - Black: #000000
*/

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

:root {
    --color-bg-primary: #1a0000;
    --color-bg-secondary: #000000;
    --color-text-primary: #FFFFFF;
    --color-accent-red: #DC143C;
    --color-accent-gold: #FFD700;
    --color-accent-brown: #CD853F;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-red-glow: #C41E3A;
    --color-pastel: #ffb3ba;
    --color-pastel-a: #ffb3ba;
    --color-pastel-b: #baffc9;
    --cursor-size: 20px;
    --cursor-follower-size: 40px;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
    overflow-x: hidden;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */

.cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--color-accent-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-follower {
    width: var(--cursor-follower-size);
    height: var(--cursor-follower-size);
    border: 2px solid var(--color-accent-red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: var(--color-accent-red);
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    border-color: var(--color-accent-gold);
}

.cursor.clicking {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-red);
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
    transition: all 0.3s ease;
}

.header-logo:hover {
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 1))
            drop-shadow(0 0 40px rgba(220, 20, 60, 0.6));
    transform: scale(1.05);
}

.header-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
    align-items: center;
}

.header-social {
    color: var(--color-text-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social:hover {
    opacity: 1;
    color: var(--color-accent-gold);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.header-cta {
    background: linear-gradient(135deg, var(--color-accent-red) 0%, #8B0000 100%);
    color: var(--color-text-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6),
                0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.2) 50%,
                transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.header-cta:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.header-cta:hover {
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.9),
                0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
}

/* ========================================
   MAGNETIC BUTTON EFFECT
   ======================================== */

.magnetic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.magnetic-btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   COUNTDOWN - Underline Accent
   ======================================== */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    z-index: 5;
    margin-top: 0;
}

.countdown-item {
    position: relative;
    text-align: center;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    font-variant-numeric: tabular-nums;
    display: block;
    position: relative;
    padding-bottom: 0.4rem;
}

.countdown-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-red));
    border-radius: 2px;
}

.countdown-label {
    position: absolute;
    bottom: 0.5rem;
    right: -0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.2rem;
    padding-bottom: 0.4rem;
}

/* ========================================
   SNOWFLAKES
   ======================================== */

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-accent-gold);
    border-bottom: 2px solid var(--color-accent-gold);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) translateY(10px);
        opacity: 1;
    }
}

.w-full {
    width: 100%;
}

/* ========================================
   SECTION 1: HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1.3rem 5rem;
    text-align: center;
    overflow: hidden;
}

/* Background Title */
.main-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    line-height: 0.85;
}

.main-title span {
    font-size: clamp(5rem, 16vw, 14rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.12) 0%,
        rgba(255, 165, 0, 0.1) 50%,
        rgba(255, 140, 0, 0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portal-container {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.portal-img {
    position: relative;
    z-index: 10;
    width: 400px;
    height: 400px;
    max-width: 85vw;
    object-fit: contain;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    gap: 2.5rem;
}

.cta-button {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.button-pad {
    background: linear-gradient(135deg, var(--color-accent-red) 0%, #8B0000 100%);
    color: var(--color-text-primary);
    padding: 1.8rem 5rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.8),
                0 0 80px rgba(220, 20, 60, 0.5),
                0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
                 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: button-pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.button-pad::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(220, 20, 60, 0.8),
                    0 0 80px rgba(220, 20, 60, 0.5),
                    0 10px 30px rgba(0, 0, 0, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(220, 20, 60, 1),
                    0 0 100px rgba(220, 20, 60, 0.8),
                    0 10px 40px rgba(0, 0, 0, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.cta-button:hover .button-pad {
    box-shadow: 0 0 60px rgba(220, 20, 60, 1),
                0 0 120px rgba(220, 20, 60, 0.9),
                0 15px 50px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
}

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

.social-links {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--color-accent-gold);
    transform: scale(1.1);
}

/* ========================================
   SECTION 2: ANIMATED TEXT SECTION
   ======================================== */

.text-animation-section {
    background-color: transparent;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.8rem 0;
}

.text-animation-container {
    width: 100%;
    transform: scale(0.45);
    transform-origin: center;
    font-size: 190px;
}

.text-rows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-row {
    position: relative;
    display: flex;
    gap: 3rem;
}

.text-row-2 {
    margin-top: -185px;
}

.text-row-3 {
    margin-top: -185px;
}

.animated-word {
    position: relative;
    display: inline-block;
    font-weight: 800;
    pointer-events: none;
}

/* Row 1 */
.animated-word:nth-child(1) {
    color: rgba(220, 20, 60, 0.4);
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
}

.animated-word:nth-child(2) {
    color: rgba(255, 140, 0, 0.4);
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.animated-word:nth-child(3) {
    color: rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

/* Row 2 */
.text-row-2 .animated-word:nth-child(1) {
    color: rgba(255, 69, 0, 0.4);
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
}

.text-row-2 .animated-word:nth-child(2) {
    color: rgba(255, 185, 15, 0.4);
    text-shadow: 0 0 30px rgba(255, 185, 15, 0.6);
}

/* Row 3 */
.text-row-3 .animated-word:nth-child(1) {
    color: rgba(178, 34, 34, 0.4);
    text-shadow: 0 0 30px rgba(178, 34, 34, 0.6);
}

.text-row-3 .animated-word:nth-child(2) {
    color: rgba(255, 165, 0, 0.4);
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
}

.text-row-3 .animated-word:nth-child(3) {
    color: rgba(255, 200, 50, 0.4);
    text-shadow: 0 0 30px rgba(255, 200, 50, 0.6);
}

.word-overlay {
    position: absolute;
    pointer-events: none;
}

.word-overlay-1 {
    left: 50%;
    top: 50%;
    transform: translate(-190px, -160px);
}

.word-overlay-2 {
    left: 50%;
    top: 50%;
    transform: translate(328px, -45px);
}

.word-overlay-3 {
    left: 50%;
    top: 50%;
    transform: translate(-205px, -135px);
}

.word-overlay-4 {
    left: 50%;
    top: 50%;
    transform: translate(-180px, -120px);
}

.word-overlay-5 {
    left: 50%;
    top: 50%;
    transform: translate(300px, -50px);
}

.word-overlay-6 {
    left: 50%;
    top: 50%;
    transform: translate(-150px, -100px);
}

.word-overlay-7 {
    left: 50%;
    top: 50%;
    transform: translate(200px, -80px);
}

.word-overlay-8 {
    left: 50%;
    top: 50%;
    transform: translate(-220px, -140px);
}

/* ========================================
   SECTION 4: GALLERY SECTION
   ======================================== */

.gallery-section {
    background-color: transparent;
    padding: 2.6rem 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 0.8rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 0.8rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    contain: paint;
}

.gallery-download {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .gallery-download {
    opacity: 1;
    transform: translateY(0);
}

.gallery-download:hover {
    background: var(--color-accent-gold);
    transform: scale(1.1);
}

.gallery-download svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.gallery-item:nth-child(6n + 1) img {
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6));
}

.gallery-item:nth-child(6n + 2) img {
    filter: drop-shadow(0 0 20px rgba(255, 179, 71, 0.6));
}

.gallery-item:nth-child(6n + 3) img {
    filter: drop-shadow(0 0 20px rgba(255, 234, 167, 0.6));
}

.gallery-item:nth-child(6n + 4) img {
    filter: drop-shadow(0 0 20px rgba(119, 221, 119, 0.6));
}

.gallery-item:nth-child(6n + 5) img {
    filter: drop-shadow(0 0 20px rgba(132, 165, 244, 0.6));
}

.gallery-item:nth-child(6n + 6) img {
    filter: drop-shadow(0 0 20px rgba(206, 147, 216, 0.6));
}

/* ========================================
   SECTION 5: FOOTER
   ======================================== */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    padding: 3.9rem 1.95rem;
    background-color: transparent;
    color: var(--color-text-primary);
}

.footer-nav {
    order: 2;
    display: flex;
    gap: 2rem;
    font-size: 1.125rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-link {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.footer-link:hover {
    color: var(--color-accent-red);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8))
            drop-shadow(0 0 20px rgba(220, 20, 60, 0.5));
}

.footer-brand {
    order: 1;
    color: var(--color-accent-red);
    padding: 1rem;
    transform: scale(0.4);
}

.footer-text {
    color: var(--color-accent-red);
    position: relative;
    white-space: nowrap;
    display: inline-block;
    font-weight: 800;
    font-size: 6rem;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 1))
            drop-shadow(0 0 20px rgba(220, 20, 60, 0.8))
            drop-shadow(0 0 40px rgba(220, 20, 60, 0.5))
            drop-shadow(0 0 80px rgba(220, 20, 60, 0.3));
    animation: footer-glow 3s ease-in-out infinite;
}

@keyframes footer-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(220, 20, 60, 1))
                drop-shadow(0 0 20px rgba(220, 20, 60, 0.8))
                drop-shadow(0 0 40px rgba(220, 20, 60, 0.5))
                drop-shadow(0 0 80px rgba(220, 20, 60, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(220, 20, 60, 1))
                drop-shadow(0 0 30px rgba(220, 20, 60, 1))
                drop-shadow(0 0 60px rgba(220, 20, 60, 0.7))
                drop-shadow(0 0 100px rgba(220, 20, 60, 0.4));
    }
}

.footer-img {
    position: absolute;
    right: -6px;
    bottom: 28px;
    width: 80px;
    height: auto;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Small screens (640px+) */
@media (min-width: 640px) {
    .text-animation-container {
        transform: scale(0.55);
    }
}

/* Medium screens (768px+) */
@media (min-width: 768px) {
    .text-animation-container {
        transform: scale(0.7);
    }

    .footer-nav {
        flex-direction: row;
        font-size: 1.5rem;
        order: 1;
    }

    .footer-brand {
        order: 2;
        padding: 0;
        transform: scale(1);
    }
}

/* Large screens (1024px+) */
@media (min-width: 1024px) {
    .text-animation-container {
        transform: scale(0.85);
    }
}

/* Extra large screens (1280px+) */
@media (min-width: 1280px) {
    .text-animation-container {
        transform: scale(1);
    }
}

/* ========================================
   IMAGE REVEAL & HOVER EFFECTS
   ======================================== */

/* Hover effect for gallery */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive masonry */
@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
        padding: 0 2rem;
    }
}

/* ========================================
   SPLIT TEXT ANIMATIONS
   ======================================== */

.split-text .char,
.split-text .word {
    display: inline-block;
}

/* ========================================
   SECTION TRANSITIONS
   ======================================== */

section {
    opacity: 0;
    transform: translateY(50px);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LOADING SCREEN
   ======================================== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.loader-text {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent-red);
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.8));
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-gold));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ========================================
   PARALLAX ELEMENTS
   ======================================== */

[data-speed] {
    will-change: transform;
}


/* ========================================
   GLOW ENHANCEMENTS
   ======================================== */

.ultra-glow {
    animation: ultra-glow-pulse 2s ease-in-out infinite;
}

@keyframes ultra-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px currentColor)
                drop-shadow(0 0 40px currentColor)
                drop-shadow(0 0 60px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 30px currentColor)
                drop-shadow(0 0 60px currentColor)
                drop-shadow(0 0 100px currentColor);
    }
}

/* ========================================
   MOBILE CURSOR HIDE
   ======================================== */

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }

    .main-title span {
        font-size: clamp(4rem, 22vw, 10rem);
    }

    body {
        cursor: auto;
    }

    .header {
        padding: 0.8rem 1rem;
    }

    .header-nav {
        gap: 0.8rem;
    }

    .header-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .header-social svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   ANIMATED WORD ENHANCEMENTS
   ======================================== */

