/* BusinessBucks Modern CSS */
:root {
    /* Modern Color Palette */
    --primary: #00d4ff;
    --primary-dark: #00b8e6;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --success: #00e676;
    --warning: #ff9800;
    --danger: #f44336;
    
    /* Neutral Colors */
    --dark: #0a0b0d;
    --dark-light: #1a1b1e;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #ff8a50 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--gray-900) 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--gray-100) 100%);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Animations */
    --transition-fast: 150ms ease-in-out;
    --transition: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

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

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: var(--z-modal);
    transition: opacity var(--transition), visibility var(--transition);
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-4);
}

.loading-logo {
    width: 100px;
    height: 100px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.3));
}

.loading-text {
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 27, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-fixed);
    transition: all var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(26, 27, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(0, 212, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: var(--font-size-xl);
    color: var(--white);
    gap: var(--space-3);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.3);
}

.logo-text {
    margin-right: var(--space-2);
}

.logo-symbol {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 900;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: var(--radius-full);
}

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

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

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

.floating-icon {
    position: absolute;
    color: rgba(0, 212, 255, 0.1);
    font-size: var(--font-size-3xl);
    animation: floatAround 20s linear infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 15%; animation-delay: -3s; }
.floating-icon:nth-child(3) { top: 30%; right: 20%; animation-delay: -6s; }
.floating-icon:nth-child(4) { top: 70%; right: 10%; animation-delay: -9s; }
.floating-icon:nth-child(5) { top: 50%; left: 80%; animation-delay: -12s; }
.floating-icon:nth-child(6) { top: 10%; right: 30%; animation-delay: -15s; }

@keyframes floatAround {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Removed hero::before overlay pattern that was causing visual division */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    color: var(--accent);
    font-size: var(--font-size-4xl);
    margin-top: var(--space-2);
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--gray-400);
    margin-bottom: var(--space-8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.coin-animation {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.coin {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 2;
}

.coin-inner {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coin-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

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

@keyframes pulse-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
    z-index: 10;
}

.scroll-arrow {
    color: var(--white);
    font-size: var(--font-size-xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-text {
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0.8;
    white-space: nowrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes bounce-mobile {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Force FontAwesome icons visibility */
.fas, .fab, .far, .fal, .fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Contract Card Icon Fixes */
.contract-card-centered .fas {
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Enhanced About Section */
.about {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, 
        #16213e 0%, 
        #1a1b2e 25%,
        #14203a 50%,
        #16213e 75%,
        #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.about .container {
    position: relative;
    z-index: 10;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    opacity: 0.1;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: var(--radius-full);
    animation-delay: -2s;
}

.shape-3 {
    bottom: 25%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), var(--primary));
    border-radius: 50%;
    animation-delay: -4s;
}

.shape-4 {
    bottom: 15%;
    right: 20%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--warning));
    transform: rotate(45deg);
    animation-delay: -6s;
}

.shape-5 {
    top: 60%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--success));
    border-radius: 50%;
    animation-delay: -8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(10px) rotate(240deg) scale(0.9);
    }
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .section-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.about .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about .highlight {
    color: var(--primary);
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-20);
    align-items: start;
    margin-top: var(--space-16);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.about-text h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.about-text p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.about-text p strong {
    color: var(--primary);
    font-weight: 700;
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
    padding: var(--space-8);
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.stat-highlight {
    text-align: center;
    padding: var(--space-4);
    position: relative;
}

.stat-highlight::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 212, 255, 0.3);
}

.stat-highlight:last-child::after {
    display: none;
}

