:root {
    --bg-primary: #050505;
    --bg-secondary: #060d06;
    --bg-card: rgba(255, 255, 255, 0.03);
    --neon-gold: #FFD700;
    --neon-green: #22c55e;
    --neon-bright-green: #4ade80;
    --accent-orange: #f97316;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --gradient-1: linear-gradient(135deg, #FFD700, #22c55e);
    --gradient-2: linear-gradient(135deg, #FFD700, #f97316);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-orbitron: 'Orbitron', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
    --font-sora: 'Sora', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-gold) var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-bright-green);
}

body {
    font-family: var(--font-sora);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--neon-gold);
    border-right-color: var(--neon-green);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.2s linear infinite;
}

.loader-ring-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: var(--accent-orange);
    border-left-color: var(--neon-bright-green);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite reverse;
}

.loader-text {
    margin-top: 30px;
    font-family: var(--font-orbitron);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    animation: loaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loaderTextPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-visible #cursor-glow {
    opacity: 1;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-gold);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--neon-green);
    top: 30%;
    right: -80px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--neon-bright-green);
    top: 60%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 18s;
}

.orb-5 {
    width: 200px;
    height: 200px;
    background: var(--neon-gold);
    bottom: -50px;
    right: -50px;
    animation-delay: -8s;
    animation-duration: 28s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-orbitron);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-space);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--gradient-1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.25), 0 10px 30px rgba(255, 215, 0, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero > .hero-content,
.hero > .hero-visual {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-subtitle {
    font-family: var(--font-poppins);
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    white-space: nowrap;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--font-space);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: var(--font-orbitron);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.25));
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-space);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.25), 0 10px 30px rgba(255, 215, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

.contract-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(20px);
    max-width: 550px;
    transition: border-color 0.3s ease;
}

.contract-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.contract-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contract-address-wrapper code {
    font-family: var(--font-space);
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    position: relative;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    color: var(--neon-gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--neon-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-tooltip.show {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mascot-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: mascotGlow 4s ease-in-out infinite;
}

@keyframes mascotGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.mascot-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    animation: mascotFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.25));
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    animation: coinFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coin-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.coin-2 {
    top: 15%;
    right: 10%;
    animation-delay: -2s;
    width: 40px;
    height: 40px;
}

.coin-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -4s;
    width: 35px;
    height: 35px;
}

@keyframes coinFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(15deg); }
    50% { transform: translate(-5px, -10px) rotate(0deg); }
    75% { transform: translate(15px, -25px) rotate(-10deg); }
}

.neon-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(255, 215, 0, 0.2);
    border-top-color: var(--neon-gold);
    border-right-color: var(--neon-green);
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-color: rgba(34, 197, 94, 0.15);
    border-bottom-color: var(--neon-green);
    border-left-color: var(--neon-bright-green);
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    width: 430px;
    height: 430px;
    border-color: rgba(249, 115, 22, 0.1);
    border-top-color: var(--accent-orange);
    animation-duration: 20s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    font-family: var(--font-space);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* SECTIONS */
section {
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-orbitron);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon-gold);
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-poppins);
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ABOUT */
.about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.glass-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--neon-gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.glass-card h3 {
    font-family: var(--font-orbitron);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.glass-card p {
    font-family: var(--font-sora);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-content {
    padding: 48px;
}

.about-content-inner h3 {
    font-family: var(--font-orbitron);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content-inner p {
    font-family: var(--font-sora);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-orbitron);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix, .stat-suffix-prefix {
    font-family: var(--font-orbitron);
    font-size: 28px;
    font-weight: 700;
    color: var(--neon-gold);
}

.stat-suffix-prefix {
    font-size: 20px;
    margin-right: 2px;
}

.stat-label {
    display: block;
    font-family: var(--font-space);
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* TOKENOMICS */
.tokenomics {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.03), transparent);
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.token-ring-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: tokenSpin 12s linear infinite;
}

.ring-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 215, 0, 0.15);
    border-top-color: var(--neon-gold);
    border-right-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1), inset 0 0 40px rgba(255, 215, 0, 0.05);
}

