/* =========================================================
   PREMIUM LANDING PAGE CSS - ANSON PARAKKUU
========================================================= */

:root {
    --bg-dark: #0b0c10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary: #c5f015; /* Neon yellow/green from reference */
    --text-main: #ffffff;
    --text-muted: #8892b0;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* ================= CINEMATIC PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1), transform 0.8s cubic-bezier(0.8, 0, 0.2, 1), filter 0.8s ease;
    overflow: hidden;
}

#preloader.fade-out {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
    pointer-events: none;
}

.preloader-grid {
    position: absolute; width: 200vw; height: 200vh;
    background-image: 
        linear-gradient(rgba(197, 240, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 240, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    z-index: 0;
}
@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

.preloader-content {
    z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center;
}

.preloader-char-container {
    position: relative;
    margin-bottom: 40px;
}

.char-aura {
    position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    box-shadow: 0 0 100px 80px rgba(197, 240, 21, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: auraPulse 3s infinite alternate ease-in-out;
}
@keyframes auraPulse {
    0% { box-shadow: 0 0 80px 60px rgba(197, 240, 21, 0.1); }
    100% { box-shadow: 0 0 150px 120px rgba(197, 240, 21, 0.3); }
}

.preloader-char {
    position: relative; width: 280px; height: auto;
    animation: floatScaledGlow 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatScaledGlow {
    0% { transform: scale(3.5) translateY(0px) rotate(-2deg); filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)); }
    50% { transform: scale(3.5) translateY(-15px) rotate(3deg); filter: drop-shadow(0 25px 20px rgba(0,0,0,0.3)); }
    100% { transform: scale(3.5) translateY(0px) rotate(-2deg); filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)); }
}

.preloader-brand {
    margin-bottom: 40px;
}

.preloader-title {
    position: relative;
    font-size: 3rem; font-weight: 900; letter-spacing: 6px; margin: 0;
    background: linear-gradient(90deg, #fff, var(--primary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}
.preloader-subtitle {
    font-family: monospace; color: var(--text-muted); font-size: 0.9rem; letter-spacing: 2px; margin-top: 10px;
    animation: pulseText 1.5s infinite alternate;
}

.loading-bar-container {
    display: flex; align-items: center; gap: 20px;
    width: 500px; max-width: 90vw;
}

.loading-bar {
    flex: 1; height: 4px; background: rgba(255, 255, 255, 0.1);
    border-radius: 4px; overflow: visible; position: relative;
}

.loading-progress {
    width: 0%; height: 100%; background: var(--primary);
    position: relative; transition: width 0.1s linear;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary);
}

.loading-glow-tip {
    position: absolute; right: -5px; top: -3px; width: 10px; height: 10px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 0 15px 5px var(--primary);
}

.loading-percentage {
    color: var(--primary); font-family: monospace; font-size: 1.2rem; font-weight: bold; width: 50px; text-align: right;
}

/* ================= BACKGROUND PARALLAX ORBS ================= */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    --tx: 0px;
    --ty: 0px;
    animation: orbSpinPulse 20s ease-in-out infinite alternate;
}

@keyframes orbSpinPulse {
    0% { transform: translate(var(--tx), var(--ty)) rotate(0deg) scale(0.8); opacity: 0.4; }
    50% { transform: translate(var(--tx), var(--ty)) rotate(180deg) scale(1.2); opacity: 0.8; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(360deg) scale(0.9); opacity: 0.5; }
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 400px; /* Oval shape for visible rotation */
    background: radial-gradient(ellipse at center, rgba(197, 240, 21, 0.4), rgba(0,0,0,0));
}

.orb-2 {
    bottom: 20%;
    left: -10%;
    width: 400px;
    height: 700px; /* Oval shape */
    background: radial-gradient(ellipse at center, rgba(120, 100, 255, 0.3), rgba(0,0,0,0));
}

.orb-3 {
    bottom: -10%;
    right: 10%;
    width: 700px;
    height: 500px; /* Oval shape */
    background: radial-gradient(ellipse at center, rgba(255, 100, 100, 0.3), rgba(0,0,0,0));
    animation-direction: alternate-reverse;
}

/* ================= SOUND TOGGLE ================= */
.sound-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.sound-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* ================= BUTTONS ================= */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 240, 21, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 240, 21, 0.5);
}

.btn-primary.massive {
    padding: 20px 48px;
    font-size: 1.2rem;
    border-radius: 40px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
}

