/* ============================================
   King Coin Official Website - Modern Web3 Style
   ============================================ */

:root {
    /* Color System */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a26;
    --bg-card: rgba(26, 26, 38, 0.6);
    --bg-card-hover: rgba(32, 32, 48, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6c6c80;
    
    --accent-gold: #FFD700;
    --accent-orange: #FFA500;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-red: #EF4444;
    --accent-green: #10B981;
    
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    --gradient-cyan: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    --gradient-card-1: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    --gradient-card-2: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    --gradient-card-3: linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 215, 0, 0.3);
    
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.15);
    --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', 'Inter', sans-serif;
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

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

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

.nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-links a:hover::after {
    width: calc(100% - 32px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    border-color: var(--border-gold);
}

.lang-toggle .lang-active {
    color: var(--accent-gold);
}

.lang-toggle .lang-divider {
    color: var(--border-light);
}

.btn-ghost {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gradient-gold);
    border-image: var(--gradient-gold) 1;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-base);
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
                var(--gradient-gold) border-box;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    color: #1a1a0a;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat linear infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; transform: scale(1); }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    animation: heroFadeIn 1s ease-out;
}

.hero-content.hero-left {
    max-width: 100%;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFadeIn 1s ease-out 0.2s backwards;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    inset: 0;
}

.visual-ring.ring-1 {
    inset: 0;
    border-color: rgba(255, 215, 0, 0.2);
    animation: ringPulse 4s ease-in-out infinite;
}

.visual-ring.ring-2 {
    inset: 10%;
    border-color: rgba(139, 92, 246, 0.25);
    animation: ringPulse 4s ease-in-out infinite 0.5s reverse;
}

.visual-ring.ring-3 {
    inset: 20%;
    border-color: rgba(6, 182, 212, 0.3);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

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

.hero-main-img {
    position: absolute;
    inset: 15%;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.4),
        0 0 120px rgba(139, 92, 246, 0.2);
    animation: imgFloat 6s ease-in-out infinite;
}

@keyframes imgFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.floating-coin {
    position: absolute;
    width: 25%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

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

.floating-coin.coin-a {
    top: -5%;
    left: -5%;
    animation: orbit 8s ease-in-out infinite;
}

.floating-coin.coin-b {
    bottom: -5%;
    right: -5%;
    animation: orbit 8s ease-in-out infinite 2s reverse;
}

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

.hero-stats-wide {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
}

.hero-ctas {
    justify-content: flex-start;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--accent-purple);
    font-weight: 500;
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 7vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.title-line-1 {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 8px 16px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60%;
    align-self: center;
    background: var(--border-light);
}

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

.hero-scroll span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

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

@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-gradient-1 { background: var(--gradient-card-1); }
.card-gradient-2 { background: var(--gradient-card-2); }
.card-gradient-3 { background: var(--gradient-card-3); }

.about-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    color: var(--accent-gold);
}

