/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🥥 COCONUT CURSOR! */
* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23654321" stroke="%23000000" stroke-width="1"/><ellipse cx="12" cy="12" rx="6" ry="8" fill="%238B4513" opacity="0.6"/><circle cx="8" cy="8" r="2" fill="%23A0522D" opacity="0.4"/><circle cx="15" cy="14" r="2" fill="%23A0522D" opacity="0.4"/></svg>') 12 12, auto !important;
}

/* Pointer cursor für interaktive Elemente (Golden Coconut!) */
a, button, input[type="button"], input[type="submit"], .btn, .copy-btn, [role="button"] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 26 26"><circle cx="13" cy="13" r="11" fill="%23654321" stroke="%23FBBF24" stroke-width="2.5"/><ellipse cx="13" cy="13" rx="6" ry="9" fill="%238B4513" opacity="0.6"/><circle cx="9" cy="9" r="2.5" fill="%23A0522D" opacity="0.5"/><circle cx="16" cy="15" r="2.5" fill="%23FFD700" opacity="0.9"/><circle cx="11" cy="16" r="1.5" fill="%23D2691E" opacity="0.4"/></svg>') 13 13, pointer !important;
}

/* Text selection cursor */
input[type="text"], input[type="email"], textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="20" viewBox="0 0 2 20"><rect width="2" height="20" fill="%2306b6d4"/></svg>') 1 10, text !important;
}

:root {
    --primary-color: #f59e0b;
    --secondary-color: #fb923c;
    --accent-color: #06b6d4;
    --dark-bg: #0a1628;
    --dark-card: #0f2744;
    --text-primary: #ffffff;
    --text-secondary: #64748b;
    --gradient-1: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    --gradient-2: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-main: linear-gradient(135deg, #fbbf24 0%, #f59e0b 30%, #fb923c 60%, #06b6d4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(at 10% 20%, rgba(6, 182, 212, 0.2) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(8, 145, 178, 0.1) 0px, transparent 60%),
        linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* AI HUB & COCO GAME LINKS - Styling wird von dark-ai-theme.css übernommen */
.ai-hub-link::after,
.coco-game-link::after {
    display: none !important;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(6, 182, 212, 0.03) 2px, rgba(6, 182, 212, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(6, 182, 212, 0.03) 2px, rgba(6, 182, 212, 0.03) 4px);
    background-size: 100px 100px;
    animation: matrixRain 30s linear infinite;
}

@keyframes matrixRain {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(100px) translateX(50px); }
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 20%),
        radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 25%);
    animation: aiPulse 10s ease-in-out infinite;
}

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

/* ===== MATRIX RAIN EFFECT ===== */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes twinkle {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

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

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.surf-icon {
    font-size: 3.5rem;
    display: inline-block;
    animation: surfWave 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.3));
}

@keyframes surfWave {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: rotate3d 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.6)) drop-shadow(0 0 40px rgba(245, 158, 11, 0.4));
}

@keyframes rotate3d {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(10deg) rotateX(-5deg); }
    50% { transform: rotateY(0deg) rotateX(5deg); }
    75% { transform: rotateY(-10deg) rotateX(-5deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-coin {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.floating-coin .mascot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(6, 182, 212, 0.6))
           drop-shadow(0 10px 60px rgba(6, 182, 212, 0.4))
           drop-shadow(0 0 80px rgba(6, 182, 212, 0.3));
}

.floating-coin i {
    font-size: 8rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceScroll 2s infinite;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

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

/* ===== HERO LISTED ON ===== */
.hero-listed {
    margin-top: 4rem;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 15px;
}

.hero-listed-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    opacity: 0.9;
}

.hero-listed-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-listed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 3rem;
    background: rgba(15, 39, 68, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    width: 200px;
    backdrop-filter: blur(10px);
}

.hero-listed-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(15, 39, 68, 0.8);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.hero-listed-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 8px;
}

.hero-listed-card:hover .hero-listed-logo {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.5));
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
}

.hero-listed-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ===== LISTED ON SECTION ===== */
.listed-on {
    background: var(--dark-bg);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.listed-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.listed-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.listed-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.listed-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.listed-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.listed-logo-card:hover .listed-logo {
    filter: brightness(1.2);
}

.listed-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== HOW TO BUY SECTION ===== */
.how-to-buy {
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.6;
    z-index: 0;
}

.how-to-buy .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card:nth-child(4) {
    grid-column: 2 / 3;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin: 2rem 0 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-card p strong {
    color: #06b6d4;
    font-weight: 600;
}

.step-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: #06b6d4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.contract-info-banner {
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.8) 0%, rgba(10, 22, 40, 0.8) 100%);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

