/* =====================================================
   DODONTSB — Ethereal Surge
   Color palette matched to avatar: teal/cyan/emerald on deep black
   ===================================================== */

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

:root {
    --bg: #050508;
    --bg-surface: #0a0a12;
    --bg-elevated: #10101a;
    --bg-card: #0c0c16;

    --accent: #2dd4bf;
    --accent-dim: rgba(45, 212, 191, 0.10);
    --accent-glow: rgba(45, 212, 191, 0.25);

    --cyan: #22d3ee;
    --cyan-dim: rgba(34, 211, 238, 0.10);
    --cyan-glow: rgba(34, 211, 238, 0.20);

    --text: #ededed;
    --text-secondary: #8a8a9a;
    --text-muted: #4a4a5e;
    --text-dim: #2a2a3a;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --section-pad: clamp(56px, 8vw, 100px);
    --container-max: 1200px;
    --container-pad: clamp(20px, 4vw, 48px);

    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 50%, rgba(5, 5, 8, 0.5) 100%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; font: inherit; color: inherit; cursor: none; }
img { display: block; max-width: 100%; }

.mono {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-accent { color: var(--accent); }
.text-cyan { color: var(--cyan); }

::selection {
    background: var(--accent);
    color: var(--bg);
}


/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-text {
    display: flex;
    gap: 2px;
}

.preloader-letter {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--text);
    display: inline-block;
    line-height: 1;
    will-change: transform, opacity;
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 1px;
    transform-origin: left;
    will-change: transform;
}


/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.3s ease;
    will-change: transform;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

body.cursor-hover .cursor-ring {
    transform: translate(-50%, -50%) scale(1.56);
    border-color: var(--accent);
}

body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
    background: var(--accent);
}


/* =====================================================
   SCROLL PROGRESS
   ===================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    z-index: 9998;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}


/* =====================================================
   NAVIGATION
   ===================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-pad);
    background: rgba(5, 5, 8, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

#navbar.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.nav-logo:hover .nav-logo-text { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--bg);
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-cta:hover { background: #5eead4; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    cursor: none;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.nav-hamburger.active span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-hamburger.active span:last-child { transform: translateY(-4px) rotate(-45deg); }


/* =====================================================
   MOBILE MENU
   ===================================================== */
#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 8, 0.96);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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


/* =====================================================
   MAIN — Ambient Glows
   ===================================================== */
main {
    position: relative;
}

main::before,
main::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
}

main::before {
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.035;
    top: 30%;
    left: -15%;
}

main::after {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    opacity: 0.025;
    top: 55%;
    right: -12%;
}


/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, black 10%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, black 10%, transparent 60%);
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform, opacity;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.12;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -150px;
    left: -100px;
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 var(--container-pad);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: 100px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 14vw, 12rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    overflow: hidden;
    will-change: transform, opacity;
    text-shadow: 0 0 80px rgba(45, 212, 191, 0.15), 0 0 160px rgba(34, 211, 238, 0.06);
}

.hero-title-line {
    display: flex;
    justify-content: center;
}

.hero-char {
    display: inline-block;
    will-change: transform, opacity;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow), inset 0 0 24px var(--accent-dim);
}

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

.btn-secondary:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    overflow: hidden;
}

.scroll-line-fill {
    width: 100%;
    height: 100%;
    background: var(--accent);
    will-change: transform;
    animation: scroll-fill 2s ease-in-out infinite;
}

@keyframes scroll-fill {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}


/* =====================================================
   SECTIONS — Shared
   ===================================================== */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-pad) var(--container-pad);
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 40px;
}

.section-number {
    color: var(--accent);
    font-size: 0.65rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 0 40px rgba(45, 212, 191, 0.08);
}


/* =====================================================
   ABOUT SECTION
   ===================================================== */
#about {
    position: relative;
    background:
        radial-gradient(ellipse 50% 60% at 5% 40%, rgba(45, 212, 191, 0.04), transparent),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(34, 211, 238, 0.02), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: start;
    padding: 36px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.about-left {
    position: sticky;
    top: 100px;
}

.about-avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.4s ease;
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.about-avatar:hover {
    box-shadow: 0 0 30px var(--accent-dim), 0 0 60px rgba(45, 212, 191, 0.06);
}

.avatar-ring {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-glow), transparent, var(--cyan-glow)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    will-change: transform;
    animation: ring-rotate 8s linear infinite;
}

