/* =========================================================
   $HELLO on XRPL — helloxrpl.com
   ========================================================= */

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

:root {
    --primary: #00D4FF;
    --secondary: #FF6B35;
    --accent: #FFD700;
    --fury-flame: #FF8C00;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --success: #22c55e;
    --danger: #ef4444;
    --gradient-1: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF3366 100%);
    --gradient-3: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-fury: linear-gradient(135deg, #FF8C00 0%, #FF3366 100%);
    --glow: 0 0 60px rgba(0, 212, 255, 0.3);
}

html { scroll-behavior: smooth; }

/* Anchor jumps — compensate for fixed 80px nav */
section[id] { scroll-margin-top: 90px; }

/* Keyboard focus — visible ring without breaking mouse UX */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
}
a:focus-visible, button:focus-visible,
.buy-link:focus-visible, .fury-btn:focus-visible,
.primary-btn:focus-visible, .secondary-btn:focus-visible,
.buy-btn:focus-visible, .quick-buy-pill:focus-visible,
.fz-card:focus-visible, .social-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }

a { color: inherit; }

/* ---- Custom Cursor (desktop only) ---- */
@media (pointer: fine) {
    body { cursor: none; }
    body a, body button, body .buy-link, body .play-btn,
    body .fury-btn, body .primary-btn, body .secondary-btn { cursor: none; }
    .cursor {
        width: 20px; height: 20px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease, background 0.15s ease;
        mix-blend-mode: difference;
        left: 0; top: 0;
    }
    .cursor.hover { transform: scale(2); background: var(--primary); }
}
@media (pointer: coarse) {
    .cursor { display: none; }
}

/* ---- Animated Background ---- */
.bg-animation {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; background: var(--darker);
}
.bg-animation::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ---- Floating Particles ---- */
.particles {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ---- Navigation ---- */
nav {
    position: fixed; top: 0; left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
nav.scrolled { padding: 1rem 5%; background: rgba(5, 5, 8, 0.95); }
.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--light);
}
.logo img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: var(--glow);
    transition: transform 0.3s ease;
}
.logo:hover img { transform: rotate(360deg) scale(1.1); }
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem; font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links .nav-item::after {
    content: '';
    position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links .nav-item:hover::after { width: 100%; }

/* Responsive label swap (long on wide, short on mid) */
.nav-label-long { display: inline; }
.nav-label-short { display: none; }

/* Icon-only social pills in the nav */
.nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.nav-social:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}
.nav-social svg { width: 16px; height: 16px; }
.nav-social-label { display: none; }

/* ---- Progressive-disclosure breakpoints for the nav ----
   Ordered widest → narrowest. Mobile menu (<968px) lives in its own block.
*/
/* <1400px: shorten long labels, tighten spacing, slightly smaller buttons */
@media (max-width: 1400px) {
    .nav-links { gap: 1.5rem; }
    .nav-links .nav-item { font-size: 0.88rem; }
    .nav-label-long { display: none; }
    .nav-label-short { display: inline; }
    .buy-btn { padding: 10px 22px; font-size: 0.88rem; }
}
/* <1280px: drop secondary items (still in mobile menu + accessible by scroll) */
@media (max-width: 1280px) {
    .nav-links { gap: 1.25rem; }
    .nav-item-hide-md { display: none; }
}
/* <1100px: hide logo text + nav ticker to free up room for primary actions */
@media (max-width: 1100px) {
    .logo-text { display: none; }
    .nav-ticker { display: none !important; }
}
.buy-btn {
    padding: 12px 28px;
    background: var(--gradient-1);
    border: none; border-radius: 50px;
    color: var(--dark);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.buy-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5); }

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: -1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(5, 5, 8, 0.7) 0%,
        rgba(10, 10, 15, 0.5) 50%,
        rgba(10, 10, 15, 1) 100%);
    z-index: 0;
}
.hero-content { text-align: center; z-index: 1; padding: 2rem; max-width: 900px; }
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}
.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 .wave {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}
.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
    display: flex; gap: 1.5rem;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.primary-btn {
    padding: 16px 40px;
    background: var(--gradient-1);
    border: none; border-radius: 50px;
    color: var(--dark);
    font-weight: 600; font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.4);
}
.primary-btn:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6); }
.secondary-btn {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--light);
    font-weight: 600; font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
}
.secondary-btn:hover { border-color: var(--primary); background: rgba(0, 212, 255, 0.1); transform: translateY(-3px); }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    z-index: 10;
}
.scroll-indicator span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-indicator .mouse {
    width: 25px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}