.stat-highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-highlight-label {
    font-size: var(--font-size-sm);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about .section-title {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.about .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Contract Card Centered Under Stats */
.contract-card-centered {
    max-width: 600px;
    margin: var(--space-8) auto 0 auto;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(20, 32, 58, 0.95) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(0, 212, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 100;
    /* Explicitly remove any inherited blur effects */
    filter: none !important;
    backdrop-filter: blur(10px);
}

.contract-card-centered h4 {
    margin-bottom: var(--space-6);
    color: var(--white) !important;
    font-size: var(--font-size-xl);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contract-card-centered .contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    /* background: rgba(0, 0, 0, 0.5); */
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(0, 212, 255, 0.6);
    position: relative;
    z-index: 20;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.contract-card-centered .contract-address code {
    flex: 1 !important;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace !important;
    font-size: var(--font-size-base) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    word-break: break-all !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    min-height: 20px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.5px;
}

.contract-card-centered .copy-btn {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: var(--white) !important;
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 45px;
    height: 40px;
    position: relative;
    z-index: 30;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 132, 255, 0.4);
    margin-left: 8px;
    text-shadow: none !important;
    position: relative;
    overflow: hidden;
}

.contract-card-centered .copy-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contract-card-centered .copy-btn:hover::before {
    opacity: 1;
    animation: ripple 1s linear;
}

@keyframes ripple {
    from { transform: scale(0.5); opacity: 0.5; }
    to { transform: scale(1.5); opacity: 0; }
}

.contract-card-centered .copy-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #00e1ff, #00a8dd);
}

.contract-card-centered .copy-btn i {
    font-size: 18px !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contract-card-centered .contract-note {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Token Info Card */
.token-info-card-modern {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.token-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.card-icon-wrapper {
    position: relative;
}

.card-logo-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite alternate;
    z-index: 1;
}

.card-title-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.card-title-section p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin: 0;
}

.info-grid-modern {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.info-item-modern {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-item-modern:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.8);
}

.info-icon {
    font-size: var(--font-size-xl);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-weight: 500;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.info-value {
    font-weight: 700;
    color: var(--dark);
    font-size: var(--font-size-base);
}

.highlight-symbol {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: var(--font-size-lg) !important;
}

.solana-brand {
    color: #9945ff;
    font-weight: 800;
}

.token-standard {
    background: linear-gradient(135deg, #4caf50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.card-footer-modern {
    border-top: 2px solid var(--gray-200);
    padding-top: var(--space-6);
}

.security-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.security-badge i {
    font-size: var(--font-size-sm);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--gray-600);
}

.info-value {
    font-weight: 600;
    color: var(--dark);
}

/* Modern Tokenomics Section */
.tokenomics {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #0a0b1a 0%, #16213e 30%, #1a1b2e 70%, #0a0b1a 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 27, 46, 0.3) 50%, rgba(26, 27, 46, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.tokenomics-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
    animation: floatCoin 8s ease-in-out infinite;
}

.floating-coin:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coin:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.floating-coin:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

.floating-coin:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: -6s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.tokenomics .container {
    position: relative;
    z-index: 2;
}

.tokenomics .section-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: var(--space-2) var (--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tokenomics .section-title {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tokenomics .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Overview Stats */
.tokenomics-overview {
    margin: var(--space-16) 0;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var (--space-6);
    margin-bottom: var(--space-16);
}

.overview-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: var (--space-4);
    transition: all var(--transition);
}

.overview-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: var(--font-size-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-1);
}

/* Main Tokenomics Layout */
.tokenomics-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
    margin: var(--space-16) 0;
}

/* Chart Section */
.chart-section {
    position: relative;
}

.chart-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-8);
    text-align: center;
}

.chart-container-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-bottom: var(--space-10);
    z-index: 5;
}

.chart-subtitle {
    text-align: center;
    margin-bottom: var(--space-8);
}