.about-icon svg {
    width: 32px;
    height: 32px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ============================================
   Features Section
   ============================================ */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.feature-item:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.feature-reverse {
    grid-template-columns: 1fr auto;
}

.feature-reverse .feature-number {
    grid-column: 2;
    grid-row: 1;
}

.feature-reverse .feature-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.feature-reverse .feature-content .feature-icon-wrap {
    margin-left: auto;
}

.feature-reverse .feature-content .feature-tags {
    justify-content: flex-end;
}

.feature-number {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.icon-1 {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.icon-2 {
    background: rgba(255, 165, 0, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.icon-3 {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

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

.feature-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================
   Notice Section
   ============================================ */
.notice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.notice-icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    color: var(--accent-red);
    flex-shrink: 0;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(239, 68, 68, 0); }
}

.notice-icon svg {
    width: 48px;
    height: 48px;
}

.notice-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.notice-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.notice-desc .accent {
    color: var(--accent-gold);
    font-weight: 700;
}

.danger-text {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-sm);
    color: var(--accent-red) !important;
    font-weight: 700 !important;
}

.notice-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.notice-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    color: #1a1a0a;
    flex-shrink: 0;
}

.step-arrow {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   Mechanism Section
   ============================================ */
.mechanism-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.coin-card {
    padding: 40px 32px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.coin-card:hover {
    transform: translateY(-6px);
}

.coin-legend {
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.coin-legend:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-purple);
}

.coin-king {
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
    border-color: var(--border-gold);
}

.coin-king:hover {
    box-shadow: var(--shadow-gold);
}

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

.coin-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
}

.logo-legend {
    background: var(--gradient-purple);
    color: white;
}

.logo-king {
    background: var(--gradient-gold);
    color: #1a1a0a;
}

.logo-king svg {
    width: 32px;
    height: 32px;
}

.coin-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-legend {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-king {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
}

.coin-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.coin-legend .coin-name {
    color: var(--accent-purple);
}

.coin-king .coin-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coin-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 24px;
}

.coin-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.coin-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.coin-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-green);
}

.coin-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
}

.synergy-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-gold), var(--accent-purple));
    padding: 3px;
    animation: spin 8s linear infinite;
}

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

.synergy-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: spin-reverse 8s linear infinite;
}

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

.synergy-plus {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.synergy-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
}

.synergy-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 1px;
}

/* ============================================
   Process Section
   ============================================ */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
}

.step-index {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-secondary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.process-step:hover .step-index {
    background: var(--gradient-gold);
    border-color: transparent;
    color: #1a1a0a;
    box-shadow: var(--shadow-gold);
}

.step-connector {
    flex: 1;
    width: 2px;
    min-height: 60px;
    background: linear-gradient(180deg, var(--border-light) 0%, transparent 100%);
    margin-top: 8px;
}

.step-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    transition: var(--transition-base);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 30px;
    width: 32px;
    height: 2px;
    background: var(--border-light);
}

.process-step:hover .step-card {
    border-color: var(--border-gold);
    transform: translateX(8px);
}

