:root {
    --lime: #afff00;
    --sky: #00d4ff;
    --purple: #9d00ff;
    --white: #ffffff;
    --black: #020202;
    --font-main: 'Satoshi', sans-serif;
    --font-head: 'Clash Display', sans-serif;
}

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

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

#canvas-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #020202 100%);
}

.cursor {
    width: 20px;
    height: 20px;
    background: var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.super-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 1000;
}

.nav-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
}

.brand-core {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--lime), var(--sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.link-item {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}

.link-item:hover { color: var(--lime); }

.cta-store {
    background: var(--white);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(175, 255, 0, 0.3);
    background: var(--lime);
}

.hero-extreme {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.mega-title {
    font-family: var(--font-head);
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.85;
    font-weight: 700;
    z-index: 2;
}

.outlined {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}

.hero-subtitle {
    max-width: 600px;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    animation: orbFloat 20s infinite alternate;
}

.orb-1 { background: var(--purple); top: -10%; left: -10%; }
.orb-2 { background: var(--sky); bottom: -10%; right: -10%; animation-delay: -5s; }

@keyframes orbFloat {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

.dynamic-ip {
    margin-top: 4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.ip-main {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-head);
    font-size: 2rem;
}

.status-badge {
    background: rgba(175, 255, 0, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lime);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.stats-extreme {
    padding: 100px 5%;
}

.glass-leaderboard {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px;
    padding: 50px;
    backdrop-filter: blur(40px);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

th {
    text-align: left;
    color: rgba(255,255,255,0.3);
    padding: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

tr:hover {
    background: rgba(255,255,255,0.03);
}

.copy-success-msg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--lime);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dynamic-ip.active .copy-success-msg {
    transform: translateY(0);
}