.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ---- Section primitives ---- */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Live Token Stats ---- */
.token-stats {
    padding: 100px 5% 60px;
    position: relative;
}
.token-container { max-width: 1200px; margin: 0 auto; }
.token-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.08);
}
.token-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-1);
}
.token-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    margin-bottom: 2rem;
}
.token-title { display: flex; align-items: center; gap: 16px; }
.token-title img {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}
.token-title .name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem; font-weight: 700;
    line-height: 1.1;
}
.token-title .sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.token-price-block { text-align: right; }
.token-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
}
.token-price .unit { font-size: 0.55em; color: rgba(255, 255, 255, 0.5); margin-left: 6px; }
.token-price #tk-price {
    transition: color 0.15s ease, text-shadow 0.15s ease;
    display: inline-block;
}
.token-price #tk-price.flash-up   { color: var(--success); text-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
.token-price #tk-price.flash-down { color: var(--danger);  text-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
.token-price-usd { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; margin-top: 6px; }
.token-change {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 50px;
    margin-top: 10px;
    font-size: 0.9rem; font-weight: 600;
}
.token-change.up { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.token-change.down { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.token-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1rem 1.1rem;
}
.metric .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.metric .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.chart-controls {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    width: fit-content;
    margin: 0 0 12px auto;
}
.chart-period {
    appearance: none;
    background: transparent;
    border: none;
    padding: 6px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    min-width: 38px;
}
.chart-period:hover { color: var(--light); }
.chart-period.is-active {
    background: var(--gradient-1);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(0, 212, 255, 0.3);
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.chart-wrap canvas { width: 100%; height: 100%; display: block; }
.chart-empty {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}
.chart-tooltip {
    position: absolute;
    pointer-events: none;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    transform: translate(-50%, calc(-100% - 12px));
    opacity: 0;
    transition: opacity 0.1s ease;
}
.chart-tooltip.visible { opacity: 1; }
.chart-tooltip .tt-price { color: var(--primary); font-weight: 600; }
.chart-tooltip .tt-time { color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; }

.token-footer {
    display: flex; flex-wrap: wrap;
    justify-content: space-between; align-items: center;
    gap: 1rem; margin-top: 1.5rem;
}
.token-updated { color: rgba(255, 255, 255, 0.35); font-size: 0.8rem; }
.token-updated .pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 6px;
    animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.quick-buy {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.quick-buy-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    transition: all 0.2s ease;
}
.quick-buy-pill:hover {
    background: var(--gradient-1);
    color: var(--dark);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---- About ---- */
.about { padding: 120px 5%; position: relative; overflow: hidden; }
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px; margin: 0 auto;
}
.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}
.about-card:hover::before { opacity: 1; }
.about-card .icon {
    width: 60px; height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.about-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-card p { color: rgba(255, 255, 255, 0.6); line-height: 1.7; }

/* ---- Catra Game Section ---- */
.game-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(255, 107, 53, 0.05) 50%, var(--dark) 100%);
    overflow: hidden;
}
.game-container {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.game-cover {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    aspect-ratio: 16/10;
    background: #000;
}
.game-cover:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 40px 100px rgba(255, 107, 53, 0.4); }
.game-cover video, .game-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gradient-2);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700; font-size: 0.9rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}
.game-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.game-content .game-tagline {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.game-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.game-features { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.game-feature {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--secondary);
}
.game-feature svg { width: 16px; height: 16px; }
.fury-zone-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 2rem;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    color: var(--accent);
}
.fury-zone-badge span { font-weight: 600; }
.nft-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    padding: 10px 15px;
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    color: rgba(255, 150, 150, 0.9);
}
.nft-note a { color: var(--primary); text-decoration: underline; }