.chart-subtitle p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* Interactive Chart */
.interactive-chart {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-chart {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    z-index: 1;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-segment {
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.donut-segment:hover {
    stroke-width: 25;
    filter: drop-shadow(0 0 15px currentColor);
}

.community-segment { stroke: #00d4ff; }
.liquidity-segment { stroke: #ff6b35; }
.development-segment { stroke: #4caf50; }
.marketing-segment { stroke: #9c27b0; }

.chart-center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.chart-logo-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.total-supply {
    text-align: center;
}

.supply-number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.supply-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Chart Tooltip */
.chart-tooltip {
    position: absolute;
    background: var(--dark);
    color: var(--white);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: all 0.2s ease;
    z-index: 100;
    min-width: 160px;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.chart-tooltip.active {
    opacity: 1;
    transform: translate(-50%, calc(-100% - 10px));
    animation: tooltipPulse 1.5s infinite alternate;
}

.tooltip-label {
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.tooltip-percentage {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--primary);
}

.tooltip-amount {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Tooltip pulse animation */
@keyframes tooltipPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.8), 0 0 5px rgba(0, 212, 255, 0.3);
    }
}

/* Distribution Section */
.distribution-section {
    position: relative;
}

.distribution-modern h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-8);
    text-align: center;
}

.distribution-cards {
    display: flex;
    flex-direction: column;
    gap: var (--space-6);
}

.distribution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var (--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var (--transition);
    position: relative;
    overflow: hidden;
}

.distribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.distribution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.distribution-card:hover::before {
    opacity: 1;
}

.community-card { color: #00d4ff; }
.liquidity-card { color: #ff6b35; }
.development-card { color: #4caf50; }
.marketing-card { color: #9c27b0; }

.card-header {
    display: flex;
    align-items: center;
    gap: var (--space-4);
    margin-bottom: var(--space-4);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--white);
    position: relative;
}

.community-icon { background: linear-gradient(135deg, #00d4ff, #0099cc); }
.liquidity-icon { background: linear-gradient(135deg, #ff6b35, #cc5529); }
.development-icon { background: linear-gradient(135deg, #4caf50, #3d8b40); }
.marketing-icon { background: linear-gradient(135deg, #9c27b0, #7d1f8c); }

.card-info {
    flex: 1;
}

.card-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var (--space-1);
}

.card-percentage {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: currentColor;
}

.card-amount {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.card-description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: currentColor;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Features Section */
.tokenomics-features {
    margin-top: var(--space-20);
    text-align: center;
}

.tokenomics-features h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-12);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.feature-icon-tokenomics {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-icon-tokenomics {
    transform: scale(1.1) rotateY(180deg);
}

.feature-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.key-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-600);
}

.key-features i {
    color: var(--success);
    font-size: var(--font-size-sm);
}

/* Modern Buy Section */
.buy-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, 
        #1a1b2e 0%, 
        #16213e 25%,
        #1c2640 50%,
        #0f1419 75%,
        #16213e 100%);
    position: relative;
    overflow: hidden;
}

.buy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.buy-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 10s ease-in-out infinite;
}

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

.floating-elements-buy {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-wallet {
    position: absolute;
    font-size: 4rem;
    color: rgba(0, 212, 255, 0.4);
    animation: floatWallet 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.floating-wallet:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    color: rgba(0, 212, 255, 0.5);
}

.floating-wallet:nth-child(2) {
    top: 20%;
    right: 8%;
    animation-delay: -1.5s;
    color: rgba(255, 107, 53, 0.5);
}

.floating-wallet:nth-child(3) {
    bottom: 25%;
    left: 10%;
    animation-delay: -3s;
    color: rgba(255, 215, 0, 0.5);
}

.floating-wallet:nth-child(4) {
    bottom: 15%;
    right: 5%;
    animation-delay: -4.5s;
    color: rgba(255, 107, 53, 0.5);
}

.floating-wallet:nth-child(5) {
    top: 50%;
    left: 85%;
    animation-delay: -6s;
    color: rgba(0, 212, 255, 0.5);
}

.floating-wallet:nth-child(6) {
    top: 35%;
    right: 90%;
    animation-delay: -7.5s;
    color: rgba(255, 215, 0, 0.5);
}

/* Additional floating wallet elements */
.floating-wallet:nth-child(7) {
    top: 70%;
    left: 15%;
    animation-delay: -9s;
    color: rgba(138, 43, 226, 0.5);
    font-size: 3.5rem;
}

.floating-wallet:nth-child(8) {
    top: 25%;
    left: 70%;
    animation-delay: -10.5s;
    color: rgba(255, 20, 147, 0.5);
    font-size: 3.8rem;
}

@keyframes floatWallet {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.2);
        opacity: 0.7;
    }
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, rgba(0, 212, 255, 0.2) 40%, transparent 70%);
    filter: blur(30px);
    animation: orbFloat 6s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, rgba(0, 212, 255, 0.3) 40%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, rgba(255, 107, 53, 0.3) 40%, transparent 70%);
    animation-delay: -2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 25%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 215, 0, 0.2) 40%, transparent 70%);
    animation-delay: -4s;
}

/* Additional gradient orb */
.orb-4 {
    width: 180px;
    height: 180px;
    top: 70%;
    left: 60%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, rgba(138, 43, 226, 0.2) 40%, transparent 70%);
    animation-delay: -3s;
}

@keyframes orbFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-20px) translateX(15px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translateY(10px) translateX(-10px) scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-40px) translateX(20px) scale(1.2);
        opacity: 0.9;
    }
}

.buy-section .container {
    position: relative;
    z-index: 2;
}

.buy-section .section-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--secondary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var (--space-4);
}

.buy-section .section-title {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.buy-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.buy-section .highlight {
    color: var(--secondary);
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin: var(--space-16) 0;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin: 0 auto var(--space-6);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.6;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

/* Enhanced Wallet Options */
.wallet-logos {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.wallet-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition);
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.wallet-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity var(--transition);
}

.wallet-option:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.wallet-option:hover::before {
    opacity: 1;
}

.wallet-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: var(--font-size-xl);
    position: relative;
    z-index: 1;
}

.wallet-icon.phantom { 
    background: linear-gradient(135deg, #ab9ff2, #8b7ed8);
    box-shadow: 0 10px 25px rgba(171, 159, 242, 0.4);
}

.wallet-icon.solflare { 
    background: linear-gradient(135deg, #fc8c04, #e07700);
    box-shadow: 0 10px 25px rgba(252, 140, 4, 0.4);
}

.wallet-icon.backpack { 
    background: linear-gradient(135deg, #e33e3f, #c32728);
    box-shadow: 0 10px 25px rgba(227, 62, 63, 0.4);
}

.wallet-option span {
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Exchange Tips */
.exchange-tips {
    margin-top: var (--space-6);
}

.tip {
    background: rgba(0, 0, 0, 0.6);
    color: var (--accent);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-base);
    font-weight: 700;
    border: 2px solid rgba(255, 215, 0, 0.4);
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.tip:hover::before {
    left: 100%;
}

.dex-options {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.dex-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transition: all var (--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dex-tag::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: left 0.5s;
}

.dex-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.dex-tag:hover::before {
    left: 100%;
}

.contract-reminder {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 212, 255, 0.6);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-top: var(--space-6);
    font-size: var(--font-size-base);
    color: var(--primary);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.8);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contract-reminder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: contractGlow 3s ease-in-out infinite;
}

.contract-reminder strong {
    color: var(--primary);
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contract-reminder .contract-address {
    display: inline-block;
    /* background: rgba(0, 0, 0, 0.8); */
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
    color: var(--accent);
    margin-left: var(--space-2);
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

@keyframes contractGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

/* Enhanced Buy Buttons */
.buy-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin: var(--space-20) 0 var(--space-16);
}

.dex-btn {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-2xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.dex-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.dex-btn.jupiter:hover {
    border-color: #00d4ff;
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.dex-btn.raydium:hover {
    border-color: #c200fb;
    box-shadow: 0 25px 50px rgba(194, 0, 251, 0.2);
}

.dex-btn.orca:hover {
    border-color: #ff6b35;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.dex-icon {
    font-size: var(--font-size-2xl);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.dex-content {
    flex: 1;
    text-align: left;
}

.dex-name {
    display: block;
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
}

.dex-desc {
    display: block;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Buy Warning */
.buy-warning {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: var (--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.warning-content {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.warning-content i {
    color: var(--warning);
    font-size: var(--font-size-2xl);
    margin-top: var(--space-1);
    flex-shrink: 0;
}

.warning-content h4 {
    color: var(--warning);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-lg);
}

.warning-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Modern Community Section */
.community {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, 
        #2d3748 0%, 
        #374151 25%,
        #1f2937 50%,
        #2d3748 75%,
        #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.community-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Social Elements */
.floating-elements-community {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-social {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.15;
    animation: floatSocial 10s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.2));
}

.floating-social:nth-child(1) {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
    color: rgba(0, 212, 255, 0.6);
}

.floating-social:nth-child(2) {
    top: 20%;
    right: 12%;
    animation-delay: -1.5s;
    color: rgba(255, 107, 53, 0.5);
}

.floating-social:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: -3s;
    color: rgba(138, 43, 226, 0.5);
}

.floating-social:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: -4.5s;
    color: rgba(255, 215, 0, 0.6);
}

.floating-social:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-delay: -6s;
    color: rgba(255, 20, 147, 0.5);
}

.floating-social:nth-child(6) {
    top: 40%;
    right: 85%;
    animation-delay: -7.5s;
    color: rgba(255, 107, 53, 0.6);
}

.floating-social:nth-child(7) {
    top: 70%;
    left: 25%;
    animation-delay: -9s;
    color: rgba(0, 212, 255, 0.5);
}

.floating-social:nth-child(8) {
    top: 30%;
    left: 60%;
    animation-delay: -10.5s;
    color: rgba(255, 215, 0, 0.5);
}

@keyframes floatSocial {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-25px) rotate(15deg) scale(1.1);
        opacity: 0.25;
    }
    50% {
        transform: translateY(0) rotate(-10deg) scale(0.95);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-15px) rotate(20deg) scale(1.05);
        opacity: 0.3;
    }
}

/* Gradient Orbs */
.gradient-orbs-community {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb-community {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloatCommunity 8s ease-in-out infinite alternate;
}

.orb-community-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: 15%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 70%);
    animation-delay: 0s;
}

.orb-community-2 {
    width: 200px;
    height: 200px;
    bottom: 25%;
    right: 20%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35) 0%, rgba(255, 107, 53, 0.1) 40%, transparent 70%);
    animation-delay: -3s;
}

.orb-community-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 40%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 70%);
    animation-delay: -6s;
}

