/* ============================================
   Samo Blue Ecosystem - Main Styles
   ============================================ */

:root {
    /* Primary Colors - Blue Theme */
    --primary-blue: #4A90E2;
    --primary-dark: #2E5C8A;
    --primary-light: #6BA6F0;
    --accent-blue: #00A3FF;
    --sky-blue: #87CEEB;

    /* Gradient Colors */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #4A90E2 0%, #00A3FF 100%);
    --gradient-3: linear-gradient(135deg, #2E5C8A 0%, #4A90E2 100%);
    --gradient-hero: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4A90E2 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(74, 144, 226, 0.4);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* X (Twitter) Icon fallback */
.fa-x-twitter::before {
    content: "\e61b";
}

.fab.fa-x-twitter {
    font-family: "Font Awesome 6 Brands";
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--gray-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-image, .footer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.4));
    background: transparent;
}

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

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-2);
    border-radius: var(--radius-full);
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-card {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-card {
    width: 100%;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-light);
    border: 1px solid var(--primary-blue);
    margin-top: var(--spacing-md);
}

.btn-card:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

/* Pulse Animation for CTA Buttons */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    animation-delay: 3s;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: var(--radius-full);
    width: fit-content;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   Token Info Card
   ============================================ */

.token-info {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 163, 255, 0.1) 100%);
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.2);
    animation: gentle-glow 3s ease-in-out infinite;
}

@keyframes gentle-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(74, 144, 226, 0.2);
        border-color: rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 144, 226, 0.4);
        border-color: rgba(74, 144, 226, 0.6);
    }
}

.token-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.token-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

.token-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-light);
}

.token-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.token-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 220px;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-2);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.token-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
}

.token-link-secondary {
    background: transparent;
    border: 1px solid rgba(74, 144, 226, 0.5);
    color: var(--primary-light);
    box-shadow: none;
}

.token-link-secondary:hover {
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.25);
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
    color: var(--gray-300);
}

.token-ca {
    font-size: 0.9rem;
    color: var(--gray-200);
}

.token-ca span {
    font-family: 'Courier New', monospace;
    color: var(--primary-light);
    display: inline-block;
    max-width: 100%;
    word-break: break-all;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-link {
    text-decoration: none !important;
    display: block;
    transition: transform var(--transition-base);
}

.stat-link:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

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

.mascot-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.mascot-circle {
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-circle 3s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.mascot-image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mascot-float 4s ease-in-out infinite;
}

.mascot-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(74, 144, 226, 0.8));
    animation: gentle-pulse 3s ease-in-out infinite;
    background: transparent;
}

@keyframes mascot-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   Section Styling
   ============================================ */

.ecosystem-section,
.ecosystem-map-section,
.community-section,
.roadmap-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.ecosystem-section {
    background: var(--gray-900);
}

.ecosystem-map-section {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0f1623 100%);
}

.community-section {
    background: var(--gray-900);
}

.roadmap-section {
    background: linear-gradient(180deg, var(--gray-900) 0%, #1a1f2e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Ecosystem Cards
   ============================================ */

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
}

.card-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.community-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nft-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.defi-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.partnership-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-300);
    font-size: 0.875rem;
}

.feature-item i {
    color: var(--success);
    font-size: 1rem;
}

/* ============================================
   Ecosystem Map - Modern Version
   ============================================ */

.ecosystem-map-modern {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-2xl) 0;
}

.connection-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connect-line {
    opacity: 0.3;
    transition: all var(--transition-base);
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

.ecosystem-nodes {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.eco-node {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.eco-node:hover {
    transform: scale(1.15) translateY(-5px);
    background: rgba(74, 144, 226, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 40px rgba(74, 144, 226, 0.5);
    z-index: 10;
}

.node-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

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

.node-content span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.node-tooltip {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.eco-node:hover .node-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.node-tooltip strong {
    display: block;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.node-tooltip p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   Community / Social Cards
   ============================================ */

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.twitter-card:hover { border-color: #1DA1F2; }
.discord-card:hover { border-color: #5865F2; }
.telegram-card:hover { border-color: #0088cc; }
.tiktok-card:hover { border-color: #000000; }

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.social-count {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.social-description {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.social-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Roadmap Timeline
   ============================================ */

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), rgba(74, 144, 226, 0.2));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gray-900);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    grid-column: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--gradient-2);
    border-color: var(--success);
}

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

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.timeline-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.timeline-content li {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-900);
}

.cta-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-large-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.6));
    background: transparent;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #0a0e1a;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.contract-address {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xs);
}

.contract-address code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--primary-light);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.copy-btn:hover {
    color: var(--white);
}

.footer-note {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   Team Section
   ============================================ */

.team-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(42, 67, 101, 0.3), rgba(26, 42, 64, 0.5));
    position: relative;
}

.team-floating-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.6));
    animation: team-logo-float 3s ease-in-out infinite;
}

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