/* ---- Fury Zone Games Grid ---- */
.fz-games {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(255, 140, 0, 0.04) 50%, var(--dark) 100%);
}
.fz-games .section-tag {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
    color: var(--fury-flame);
}
.fz-games-container { max-width: 1400px; margin: 0 auto; }
.fz-section-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 3rem 0 1.5rem;
    letter-spacing: 0.02em;
}
.fz-section-label::before {
    content: '';
    flex: 0 0 4px; height: 28px;
    background: var(--gradient-fury);
    border-radius: 2px;
}
.fz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}
.fz-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--light);
    display: flex; flex-direction: column;
    transition: all 0.3s ease;
    isolation: isolate;
}
.fz-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none;
}
.fz-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.15);
}
.fz-card:hover::after { opacity: 1; }
.fz-card.featured { border-color: rgba(255, 215, 0, 0.35); }
.fz-card.featured::before {
    content: 'HC PLAYABLE';
    position: absolute;
    top: 10px; right: 10px; z-index: 3;
    background: var(--gradient-3);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}
.fz-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #1a1a24 0%, #0a0a12 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.fz-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.fz-card:hover .fz-icon img { transform: scale(1.08); }
.fz-icon.placeholder {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 51, 102, 0.1) 100%);
}
.fz-icon.placeholder img { width: 55%; height: 55%; object-fit: contain; filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6)); }

/* Coming Soon corner ribbon — sits on the icon square */
.fz-ribbon {
    position: absolute;
    top: 0; left: 0;
    width: 180px; height: 180px;
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
}
.fz-ribbon span {
    position: absolute;
    top: 28px; left: -52px;
    width: 220px;
    padding: 7px 0;
    background: var(--gradient-3);
    color: var(--dark);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    animation: ribbon-shimmer 3s ease-in-out infinite;
}
@keyframes ribbon-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.25) drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)); }
}
.fz-card.coming-soon .fz-icon {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(128, 0, 128, 0.15) 100%);
}
.fz-meta { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fz-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600; line-height: 1.2; }
.fz-desc { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; line-height: 1.45; flex: 1; }
.fz-play {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px;
    color: var(--fury-flame); font-size: 0.8rem; font-weight: 600;
}
.fz-play svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.fz-card:hover .fz-play svg { transform: translateX(4px); }

.fz-footer-cta {
    text-align: center; margin-top: 3rem;
}
.fz-footer-cta .fury-btn { font-size: 1rem; padding: 16px 32px; }

/* ---- Tony + HC Showcase ---- */
.showcase-hc {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}
.showcase-hc-container { max-width: 1400px; margin: 0 auto; }
.showcase-grid-hc {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: clamp(400px, 60vh, 640px);
}
.showcase-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: all 0.4s ease;
}
.showcase-tile video, .showcase-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.showcase-tile:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); z-index: 2; }
.showcase-tile:hover video, .showcase-tile:hover img { transform: scale(1.06); }
.showcase-tile::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}
.showcase-label-hc {
    position: absolute;
    bottom: 16px; left: 18px; right: 18px;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.showcase-tile-featured { grid-row: span 2; }
.showcase-tile-featured .showcase-label-hc { font-size: 1.4rem; }
@media (max-width: 900px) {
    .showcase-grid-hc {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .showcase-tile { aspect-ratio: 16/10; }
    .showcase-tile-featured { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ---- Developer Section ---- */
.developer-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}
.developer-container { max-width: 1000px; margin: 0 auto; }
.developer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.developer-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-3);
}
.developer-header {
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 2rem;
}
.developer-avatar {
    width: 80px; height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.developer-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.developer-info .title { color: var(--accent); font-weight: 500; }
.developer-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.developer-socials { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.developer-social {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.developer-social:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--dark);
    transform: translateY(-3px);
}
.goals-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.goals-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}
.goals-list { list-style: none; }
.goals-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.goals-list li::before {
    content: '';
    width: 24px; height: 24px;
    min-width: 24px;
    background: var(--gradient-3);
    border-radius: 50%;
}

/* ---- Buy Section ---- */
.buy-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}
.buy-container { max-width: 1200px; margin: 0 auto; }
.buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 60px;
}
.buy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.buy-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.buy-card:hover::before { opacity: 0.3; }
@keyframes rotate { 100% { transform: rotate(360deg); } }
.buy-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--primary); }
.buy-card-inner { position: relative; z-index: 1; }
.buy-card .platform-name {
    font-size: 1.8rem; font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.buy-card p { color: rgba(255, 255, 255, 0.6); margin-bottom: 2rem; }
.buy-card .buy-link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-1);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.buy-card .buy-link:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}
.buy-card .buy-link svg { transition: transform 0.3s ease; }
.buy-card .buy-link:hover svg { transform: translateX(5px); }