.ring-middle {
    width: 75%;
    height: 75%;
    border-color: rgba(34, 197, 94, 0.15);
    border-bottom-color: var(--neon-green);
    border-left-color: var(--neon-bright-green);
    animation-direction: reverse;
    animation-duration: 8s;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1), inset 0 0 30px rgba(34, 197, 94, 0.05);
}

.ring-inner {
    width: 50%;
    height: 50%;
    border-color: rgba(249, 115, 22, 0.15);
    border-top-color: var(--accent-orange);
    animation-duration: 6s;
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.1), inset 0 0 25px rgba(249, 115, 22, 0.05);
}

.token-center {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
    z-index: 2;
}

.token-center img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

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

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.token-card {
    text-align: center;
}

.token-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(34, 197, 94, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.token-icon svg {
    width: 36px;
    height: 36px;
}

.token-card h3 {
    font-family: var(--font-space);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.token-value {
    font-family: var(--font-orbitron);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ROADMAP */
.roadmap {
    padding: 120px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-gold), var(--neon-green), var(--accent-orange));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
}

.dot-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--neon-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dot-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: dotRingPulse 2s ease-in-out infinite;
}

@keyframes dotRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.timeline-content {
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
}

.timeline-phase {
    display: inline-block;
    font-family: var(--font-orbitron);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--neon-green);
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-family: var(--font-orbitron);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    font-family: var(--font-sora);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-space);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
}

.timeline-status svg {
    width: 16px;
    height: 16px;
}

.timeline-status.complete {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.timeline-status.upcoming {
    color: var(--neon-gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.timeline-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.timeline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: var(--font-space);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    color: var(--bg-primary);
    background: var(--gradient-1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* COMMUNITY */
.community {
    padding: 120px 0 140px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.03), transparent);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.social-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover::after {
    opacity: 1;
}

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(34, 197, 94, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    margin-bottom: 24px;
    color: var(--neon-gold);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
    border-color: var(--neon-gold);
}

.social-icon svg {
    width: 36px;
    height: 36px;
}

.social-card h3 {
    font-family: var(--font-orbitron);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.social-card > p {
    font-family: var(--font-sora);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.social-handle {
    font-family: var(--font-space);
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.social-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--neon-gold);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s ease;
    z-index: 1;
}

.social-arrow svg {
    width: 18px;
    height: 18px;
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* FOOTER */
.footer {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-neon-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), var(--neon-green), var(--accent-orange), transparent);
    animation: neonLineGlow 3s ease-in-out infinite;
}

@keyframes neonLineGlow {
    0%, 100% { opacity: 0.4; box-shadow: none; }
    50% { opacity: 0.6; box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo span {
    font-family: var(--font-orbitron);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--neon-gold);
    color: var(--neon-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
}

.footer-text {
    font-family: var(--font-poppins);
    font-size: 16px;
    color: var(--text-secondary);
}

.footer-copyright {
    font-family: var(--font-space);
    font-size: 13px;
    color: var(--text-muted);
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero > .hero-content,
    .hero > .hero-visual {
        max-width: 550px;
        padding: 0 30px;
    }

    .hero-subtitle {
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contract-card {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .mascot-container {
        width: 350px;
        height: 350px;
    }

    .mascot-img {
        width: 150px;
        height: 150px;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 80px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -11px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 20px 120px;
    }

    .hero > .hero-content,
    .hero > .hero-visual {
        padding: 0 10px;
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        white-space: normal;
    }

    .section-container {
        padding: 0 20px;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 24px;
    }

    .hamburger {
        display: flex;
    }

    .section-container {
        padding: 0 20px;
    }

    .about-content {
        padding: 32px 24px;
    }

    .about-stats {
        gap: 24px;
        justify-content: center;
    }

    .mascot-container {
        width: 280px;
        height: 280px;
    }

    .mascot-img {
        width: 120px;
        height: 120px;
    }

    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 260px; height: 260px; }
    .ring-3 { width: 270px; height: 270px; }

    .coin { display: none; }

    .scroll-indicator {
        bottom: 25px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .contract-address-wrapper {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .contract-address-wrapper code {
        font-size: 11px;
    }

    .copy-btn {
        padding: 8px;
    }

    .token-ring-container {
        width: 240px;
        height: 240px;
    }

    .token-center {
        width: 80px;
        height: 80px;
    }

    .token-center img {
        width: 55px;
        height: 55px;
    }
}