.team-content {
    display: grid;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.team-social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.team-social-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.team-social-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.team-social-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.team-social-card p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.team-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    color: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #1F2937;
    color: #FFFFFF;
    padding: 0.5rem;
}

.form-group select option:checked {
    background: linear-gradient(135deg, #4A90E2, #2E5C8A);
    color: #FFFFFF;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: var(--spacing-xl);
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--spacing-md);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.form-success p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* ============================================
   Hamburger Menu
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Responsive Design
   ============================================ */

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

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

    .ecosystem-map-modern {
        height: 560px;
    }

    .eco-node {
        width: 120px;
        height: 120px;
    }

    .node-content i {
        font-size: 2.1rem;
    }

    .node-content span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* --- Hamburger & Mobile Nav --- */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-xl);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta.open {
        display: block;
        position: fixed;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    /* --- Hero --- */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto;
    }

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

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

    .token-info {
        padding: var(--spacing-md);
    }

    .token-links {
        flex-direction: column;
    }

    .token-link {
        width: 100%;
    }

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

    .mascot-image {
        width: 160px;
        height: 160px;
    }

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

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

    /* --- Ecosystem Map (stacked on mobile) --- */
    .ecosystem-map-modern {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: var(--spacing-md) 0;
    }

    .connection-lines {
        display: none;
    }

    .ecosystem-nodes {
        position: relative;
        inset: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
        width: 100%;
    }

    .eco-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 110px;
        height: 110px;
    }

    .eco-node:hover {
        transform: scale(1.1) !important;
    }

    .node-content i {
        font-size: 1.8rem;
    }

    .node-content span {
        font-size: 0.75rem;
    }

    .node-tooltip {
        display: none;
    }

    /* --- Roadmap --- */
    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: var(--spacing-md);
    }

    .timeline-marker {
        grid-column: 1;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-content {
        grid-column: 2;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    /* --- CTA --- */
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto var(--spacing-lg);
    }

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

    .mascot-large-image {
        width: 130px;
        height: 130px;
    }

    /* --- Team --- */
    .team-socials {
        grid-template-columns: 1fr;
    }

    .team-form-container {
        padding: var(--spacing-md);
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .footer-links {
        align-items: center;
    }

    .contract-address {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .contract-address code {
        word-break: break-all;
        white-space: normal;
        font-size: 0.7rem;
    }

    /* --- Community Cards --- */
    .community-grid {
        grid-template-columns: 1fr;
    }

    /* Logo text in nav - shorter on mobile */
    .logo-text {
        font-size: 1rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

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

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

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

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .token-link {
        font-size: 0.95rem;
    }

    .ecosystem-card {
        padding: var(--spacing-lg);
    }

    .social-card {
        padding: var(--spacing-lg);
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .social-count {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: var(--spacing-md);
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .team-social-card {
        padding: var(--spacing-md);
    }

    .team-social-card i {
        font-size: 2.5rem;
    }

    .team-floating-logo {
        width: 35px;
        height: 35px;
    }

    .eco-node {
        width: 90px;
        height: 90px;
    }

    .node-content i {
        font-size: 1.5rem;
    }

    .node-content span {
        font-size: 0.7rem;
    }

    .toast-notification {
        left: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
        max-width: none !important;
    }
}

/* ============================================
   Large Desktop Enhancements (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

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

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

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

    .mascot-image {
        width: 320px;
        height: 320px;
    }

    .ecosystem-map-modern {
        height: 800px;
    }
}