/* ---- Gallery ---- */
.gallery { padding: 120px 5%; overflow: hidden; }
.gallery-scroll {
    display: flex; gap: 2rem;
    animation: scroll-left 80s linear infinite;
    width: max-content;
}
.gallery-scroll:hover { animation-play-state: paused; }
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-item {
    flex-shrink: 0;
    width: 400px; height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.gallery-item img, .gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.1); }

/* ---- CTA ---- */
.cta { padding: 120px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 1.5rem; }
.cta h2 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta p { font-size: 1.3rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 3rem; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.social-link {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    color: var(--dark);
}

/* ---- Ecosystem Support ---- */
.ecosystem-support {
    padding: 60px 5%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}
.ecosystem-container { max-width: 1000px; margin: 0 auto; }
.ecosystem-content { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.ecosystem-icon { font-size: 3rem; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.ecosystem-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.5)); }
.ecosystem-text { flex: 1; min-width: 280px; }
.ecosystem-text h3 {
    font-size: 1.4rem; margin-bottom: 0.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ecosystem-text p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.6; }
.ecosystem-text a { color: var(--accent); text-decoration: underline; }
.fury-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-3);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.fury-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
.fury-btn.variant-orange { background: var(--gradient-2); }

/* ---- Footer ---- */
footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
footer p { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; }
footer .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Mobile Menu ---- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer;
    padding: 10px;
}
.mobile-menu-btn span {
    width: 25px; height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 400px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active { right: 0; }
    .nav-links .nav-item { font-size: 1.5rem; }
    /* In the mobile drawer, restore everything that desktop hides */
    .nav-links .nav-item-hide-md { display: block; }
    .nav-label-long { display: inline !important; }
    .nav-label-short { display: none !important; }
    /* Social pills become full-sized text buttons inside the drawer */
    .nav-social {
        width: auto;
        height: auto;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        gap: 10px;
    }
    .nav-social svg { width: 18px; height: 18px; }
    .nav-social-label { display: inline; font-size: 1.2rem; }
    .mobile-menu-btn { display: flex; z-index: 1001; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
    .hero p { font-size: 1.1rem; }
    .about-grid, .buy-grid { grid-template-columns: 1fr; }
    .gallery-item { width: 300px; height: 225px; }
    .game-container { grid-template-columns: 1fr; gap: 3rem; }
    .game-cover { max-width: 500px; margin: 0 auto; }
    .token-price-block { text-align: left; }
    .token-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .ecosystem-content { text-align: center; flex-direction: column; }
    .ecosystem-text { text-align: center; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 1rem; }
    .primary-btn, .secondary-btn { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 2rem; }
    .buy-card { padding: 1.5rem; }
    .token-card { padding: 1.5rem; }
    .fz-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .fz-meta { padding: 0.75rem; }
    .fz-title { font-size: 0.9rem; }
    .fz-desc { display: none; }
}

/* ---- Skeleton shimmer ---- */
.skeleton {
    display: inline-block;
    min-width: 80px;
    height: 1em;
    vertical-align: middle;
    border-radius: 6px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s linear infinite;
}
.skeleton.sk-price { min-width: 170px; height: 0.8em; }
.skeleton.sk-usd { min-width: 90px; height: 0.8em; }
.skeleton.sk-change { min-width: 110px; height: 0.8em; }
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Nav price ticker ---- */
.nav-ticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    text-decoration: none;
    color: var(--light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav-ticker:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}
.nav-ticker-dot {
    width: 7px; height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}
.nav-ticker-price { color: var(--light); font-weight: 600; }
.nav-ticker-change.up   { color: var(--success); }
.nav-ticker-change.down { color: var(--danger); }
.nav-ticker[hidden] { display: none; }

/* ---- Trust signals ---- */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.5rem 0 1.5rem;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    cursor: help;
    transition: all 0.2s ease;
}
.trust-chip:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}
.trust-icon { font-size: 0.95rem; line-height: 1; }
.trust-label { color: rgba(255, 255, 255, 0.55); }
.trust-value { color: var(--accent); font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

/* ---- Contract copy row ---- */
.contract-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
}
.contract-field {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.contract-field-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.copy-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--light);
    text-align: left;
    min-width: 0;
}
.copy-btn code {
    font-family: 'Space Grotesk', 'Courier New', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.copy-btn svg {
    width: 15px; height: 15px;
    color: rgba(0, 212, 255, 0.7);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}
.copy-btn:hover svg { color: var(--primary); transform: scale(1.15); }
.copy-btn:hover code { color: var(--light); }
@media (max-width: 600px) {
    .contract-row { grid-template-columns: 1fr; }
}

/* ---- Roadmap ---- */
.roadmap {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(0, 212, 255, 0.03) 50%, var(--dark) 100%);
}
.roadmap .section-tag {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--primary);
}
.roadmap-container { max-width: 1100px; margin: 0 auto; }
.roadmap-timeline {
    list-style: none;
    position: relative;
    padding: 0;
}
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 20px; bottom: 20px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--success) 0%,
        var(--primary) 35%,
        rgba(255, 255, 255, 0.2) 70%,
        rgba(255, 255, 255, 0.1) 100%);
}
.roadmap-step {
    position: relative;
    padding: 0 0 2.5rem 72px;
    min-height: 80px;
}
.roadmap-step:last-child { padding-bottom: 0; }
.roadmap-marker {
    position: absolute;
    top: 0; left: 4px;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--darker);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}