.process-step:hover .step-card::before {
    background: var(--gradient-gold);
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 4px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-card {
    position: relative;
    padding: 80px 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-align: center;
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: block;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-telegram:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.contact-qq:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.contact-telegram .contact-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.contact-qq .contact-icon {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-handle {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-telegram .contact-handle {
    color: var(--accent-blue);
}

.contact-qq .contact-handle {
    color: var(--accent-gold);
}

.qq-group {
    letter-spacing: 2px;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.contact-telegram .contact-cta:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.4);
}

.contact-qq .copy-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
    border-color: var(--border-gold);
}

.contact-cta svg {
    width: 16px;
    height: 16px;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    font-family: inherit;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 64px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col li {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.footer-tags span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-display);
}

/* ============================================
   Toast
   ============================================ */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mechanism-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .coin-center {
        order: -1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions .btn-ghost {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 16px;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-light);
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-ctas button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .stat-divider { display: none; }
    
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 16px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .feature-item,
    .feature-reverse {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 32px 24px;
        gap: 20px;
    }
    
    .feature-number {
        order: -1;
        font-size: 64px;
        line-height: 1;
    }
    
    .feature-reverse .feature-number,
    .feature-reverse .feature-content {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }
    
    .feature-reverse .feature-content .feature-icon-wrap {
        margin-left: 0;
    }
    
    .feature-reverse .feature-content .feature-tags {
        justify-content: flex-start;
    }
    
    .notice-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .notice-icon {
        margin: 0 auto;
        width: 72px;
        height: 72px;
    }
    
    .notice-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .notice-steps {
        justify-content: center;
    }
    
    .process-steps {
        padding-left: 20px;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }
    
    .step-indicator {
        width: 48px;
    }
    
    .step-index {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .step-card::before {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   About Cards - Images
   ============================================ */
.about-img-wrap {
    width: calc(100% + 64px);
    margin: -40px -32px 24px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    aspect-ratio: 16 / 10;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.about-card:hover .about-img {
    transform: scale(1.06);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,26,38,0.8) 100%);
    pointer-events: none;
}

/* ============================================
   Features - Image Row Layout
   ============================================ */
.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-row-reverse {
    grid-template-columns: 1fr 1.1fr;
}

.feature-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.feature-item:hover .feature-img-wrap {
    transform: scale(1.02);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.feature-img-wrap:hover .feature-img {
    transform: scale(1.05);
}

.feature-number {
    align-self: flex-start;
}

.feature-item {
    align-items: start;
}

.feature-content {
    min-width: 0;
}

/* ============================================
   Mechanism - Banner + Coin Visuals
   ============================================ */
.mechanism-visual-banner {
    width: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.mechanism-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mechanism-visual-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(18,18,26,0.85) 100%);
    pointer-events: none;
}

.coin-visual {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    background: var(--bg-tertiary);
    position: relative;
}

.coin-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.coin-card:hover .coin-3d-img {
    transform: scale(1.06) rotate(3deg);
}

.coin-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   Process - Step Images
   ============================================ */
.step-img-wrap {
    width: calc(100% + 64px);
    margin: -32px -32px 24px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    aspect-ratio: 16 / 9;
    position: relative;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.process-step:hover .step-img {
    transform: scale(1.05);
}

.step-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,38,0.9) 100%);
    pointer-events: none;
}

/* ============================================
   Tokenomics Section
   ============================================ */
.tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.tokenomics-chart {
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-gold);
    box-shadow: 
        0 0 80px rgba(255, 215, 0, 0.25),
        inset 0 0 40px rgba(139, 92, 246, 0.15);
    position: relative;
    animation: chartGlow 4s ease-in-out infinite;
}

@keyframes chartGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.2), inset 0 0 40px rgba(139, 92, 246, 0.1); }
    50% { box-shadow: 0 0 100px rgba(255, 215, 0, 0.35), inset 0 0 60px rgba(139, 92, 246, 0.2); }
}

.chart-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.token-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.token-item:hover {
    border-color: var(--border-gold);
    transform: translateX(6px);
    box-shadow: var(--shadow-gold);
}

.token-color-bar {
    width: 6px;
    border-radius: 3px;
    background: var(--gradient-gold);
}