.banner-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #06b6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin: 1rem auto;
    max-width: 700px;
    flex-wrap: wrap;
}

.banner-address code {
    font-family: 'Courier New', monospace;
    color: #10b981;
    font-size: 0.95rem;
    word-break: break-all;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6), 0 0 40px rgba(16, 185, 129, 0.4);
    font-weight: 600;
}

.banner-copy-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.banner-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics {
    background: var(--dark-bg);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    border-radius: 20px;
}

.tokenomics-chart {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.token-info-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.token-info-card h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.big-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.token-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distribution-item {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item-name {
    font-weight: 600;
}

.item-percent {
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #06b6d4 100%);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.tax-info {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tax-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.tax-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tax-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.tax-item span {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tax-item strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tax-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== ROADMAP SECTION ===== */
.roadmap {
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.6;
    z-index: 0;
}

.roadmap .container {
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: var(--dark-card);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--gradient-main);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-main);
    border-color: var(--primary-color);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

.timeline-content {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.phase-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.phase-badge.current {
    background: var(--gradient-main);
    color: white;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-content li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    background: var(--dark-bg);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.social-card.twitter i { color: #1DA1F2; }
.social-card.telegram i { color: #0088cc; }
.social-card.discord i { color: #5865F2; }

.wealthhub-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.wealthhub-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.followers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* ===== BUY SECTION ===== */
.buy-section {
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.6;
}

.buy-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 3rem;
    border-radius: 20px;
}

.buy-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.buy-card > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contract-address {
    background: rgba(15, 39, 68, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

.contract-address label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.address-box code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    word-break: break-all;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6), 0 0 40px rgba(16, 185, 129, 0.4);
    font-weight: 600;
}

.copy-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #06b6d4 100%);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-main);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.disclaimer-col {
    grid-column: span 2;
}

.disclaimer-col h4 {
    color: #fb923c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-col p {
    background: rgba(251, 146, 60, 0.1);
    border-left: 3px solid var(--secondary-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card:nth-child(4) {
        grid-column: span 2;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .hero-image {
        order: -1;
    }

    .floating-coin {
        width: 350px;
        height: 350px;
    }

    .hero-listed {
        margin-top: 3rem;
    }

    .hero-listed-logos {
        gap: 1.5rem;
    }

    .floating-coin i {
        font-size: 6rem;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .tokenomics-chart {
        padding: 1.5rem;
    }
    
    .token-info-card {
        padding: 1.5rem;
    }
    
    .big-number {
        font-size: 1.8rem;
    }
    
    .distribution-item {
        padding: 1.2rem;
    }
    
    .tax-grid {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .disclaimer-col {
        grid-column: span 2;
    }

    .listed-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card:nth-child(4) {
        grid-column: auto;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-buttons {
        display: none;
    }

    .live-price {
        font-size: 1rem;
        padding: 0.8rem;
        background: rgba(6, 182, 212, 0.1);
        border-radius: 8px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        justify-content: center;
    }

    .surf-icon {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .floating-coin {
        width: 280px;
        height: 280px;
    }

    .hero-listed {
        margin-top: 2rem;
    }

    .hero-listed-title {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 6px;
    }

    .buy-card h2 {
        font-size: 2rem;
    }

    .buy-buttons {
        flex-direction: column;
    }

    .hero-listed-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-listed-card {
        width: 100%;
        max-width: 250px;
    }

    .listed-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .listed-logo-card {
        width: 100%;
        max-width: 300px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tokenomics-content {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .tokenomics-chart {
        padding: 0.8rem;
    }
    
    .tokenomics-chart canvas {
        max-height: 250px !important;
    }
    
    .token-info-card {
        padding: 1rem;
    }
    
    .token-info-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .big-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .token-label {
        font-size: 0.8rem;
    }
    
    .distribution-list {
        gap: 1rem;
    }
    
    .distribution-item {
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    .item-header {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }
    
    .item-name {
        font-size: 0.85rem;
    }
    
    .item-percent {
        font-size: 1rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .tax-info {
        margin-top: 0.5rem;
    }
    
    .tax-info h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .tax-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .tax-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .tax-note {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .matrix-rain {
        display: none !important;
    }

    .disclaimer-col {
        grid-column: span 1;
    }

    .disclaimer-col p {
        font-size: 0.85rem !important;
    }

    .footer-social {
        justify-content: center;
    }
}

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

    .floating-coin {
        width: 200px;
        height: 200px;
    }

    .floating-coin i {
        font-size: 4rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}