@keyframes orbFloatCommunity {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(10px) translateX(-15px) scale(0.9);
        opacity: 0.7;
    }
}

/* Network Lines Animation */
.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    height: 1px;
    animation: networkPulse 4s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 10%;
    right: 70%;
    animation-delay: 0s;
}

.line-2 {
    top: 45%;
    left: 60%;
    right: 15%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    animation-delay: -1s;
}

.line-3 {
    bottom: 35%;
    left: 20%;
    right: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation-delay: -2s;
}

.line-4 {
    bottom: 15%;
    left: 40%;
    right: 20%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    animation-delay: -3s;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

.community .container {
    position: relative;
    z-index: 2;
}

.community .section-badge {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #8a2be2;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.community .section-title {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.community .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.community .highlight {
    color: #8a2be2;
    font-weight: 700;
}

/* Community Stats */
.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin: var(--space-16) 0;
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    border-color: rgba(0, 212, 255, 0.6);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card .stat-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
    display: block;
}

/* Individual stat card styling */
.stat-card:nth-child(1) {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-card:nth-child(1):hover {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.25) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.4);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border-color: rgba(255, 215, 0, 0.5);
}

.stat-card:nth-child(2):hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border-color: rgba(255, 107, 53, 0.5);
}

.stat-card:nth-child(3):hover {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.25) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--white) !important;
    font-weight: 600;
    opacity: 0.9;
}