.bar-1 { background: linear-gradient(180deg, #FFD700, #FFA500); }
.bar-2 { background: linear-gradient(180deg, #8B5CF6, #6366F1); }
.bar-3 { background: linear-gradient(180deg, #06B6D4, #3B82F6); }
.bar-4 { background: linear-gradient(180deg, #10B981, #22D3EE); }
.bar-5 { background: linear-gradient(180deg, #F472B6, #EF4444); }

.token-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
    flex-wrap: wrap;
}

.token-head h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.token-percent {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.token-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.token-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

.token-bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-1 { background: linear-gradient(90deg, #FFD700, #FFA500); }
.fill-2 { background: linear-gradient(90deg, #8B5CF6, #6366F1); }
.fill-3 { background: linear-gradient(90deg, #06B6D4, #3B82F6); }
.fill-4 { background: linear-gradient(90deg, #10B981, #22D3EE); }
.fill-5 { background: linear-gradient(90deg, #F472B6, #EF4444); }

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap-hero {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 56px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
}

.roadmap-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roadmap-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18,18,26,0.95) 100%);
    pointer-events: none;
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.phase-card {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.phase-img-wrap {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.phase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.phase-card:hover .phase-img {
    transform: scale(1.06);
}

.phase-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
    margin-bottom: 12px;
}

.tag-q1 { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); border: 1px solid var(--border-gold); }
.tag-q2 { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); border: 1px solid rgba(139, 92, 246, 0.3); }
.tag-q3 { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }
.tag-q4 { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }

.phase-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-family: var(--font-display);
}

.phase-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phase-card li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px dashed var(--border-light);
}

.phase-card li:last-child {
    border-bottom: none;
}

/* ============================================
   Responsive for Image-rich sections
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        max-width: 360px;
    }
    
    .about-img-wrap {
        width: calc(100% + 64px);
    }
    
    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .feature-text {
        order: 2;
    }
    
    .feature-img-wrap {
        order: 1;
    }
    
    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tokenomics-chart {
        max-width: 320px;
    }
    
    .roadmap-phases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-layout {
        padding: 0 16px;
    }
    
    .hero-visual {
        max-width: 280px;
    }
    
    .about-img-wrap {
        width: calc(100% + 48px);
        margin: -24px -24px 20px;
    }
    
    .step-img-wrap {
        width: calc(100% + 48px);
        margin: -24px -24px 20px;
    }
    
    .mechanism-visual-banner {
        margin-bottom: 32px;
    }
    
    .roadmap-hero {
        margin-bottom: 36px;
    }
    
    .roadmap-phases {
        grid-template-columns: 1fr;
    }
    
    .token-item {
        gap: 12px;
        padding: 16px;
    }
}

/* ============================================
   King Tokenomics Overhaul (100% LP Pool)
   ============================================ */
.tokenomics-king-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.tokenomics-king-chart {
    aspect-ratio: 1;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background:
        conic-gradient(from 0deg, #FFD700, #FFA500, #FF6B6B, #8B5CF6, #06B6D4, #FFD700) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    box-shadow:
        0 0 80px rgba(255, 215, 0, 0.35),
        inset 0 0 60px rgba(139, 92, 246, 0.25);
    position: relative;
    animation: kingChartGlow 4s ease-in-out infinite;
}

@keyframes kingChartGlow {
    0%, 100% {
        box-shadow:
            0 0 80px rgba(255, 215, 0, 0.3),
            inset 0 0 60px rgba(139, 92, 246, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 140px rgba(255, 215, 0, 0.55),
            inset 0 0 80px rgba(139, 92, 246, 0.35);
        transform: scale(1.015);
    }
}

.chart-badge {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 22px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.6);
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.35);
    z-index: 2;
    min-width: 140px;
}

.chart-badge-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-badge-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 4px;
    letter-spacing: 1px;
}

.tokenomics-mega-supply {
    padding: 28px 32px;
    margin-bottom: 28px;
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tokenomics-mega-supply::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.mega-supply-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.mega-supply-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.35));
    position: relative;
    z-index: 1;
}

.mega-supply-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.token-item-king {
    transition: var(--transition-base);
}

.token-item-king:hover {
    transform: translateX(8px) translateY(-2px);
}

.bar-king-1 { background: linear-gradient(180deg, #FFD700, #FFA500); }
.bar-king-2 { background: linear-gradient(180deg, #06B6D4, #3B82F6); }
.bar-king-3 { background: linear-gradient(180deg, #EF4444, #FF6B6B); }
.bar-king-4 { background: linear-gradient(180deg, #8B5CF6, #EC4899); }

.fill-king-1 { background: linear-gradient(90deg, #FFD700, #FFA500); }
.fill-king-2 { background: linear-gradient(90deg, #06B6D4, #3B82F6); }
.fill-king-3 { background: linear-gradient(90deg, #EF4444, #FF6B6B); }
.fill-king-4 { background: linear-gradient(90deg, #8B5CF6, #EC4899); }

@media (max-width: 1024px) {
    .tokenomics-king-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tokenomics-king-chart {
        max-width: 340px;
    }
    .chart-badge {
        min-width: 130px;
        padding: 8px 18px;
    }
    .chart-badge-value {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .tokenomics-king-chart {
        max-width: 280px;
    }
    .tokenomics-mega-supply {
        padding: 20px 22px;
        margin-bottom: 20px;
    }
    .mega-supply-value {
        font-size: 38px;
    }
}
