@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&display=swap');

:root {
    --bg-dark: #050505;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-purple: #8A2BE2;
    --accent-cyan: #00FFFF;
    
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

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

/* --- Texture Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
}

body {
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(138, 43, 226, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255, 0, 127, 0.02) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */

/* --- Section Dividers --- */
.section-divider {
    width: 100%;
    max-width: 80px;
    height: 1px;
    margin: 2rem auto;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.eyebrow {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* --- Fluid Island Nav --- */
.nav-island {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    z-index: 1000;
    transition: background 0.4s var(--ease-spring);
}

.hamburger-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s var(--ease-spring);
    z-index: 1001;
    position: relative;
    width: 48px;
    height: 48px;
}
.hamburger-lines {
    position: relative;
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-lines .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.4s var(--ease-spring), opacity 0.4s var(--ease-spring);
    transform-origin: center;
}
.hamburger-btn.open .line-top {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open .line-middle {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger-btn.open .line-bottom {
    transform: translateY(-7px) rotate(-45deg);
}
.hamburger-btn:hover {
    color: #FFF;
}

/* Mobile Menu Overlay (Staggered Mask Reveal) */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-spring);
}
.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-spring), transform 0.4s var(--ease-spring), color 0.3s ease;
}
.mobile-menu-overlay.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-overlay.open .mobile-link:nth-child(1) { transition-delay: 50ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(4) { transition-delay: 200ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(5) { transition-delay: 250ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(6) { transition-delay: 300ms; }
.mobile-menu-overlay.open .mobile-link:nth-child(7) { transition-delay: 350ms; }
.mobile-link:hover {
    color: #FFF;
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0; /* Macro-whitespace */
}

/* --- Double-Bezel Components (Doppelrand) --- */
.glass-panel-outer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 2rem;
    transition: transform 0.6s var(--ease-spring);
}

.glass-panel-inner {
    background: rgba(20, 20, 20, 0.95);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem; /* inner radius = outer radius - padding */
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- Asymmetrical Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-item {
    min-height: 300px;
}

.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-4 { grid-column: span 4; }
.row-span-2 { grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .col-span-8, .col-span-4, .col-span-6, .col-span-12 {
        grid-column: span 1;
    }
    .row-span-2 {
        grid-row: span 1;
    }
    .section {
        padding: 4rem 0;
    }
}

/* --- Interactive Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #000000;
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
    cursor: pointer;
    border: none;
    gap: 1rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-spring);
}

.btn:hover .icon-wrapper {
    transform: translateX(4px) translateY(-1px) scale(1.05);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin-anim {
    animation: spin 1s linear infinite;
}

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary .icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Navbar --- */
.nav-island {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    gap: 2rem;
    z-index: 50;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* --- Specific Sections --- */
.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #FFF;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Scroll Interpolation (Entry Animations) --- */
.reveal {
    opacity: 0;
    transform: translateY(4rem);
    filter: blur(8px);
    transition: opacity 1s var(--ease-spring), transform 1s var(--ease-spring), filter 1s var(--ease-spring);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Staggering */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Content inside bento */
.category-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.category-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-primary);
}

/* Hover Physics for Bento */
.bento-item:hover .glass-panel-outer {
    transform: translateY(-8px) scale(1.01);
}

.hover-glow:hover {
    background: rgba(255,255,255,0.05) !important;
    transform: translateY(-4px) !important;
    border-color: rgba(255,255,255,0.15) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.category-top-games {
    margin-top: auto;
    padding-top: 1.5rem;
}

.top-game-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* --- Marquee --- */
.marquee-section {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to bottom, rgba(5,5,5,0) 0%, rgba(255,255,255,0.02) 50%, rgba(5,5,5,0) 100%);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    min-width: 200%;
    animation: marquee 20s linear infinite;
    padding: 1rem 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    transition: background 0.3s var(--ease-spring), transform 0.3s var(--ease-spring);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(255,255,255,0.1);
}

.marquee-rank {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.25rem;
}

.marquee-game-name {
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

/* --- Artechnocode Bento Cards --- */
.art-card {
    transition: transform 0.3s var(--ease-spring);
    height: 100%;
}
.art-card:hover {
    transform: translateY(-4px);
}
.art-card-inner {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: border-color 0.3s ease;
}
.art-card:hover .art-card-inner {
    border-color: rgba(255, 255, 255, 0.15);
}
.art-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.art-card-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #FFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.art-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}
.art-card-value-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}
.art-value-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.art-value-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--accent-cyan);
}
.art-value-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.art-card-games {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.art-games-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.art-games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.art-game-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
.art-game-pill-more {
    background: transparent;
    border-style: dashed;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Flagship Games Pills --- */
.flagship-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.flagship-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}
.flagship-pill-more {
    background: transparent;
    border-style: dashed;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* --- Compat Badge --- */
.compat-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    color: #FFF;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}
.compat-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Testimonials (WhatsApp Style) --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wa-bubble {
    background: #202C33;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    border-top-left-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, #202C33 50%);
}
.wa-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}
.wa-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.wa-name {
    font-weight: 600;
    color: #E9EDEF;
}
.wa-status {
    font-size: 0.75rem;
    color: var(--accent-cyan);
}
.wa-body p {
    color: #E9EDEF;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.wa-time {
    text-align: right;
    font-size: 0.7rem;
    color: #8696A0;
}
.wa-ticks {
    color: #53BDEB;
    margin-left: 4px;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.3s ease;
}
.faq-item:hover {
    background: rgba(255,255,255,0.05);
}
.faq-item summary {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Compatibility Badge --- */
.compat-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.compat-badge:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
}

/* --- Ultimate Mobile Optimizations --- */
.hamburger-btn {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-spring);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    /* Navbar & Menu */
    .hamburger-btn {
        display: flex;
    }
    .nav-island {
        width: calc(100% - 2rem);
        max-width: none;
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    }
    .nav-island > span {
        font-size: 1rem !important;
    }
    .nav-btn-text {
        display: none;
    }
    .nav-btn {
        padding: 0.25rem !important;
    }

    /* Hero Padding Fix (Prevent Overlap) */
    .hero {
        padding-top: 10rem !important;
    }
    .hero-promo-container {
        margin-top: 2rem;
    }

    /* Section Padding and Layout */
    .section {
        padding: 4rem 0 !important;
    }
    .container {
        padding: 0 1.5rem;
    }
    
    /* Stats Fixes */
    .stat-value {
        font-size: 2.5rem !important;
    }
    .glass-panel-inner {
        padding: 1.5rem !important;
    }
    
    /* Hero Title */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.05;
    }

    /* Artechnocode Cards Mobile */
    .art-card-inner {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .art-card-title {
        font-size: 2rem;
    }
    .art-value-price {
        font-size: 1.5rem;
    }
}

/* --- Scroll Reveal Animations (Haptic Entry) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    transition: 
        opacity 0.8s var(--ease-spring), 
        transform 0.8s var(--ease-spring),
        filter 0.8s var(--ease-spring);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- Button Delight (Press Physics) --- */
.btn {
    transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-spring);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}
.btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
}
.btn .icon-wrapper {
    transition: transform 0.3s var(--ease-spring);
}
.btn:hover .icon-wrapper {
    transform: translateX(3px);
}

/* --- SVG Icon Hover Animations --- */
.hover-glow svg {
    transition: transform 0.4s var(--ease-spring);
}
.hover-glow:hover svg {
    transform: scale(1.15) rotate(-3deg);
}

/* --- FAQ Accordion Smooth Open --- */
.faq-item summary {
    cursor: pointer;
    transition: color 0.3s var(--ease-spring);
}
.faq-item[open] summary {
    color: var(--accent-cyan);
}
.faq-content {
    animation: faqSlide 0.4s var(--ease-spring);
}
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Marquee Item Hover --- */
.marquee-item svg {
    transition: transform 0.3s var(--ease-spring);
}
.marquee-item:hover svg {
    transform: scale(1.2) rotate(15deg);
}

/* --- Art Card Hover Glow --- */
.art-card-inner {
    transition: border-color 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.art-card:hover .art-card-inner {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 80px rgba(138, 43, 226, 0.04);
}