/* Enhanced Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var (--space-8);
    margin: var(--space-16) 0;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-decoration: none;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Platform-specific card backgrounds */
.social-card.twitter {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.15) 0%, rgba(13, 139, 217, 0.08) 100%);
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-card.telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15) 0%, rgba(0, 102, 153, 0.08) 100%);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.social-card.discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(71, 82, 196, 0.08) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.social-card.reddit {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity var(--transition);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

/* Platform-specific hover effects */
.social-card.twitter:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.25) 0%, rgba(13, 139, 217, 0.15) 100%);
    box-shadow: 0 25px 50px rgba(29, 161, 242, 0.3);
    border-color: rgba(29, 161, 242, 0.5);
}

.social-card.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25) 0%, rgba(0, 102, 153, 0.15) 100%);
    box-shadow: 0 25px 50px rgba(0, 136, 204, 0.3);
    border-color: rgba(0, 136, 204, 0.5);
}

.social-card.discord:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(71, 82, 196, 0.15) 100%);
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
}

.social-card.reddit:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 100%);
    box-shadow: 0 25px 50px rgba(255, 69, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.5);
}

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

.social-card.twitter::before {
    background: linear-gradient(90deg, transparent, #1da1f2, transparent);
}

.social-card.telegram::before {
    background: linear-gradient(90deg, transparent, #0088cc, transparent);
}

.social-card.discord::before {
    background: linear-gradient(90deg, transparent, #5865f2, transparent);
}

.social-card.reddit::before {
    background: linear-gradient(90deg, transparent, #ff4500, transparent);
}

.social-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--white);
    flex-shrink: 0;
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
}

.social-card.telegram .social-icon {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
}

.social-card.discord .social-icon {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}

.social-card.reddit .social-icon {
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.social-info {
    flex: 1;
}

.social-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.social-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--white);
    display: inline-block;
}

#community .social-card p,
.community .social-card p {
    color: #ffffff !important;
}

.social-card p {
    color: var(--white) !important;
    margin-bottom: var(--space-4);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

.social-activity {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: auto;
}

.activity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.activity-dot.active {
    background: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.activity-dot.moderate {
    background: #ff9800;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

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

.social-activity span:last-child {
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* Community CTA */
.community-cta {
    text-align: center;
    margin-top: var(--space-20);
    padding: var(--space-12) var(--space-8);
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.25) 0%, 
        rgba(0, 212, 255, 0.2) 35%,
        rgba(255, 107, 53, 0.18) 70%,
        rgba(255, 215, 0, 0.15) 100%);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: var(--radius-2xl);
    opacity: 0.5;
    transition: opacity var(--transition);
}

.community-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.3);
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.35) 0%, 
        rgba(0, 212, 255, 0.3) 35%,
        rgba(255, 107, 53, 0.28) 70%,
        rgba(255, 215, 0, 0.25) 100%);
    border-color: rgba(138, 43, 226, 0.6);
}

.community-cta:hover::before {
    opacity: 0.7;
}

.community-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.community-cta p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

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

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

.social-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.social-card:hover::before {
    transform: translateX(0);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: var(--white);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-card.telegram .social-icon {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-card.discord .social-icon {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
}

.social-card.reddit .social-icon {
    background: linear-gradient(135deg, #ff4500 0%, #cc3700 100%);
}

.social-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.social-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.social-stats {
    background: var(--gray-100);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: var(--font-size-lg);
}

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

.link-group h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var (--space-2);
}

.link-group a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition);
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    margin-bottom: var(--space-2);
}