@keyframes ring-rotate { to { transform: rotate(360deg); } }

.about-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.tag:hover {
    border-color: var(--accent-glow);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}


/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-section {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
    padding: 18px 0;
    overflow: hidden;
    background: var(--bg-surface);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    padding-right: 40px;
    will-change: transform;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 0.6rem !important;
}

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

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


/* =====================================================
   VIDEOS / TIKTOK EMBED
   ===================================================== */
#videos {
    position: relative;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(34, 211, 238, 0.03), transparent);
}

.tiktok-embed-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 24px;
}

.tiktok-embed-wrap blockquote {
    margin: 0 auto;
}


/* =====================================================
   LINK CARDS
   ===================================================== */
#links {
    position: relative;
    background:
        radial-gradient(ellipse 40% 50% at 20% 40%, rgba(88, 101, 242, 0.03), transparent),
        radial-gradient(ellipse 40% 50% at 80% 60%, rgba(212, 32, 32, 0.025), transparent);
}

.link-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.link-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.link-card-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.link-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.link-card-logo {
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.link-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.link-card-subtitle {
    display: block;
    margin-top: 2px;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
}

/* Discord Card */
.discord-card {
    border-color: rgba(88, 101, 242, 0.3);
    background: linear-gradient(145deg, #1a1a2e, #0d0f1a);
}

.discord-card-bg {
    background:
        radial-gradient(ellipse at top left, rgba(88, 101, 242, 0.12), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(88, 101, 242, 0.06), transparent 60%);
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.12), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.discord-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.15);
    border-radius: 10px;
}

.discord-server-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.discord-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.discord-username {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.discord-userid {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
}

.discord-stats-row {
    display: flex;
    gap: 20px;
}

.discord-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.discord-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
}

.discord-stat-value.discord-online { color: #43b581; }

.discord-stat-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
}

.discord-invite-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.6;
}

.btn-discord-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    background: #5865f2;
    color: #fff;
    border: 1px solid #5865f2;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
}

.btn-discord-card:hover {
    background: #4752c4;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.25);
}

/* Adrenalin Card */
.adrenalin-card {
    border-color: rgba(212, 32, 32, 0.3);
    background: linear-gradient(145deg, #1e0a0a, #120808);
}

.adrenalin-card-bg {
    background:
        radial-gradient(ellipse at top left, rgba(212, 32, 32, 0.10), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(139, 21, 21, 0.06), transparent 60%);
}

.adrenalin-card:hover {
    border-color: rgba(212, 32, 32, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 32, 32, 0.10), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.adrenalin-logo { border-radius: 10px; }

.adrenalin-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.adrenalin-code-block {
    padding: 18px;
    background: rgba(212, 32, 32, 0.06);
    border: 1px solid rgba(212, 32, 32, 0.15);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.adrenalin-code-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.14em;
}

.adrenalin-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.adrenalin-code-text {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ef3333;
    letter-spacing: 0.06em;
}

.adrenalin-copy-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(212, 32, 32, 0.12);
    border: 1px solid rgba(212, 32, 32, 0.2);
    color: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease, color 0.2s ease;
    cursor: none;
}

.adrenalin-copy-btn:hover {
    background: rgba(212, 32, 32, 0.25);
    color: #ef3333;
}

.adrenalin-discount {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #ef3333;
}

.btn-adrenalin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    background: #d42020;
    color: #fff;
    border: 1px solid #d42020;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
}

.btn-adrenalin:hover {
    background: #b01a1a;
    box-shadow: 0 0 20px rgba(212, 32, 32, 0.25);
}

.adrenalin-btn-logo { border-radius: 3px; }


/* =====================================================
   FOOTER
   ===================================================== */
#footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--accent-glow), transparent) 1;
    background: var(--bg-surface);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 32px var(--container-pad) 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

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

.footer-link {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.6rem;
}


/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }

    .about-left {
        position: static;
        display: flex;
        justify-content: center;
    }

    .hero-stats { gap: 24px; }

    .link-cards-grid { grid-template-columns: 1fr; }
    .link-card-content { padding: 22px; }

    .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 600px) {
    .hero-title { font-size: clamp(3rem, 14vw, 6rem); }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

@media (pointer: coarse) {
    #cursor { display: none !important; }
    body, button, a { cursor: auto; }
}