.btn-secondary:hover {
    color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* ================= TYPOGRAPHY & LAYOUT ================= */
.landing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    background: rgba(197, 240, 21, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ================= HERO SECTION ================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
}

.hero-text-content {
    flex: 1;
    max-width: 800px; /* Increased from 600px for wider text */
}

.hero-title-img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-title-img:active {
    transform: scale(0.9);
}

.hero-headline {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-hero {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    pointer-events: none; /* Prevent blocking buttons underneath */
    transform-origin: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ================= PREVIEW SECTION ================= */
.preview-section {
    padding: 120px 0;
}

.preview-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.preview-video-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    aspect-ratio: 9/16;
    max-width: 400px;
    margin: 0 auto;
}

.preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.preview-video.active {
    opacity: 1;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    opacity: 0.5;
}

.preview-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mt-4 { margin-top: 20px; }

/* ================= CHARACTER SHOWCASE ================= */
.characters-section {
    padding: 120px 0;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.char-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 20px 20px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.char-bg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.bg-green { background: #4caf50; }
.bg-red { background: #f44336; }
.bg-purple { background: #9c27b0; }
.bg-blue { background: #2196f3; }

.char-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
}

.char-card:hover .char-bg {
    opacity: 0.8;
}

.char-img {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin-bottom: 20px;
    transform: scale(4); /* Compensate for massive transparent borders in PNG */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.6)); /* Reduced because filter scales with transform */
}

.char-card:hover .char-img {
    transform: scale(4.5) rotate(5deg);
}

.char-info {
    position: relative;
    z-index: 2;
}

.char-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.char-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================= SEO SECTION ================= */
.seo-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.seo-block {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.seo-block:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 240, 21, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.seo-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-block h2 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.anim-bounce { animation: iconBounce 2.5s infinite ease-in-out; }
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.anim-wiggle { animation: iconWiggle 3s infinite ease-in-out; transform-origin: center; }
@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.anim-rotate { animation: iconRotate 10s infinite linear; transform-origin: center; }
@keyframes iconRotate {
    100% { transform: rotate(360deg); }
}

.anim-pulse { animation: iconPulse 2s infinite ease-in-out; }
@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--primary)); }
}

.seo-block p, .seo-block ul li {
    font-size: 1rem;
    color: #a0aab2;
    line-height: 1.7;
    margin: 0;
}

.seo-block ul {
    list-style-position: inside;
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-block ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.seo-block ul li {
    padding-left: 1em;
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.cta-container {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-floating-char {
    position: absolute;
    bottom: -50px;
    right: 5%;
    width: 250px;
    opacity: 0.2;
    transform: rotate(15deg);
    z-index: -1;
}

/* Utility for desktop hidden swipe hints */
.mobile-swipe-hint {
    display: none;
}

/* ================= FOOTER ================= */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.link-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.link-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================= PAGE TRANSITION ================= */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ================= RESPONSIVE PERFORMANCE RULES (MOBILE) ================= */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .preview-content {
        flex-direction: column;
        align-items: center;
    }
    
    .preview-features {
        align-items: center;
        text-align: center;
    }

    .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-headline {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 20px;
        margin-top: 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        width: 100%;
    }

    .footer-col {
        align-items: flex-start;
    }

    .footer-col a {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .preloader-char {
        width: 220px; /* Scaled down slightly for mobile */
    }
    
    .preloader-title {
        font-size: 1.8rem;
    }

    /* Fix Mobile Spacing */
    .characters-section, .preview-section, .hero-section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .section-desc {
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .mobile-swipe-hint {
        display: block;
        text-align: center;
        color: var(--primary);
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 15px;
        margin-bottom: 25px; /* Added more space below hint */
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: pulseText 2s infinite alternate;
    }

    @keyframes pulseText {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .cta-breakout {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    /* Mobile Video Container (Small & Beautiful) */
    .preview-video-container {
        width: 100%;
        max-width: 220px;
        aspect-ratio: 9/16;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        margin: 0 auto 30px auto;
        border: 2px solid rgba(197, 240, 21, 0.3);
    }    /* Swipable Carousels (Features & SEO) */
    .preview-features,
    .seo-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px; /* Increased gap for more space between cards */
        padding-bottom: 30px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: stretch;
    }

    /* Infinite Auto Scroll Marquee (Character Grid) */
    .character-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px; /* Increased gap */
        padding-bottom: 30px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: stretch;
    }
    
    .preview-features::-webkit-scrollbar,
    .character-grid::-webkit-scrollbar,
    .seo-container::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card,
    .char-card,
    .seo-block {
        flex: 0 0 75%; /* Reduced card width to show more space */
        scroll-snap-align: center;
        text-align: left;
        padding: 16px; 
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    } }

    .feature-card:active,
    .char-card:active,
    .seo-block:active {
        transform: scale(0.95);
    }
    /* Mobile Rule: Reduce blur/glow, disable mouse-based interactions */
    .bg-orb {
        display: none; /* Hide heavy parallax orbs */
    }
    
    .char-card:hover {
        transform: none; /* Disable hover movement */
    }
    
    .char-card:hover .char-img {
        transform: scale(4); /* Reset hover but keep base scale */
    }

    .char-img {
        display: block;
        margin: 0 auto 20px auto;
    }
    
    .feature-card:hover {
        transform: none;
    }

    /* Keep simple fades, disable heavy transform fades if needed */
    .fade-up {
        transform: translateY(20px); /* Lighter slide */
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .floating-hero {
        animation: none; /* Disable heavy keyframe animation on mobile */
        transform: scale(2.2);
        margin: 60px 0;
    }
}

@keyframes floatScaledGlowMobile {
    0% { transform: scale(2) translateY(0px) rotate(0deg); filter: drop-shadow(0 0 10px rgba(197, 240, 21, 0.4)); }
    50% { transform: scale(2) translateY(-5px) rotate(3deg); filter: drop-shadow(0 0 25px rgba(197, 240, 21, 0.8)); }
    100% { transform: scale(2) translateY(0px) rotate(0deg); filter: drop-shadow(0 0 10px rgba(197, 240, 21, 0.4)); }
}