.disclaimer {
    font-size: var(--font-size-sm);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: var(--z-sticky);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .stats-highlight {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .stat-highlight::after {
        display: none;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-items: center;
    }

    .tokenomics-main {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .chart-section {
        order: -1;
    }
    
    .overview-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--space-4);
    }
    
    .donut-chart {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 27, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow-xl);
        padding: var(--space-8) 0;
        gap: var(--space-6);
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-size: var(--font-size-lg);
        font-weight: 600;
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius);
        transition: all var(--transition);
        margin: 0 var(--space-4);
    }
    
    .nav-menu .nav-link:hover {
        color: var(--primary);
        background: rgba(0, 212, 255, 0.1);
        transform: translateX(10px);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .scroll-indicator {
        bottom: var(--space-4);
        z-index: 15;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        transform: none;
        animation: bounce-mobile 2s infinite;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: fit-content;
    }
    
    .scroll-text {
        font-size: var(--font-size-xs);
        display: block;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .scroll-arrow {
        font-size: var(--font-size-lg);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--space-6);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .coin-animation {
        width: 250px;
        height: 250px;
    }
    
    .about {
        padding: var(--space-16) 0;
    }
    
    .about-grid {
        gap: var(--space-8);
    }
    
    .about-content {
        gap: var(--space-8);
    }
    
    .about-text h3 {
        font-size: var(--font-size-2xl);
    }
    
    .about-text p {
        font-size: var(--font-size-base);
    }
    
    .stats-highlight {
        padding: var(--space-4);
    }
    
    .stat-highlight-number {
        font-size: var(--font-size-2xl);
    }
    
    .token-info-card-modern {
        padding: var(--space-6);
    }
    
    .card-header-modern {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .card-logo-modern {
        width: 50px;
        height: 50px;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .buy-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .tokenomics {
        padding: var(--space-16) 0;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var (--space-3);
    }
    
    .overview-stat {
        padding: var(--space-4);
        gap: var(--space-3);
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
    
    .stat-value {
        font-size: var(--font-size-lg);
    }
    
    .donut-chart {
        width: 200px;
        height: 200px;
    }
    
    .chart-logo-modern {
        width: 40px;
        height: 40px;
    }
    
    .supply-number {
        font-size: var(--font-size-lg);
    }
    
    .chart-container-modern {
        padding: var(--space-6);
    }
    
    .distribution-card {
        padding: var(--space-5);
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .nav-container {
        padding: 0 var(--space-3);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about {
        padding: var(--space-12) 0;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .about-text h3 {
        font-size: var(--font-size-xl);
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats-highlight {
        grid-template-columns: 1fr;
        padding: var(--space-4);
        gap: var(--space-4);
    }
    
    .stat-highlight {
        padding: var(--space-3);
    }
    
    .token-info-card-modern {
        padding: var(--space-4);
    }
    
    .card-header-modern {
        margin-bottom: var(--space-6);
    }
    
    .card-title-section h3 {
        font-size: var(--font-size-lg);
    }
    
    .info-item-modern {
        padding: var(--space-3);
        gap: var(--space-3);
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-base);
    }
    
    .info-details {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-1);
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .overview-stat {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .floating-coins {
        display: none;
    }
    
    .donut-chart {
        width: 180px;
        height: 180px;
    }
    
    .distribution-cards {
        gap: var(--space-4);
    }
    
    .card-header {
        gap: var(--space-3);
    }
    
    .card-info h4 {
        font-size: var(--font-size-sm);
    }
    
    .card-amount {
        font-size: var(--font-size-lg);
    }
}

/* Enhanced Hero Elements */
.hero-features {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--white);
}

.pulse-btn {
    position: relative;
    animation: pulse-button 2s infinite;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pulse-btn:hover .btn-shine {
    left: 100%;
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Enhanced Coin Animation */
.coin-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coin-glow-outer {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-outer 4s ease-in-out infinite alternate;
}

.coin-animation {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.coin-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    position: relative;
    z-index: 1;
}

.coin-reflection {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

.floating-elements {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.floating-dollar {
    position: absolute;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: orbit 15s linear infinite;
}

.floating-dollar:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.floating-dollar:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: -3.75s;
}

.floating-dollar:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: -7.5s;
}

.floating-dollar:nth-child(4) {
    top: 50%;
    left: 0;
    animation-delay: -11.25s;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes pulse-glow-outer {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Price Ticker */
.price-ticker {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-800);
    position: relative;
}

.price-ticker::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(22, 33, 62, 0.3) 50%, rgba(22, 33, 62, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.ticker-container {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: var(--space-12);
    animation: scroll-ticker 50s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-label {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.ticker-value {
    font-weight: 600;
    color: var(--white);
}

.ticker-change.positive {
    color: var (--success);
}

.ticker-change.negative {
    color: var(--danger);
}

@keyframes scroll-ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced About Cards */
.about-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.card-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.3);
}

.contract-card {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var (--radius-2xl);
    border: 1px solid var(--primary);
}

.contract-card h4 {
    margin-bottom: var(--space-4);
    color: var(--primary);
}

.contract-address {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gray-800);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
}

.contract-address code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
    color: var(--accent);
    word-break: break-all;
}

.copy-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: var(--space-2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    transform: scale(1.1);
}

.contract-note {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin: 0;
}

/* Enhanced Tokenomics */
.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.chart-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.amount {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--space-1);
}

/* Enhanced Buy Section */
.wallet-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var (--space-2);
    padding: var(--space-3);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.wallet-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
}

.wallet-icon.phantom { background: #ab9ff2; }
.wallet-icon.solflare { background: #fc8c04; }
.wallet-icon.backpack { background: #e33e3f; }

.exchange-tips {
    margin-top: var(--space-4);
}

.tip {
    background: rgba(255, 204, 0, 0.1);
    color: var(--accent);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
}

.dex-options {
    display: flex;
    gap: var(--space-2);
    margin-top: var (--space-4);
    flex-wrap: wrap;
}

.dex-tag {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.contract-reminder {
    /* background: var(--gray-100); */
    padding: var(--space-2) var(--space-3);
    border-radius: var (--radius-lg);
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
}

.dex-btn {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition);
    min-width: 200px;
}

.dex-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.dex-btn.jupiter:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.dex-btn.raydium:hover {
    border-color: #c200fb;
    color: #c200fb;
}

.dex-btn.orca:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.dex-icon {
    font-size: var(--font-size-2xl);
}

.dex-content {
    flex: 1;
    text-align: left;
}

.dex-name {
    display: block;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.dex-desc {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.buy-warning {
    margin-top: var(--space-12);
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.warning-content {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.warning-content i {
    color: var(--warning);
    font-size: var(--font-size-xl);
    margin-top: var(--space-1);
}

.warning-content h4 {
    color: var(--warning);
    margin-bottom: var(--space-2);
}

/* Enhanced Community */
.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.stat-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var (--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-3);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: var(--space-2);
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

.social-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.social-info h3 {
    margin-bottom: var(--space-1);
}

.social-activity {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.activity-dot.active {
    background: var(--success);
    animation: pulse-dot 2s infinite;
}

.activity-dot.moderate {
    background: var(--warning);
}

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

/* Enhanced Footer */
.brand-section {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.brand-description {
    margin-top: var(--space-4);
    max-width: 400px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition);
}

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

/* Floating particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: rgba(0, 212, 255, 0.8);
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: -3s;
    background: rgba(255, 107, 53, 0.8);
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: -6s;
    background: rgba(255, 215, 0, 0.8);
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: -9s;
    background: rgba(138, 43, 226, 0.8);
}

.particle:nth-child(5) {
    left: 75%;
    animation-delay: -12s;
    background: rgba(255, 20, 147, 0.8);
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: -15s;
    background: rgba(0, 255, 127, 0.8);
}

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

/* Contract address value styling */
.contract-address {
    /* color: var(--accent); */
    color: white;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: var(--font-size-xl);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: var(--space-2);
}

/* Top gradient transitions for smoother blending */

/* HIGH-QUALITY SECTION TRANSITIONS */

/* Hero to About transition */
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(13, 17, 23, 0.05) 10%,
            rgba(13, 17, 23, 0.15) 25%,
            rgba(16, 21, 30, 0.3) 40%,
            rgba(20, 25, 40, 0.5) 55%,
            rgba(22, 33, 62, 0.7) 70%,
            rgba(22, 33, 62, 0.85) 85%,
            rgba(22, 33, 62, 1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* About to Tokenomics transition */
.about::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(22, 33, 62, 0.05) 10%,
            rgba(18, 28, 48, 0.15) 25%,
            rgba(15, 20, 35, 0.3) 40%,
            rgba(12, 15, 25, 0.5) 55%,
            rgba(10, 11, 26, 0.7) 70%,
            rgba(10, 11, 26, 0.85) 85%,
            rgba(10, 11, 26, 1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Tokenomics to Buy transition */
.tokenomics::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 11, 26, 0.05) 10%,
            rgba(15, 18, 32, 0.15) 25%,
            rgba(18, 22, 38, 0.3) 40%,
            rgba(22, 28, 45, 0.5) 55%,
            rgba(26, 33, 52, 0.7) 70%,
            rgba(26, 27, 46, 0.85) 85%,
            rgba(26, 27, 46, 1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Buy to Community transition */
.buy-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(26, 27, 46, 0.05) 10%,
            rgba(28, 30, 50, 0.15) 25%,
            rgba(30, 35, 55, 0.3) 40%,
            rgba(32, 40, 60, 0.5) 55%,
            rgba(35, 45, 65, 0.7) 70%,
            rgba(40, 50, 75, 0.85) 85%,
            rgba(45, 55, 85, 1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Community to Footer transition */
.community::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(to bottom,
            transparent 0%,
            rgba(45, 55, 85, 0.05) 10%,
            rgba(35, 40, 65, 0.15) 25%,
            rgba(25, 30, 50, 0.3) 40%,
            rgba(20, 25, 40, 0.5) 55%,
            rgba(15, 20, 30, 0.7) 70%,
            rgba(13, 17, 23, 0.85) 85%,
            rgba(13, 17, 23, 1) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Enhanced blending with radial gradients for organic feel */
.hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -20%;
    right: -20%;
    height: 400px;
    background: 
        radial-gradient(ellipse 120% 300px at 20% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 100% 250px at 50% 100%, rgba(22, 33, 62, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 120% 300px at 80% 100%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: transitionPulse 8s ease-in-out infinite;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -20%;
    right: -20%;
    height: 400px;
    background: 
        radial-gradient(ellipse 120% 300px at 30% 100%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 100% 250px at 50% 100%, rgba(10, 11, 26, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 120% 300px at 70% 100%, rgba(138, 43, 226, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: transitionPulse 10s ease-in-out infinite reverse;
}

.tokenomics::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -20%;
    right: -20%;
    height: 400px;
    background: 
        radial-gradient(ellipse 120% 300px at 25% 100%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 100% 250px at 50% 100%, rgba(26, 27, 46, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 120% 300px at 75% 100%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: transitionPulse 12s ease-in-out infinite;
}

.buy-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -20%;
    right: -20%;
    height: 400px;
    background: 
        radial-gradient(ellipse 120% 300px at 35% 100%, rgba(138, 43, 226, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 100% 250px at 50% 100%, rgba(45, 55, 85, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 120% 300px at 65% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: transitionPulse 9s ease-in-out infinite reverse;
}

.community::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -20%;
    right: -20%;
    height: 400px;
    background: 
        radial-gradient(ellipse 120% 300px at 40% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 100% 250px at 50% 100%, rgba(13, 17, 23, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 120% 300px at 60% 100%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    animation: transitionPulse 11s ease-in-out infinite;
}

/* Subtle animation for transition elements */
@keyframes transitionPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scaleY(1.05);
    }
}

/* Enhanced section background gradients for better blending */
.hero {
    background: linear-gradient(135deg, 
        var(--dark) 0%, 
        #0d1117 25%,
        var(--dark-light) 50%, 
        #151b28 75%,
        var(--gray-900) 100%);
}

.about {
    background: linear-gradient(135deg, 
        #16213e 0%, 
        #1a1b2e 25%,
        #14203a 50%,
        #16213e 75%,
        #0f1419 100%);
}

.tokenomics {
    background: linear-gradient(135deg, 
        #0a0b1a 0%, 
        #10111c 25%,
        #16213e 50%,
        #12172a 75%,
        #1a1b2e 100%);
}

.buy-section {
    background: linear-gradient(135deg, 
        #1a1b2e 0%, 
        #16213e 25%,
        #1c2640 50%,
        #0f1419 75%,
        #16213e 100%);
}

.community {
    background: linear-gradient(135deg, 
        #2d3748 0%, 
        #374151 25%,
        #1f2937 50%,
        #2d3748 75%,
        #4a5568 100%);
}

/* Mobile navigation improvements for smaller screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--space-3);
    }
    
    .nav-menu {
        padding: var(--space-6) 0;
        gap: var(--space-4);
    }
    
    .nav-menu .nav-link {
        font-size: var(--font-size-base);
        padding: var(--space-2) var(--space-3);
        margin: 0 var(--space-3);
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-symbol {
        font-size: var(--font-size-xs);
        padding: var(--space-1) var(--space-2);
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .scroll-indicator {
        bottom: var(--space-3);
        gap: var(--space-1);
        z-index: 20;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        transform: none;
        animation: bounce-mobile 2s infinite;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: fit-content;
        max-width: none;
    }
    
    .scroll-text {
        font-size: 11px;
        opacity: 0.9;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .scroll-arrow {
        font-size: var(--font-size-base);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}