.roadmap-step.done .roadmap-marker {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}
.roadmap-step.done .roadmap-marker {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.roadmap-step.current .roadmap-marker {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: current-pulse 2.5s ease-in-out infinite;
}
@keyframes current-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
    50% { transform: scale(1.08); box-shadow: 0 0 45px rgba(0, 212, 255, 0.8); }
}
.roadmap-body {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    transition: all 0.3s ease;
}
.roadmap-step:hover .roadmap-body {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
}
.roadmap-phase {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.roadmap-step.done .roadmap-phase { color: var(--success); }
.roadmap-step.upcoming .roadmap-phase { color: rgba(255, 255, 255, 0.5); }
.roadmap-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}
.roadmap-body p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    font-size: 0.98rem;
}

/* ---- Share buttons (CTA) ---- */
.share-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.share-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-right: 6px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}
.share-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* ---- Toast notifications ---- */
.toast-region {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
    display: flex; flex-direction: column; gap: 8px;
    align-items: center;
}
.toast {
    pointer-events: auto;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    animation: toast-in 0.3s ease;
    backdrop-filter: blur(12px);
}
.toast.leaving { animation: toast-out 0.3s ease forwards; }
.toast svg { width: 16px; height: 16px; color: var(--success); }
@keyframes toast-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

/* ---- Mobile tweaks for new bits ---- */
@media (max-width: 968px) {
    .roadmap-timeline::before { left: 19px; }
    .roadmap-marker { width: 40px; height: 40px; font-size: 1rem; }
    .roadmap-step { padding-left: 58px; }
    .share-row { gap: 0.5rem; }
    .share-label { width: 100%; text-align: center; margin-bottom: 4px; margin-right: 0; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .particles, .cursor, .scroll-indicator { display: none !important; }
    .bg-animation::before { animation: none; }
    .gallery-scroll { animation: none; transform: none; overflow-x: auto; width: auto; }
    .hero-video { display: none; }
    .skeleton { animation: none; background: rgba(255, 255, 255, 0.1); }
    .nav-ticker-dot, .token-updated .pulse-dot { animation: none; }
    .roadmap-step.current .roadmap-marker { animation: none; }
    .fz-ribbon span { animation: none; }
}
