/* ============================================
   CHARTE GRAPHIQUE - Sobre et Élégante
   ============================================ */

:root {
    /* Couleurs principales - Thème clair avec contrastes */
    --primary-color: #fafbfc;
    --secondary-color: #ffffff;
    --accent-color: #f1f3f5;
    --card-bg: #ffffff;
    --card-border: rgba(108, 92, 231, 0.15);
    --highlight-color: #6c5ce7;
    --highlight-light: #a29bfe;
    --text-primary: #c0c0c0;
    --text-secondary: #d4af37;
    --text-muted: #b8860b;
    
    /* Effet néon doré */
    --neon-gold: #ffd700;
    --neon-gold-glow: rgba(255, 215, 0, 0.8);
    --silver-text: #c0c0c0;
    --silver-glow: rgba(192, 192, 192, 0.6);
    
    /* Couleurs pour les interactions */
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Dégradés */
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(250, 251, 252, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Bordures */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    
    /* Ombres avec plus de profondeur */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1), 0 2px 4px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.12), 0 4px 6px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15), 0 8px 10px rgba(15, 23, 42, 0.12);
    --shadow-colored: 0 8px 24px rgba(108, 92, 231, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gradient-subtle);
    background-image: url('img/full_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--silver-text);
    text-shadow: 
        0 0 5px var(--silver-glow),
        0 0 10px var(--silver-glow),
        0 0 15px var(--neon-gold-glow),
        0 0 20px var(--neon-gold-glow);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fix background attachment on mobile for better performance */
@media (max-width: 768px) {
    body {
        background: var(--gradient-subtle);
        background-image: url('img/mobile_bg.png');
        background-size: contain;
        background-position: right center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}

.app {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Application globale de l'effet néon argenté/doré sur les textes */
h1, h2, h3, h4, h5, h6 {
    color: var(--silver-text);
    text-shadow: 
        0 0 5px var(--silver-glow),
        0 0 10px var(--silver-glow),
        0 0 15px var(--neon-gold-glow),
        0 0 20px var(--neon-gold);
}

p, span, a, label, li {
    color: var(--silver-text);
    text-shadow: 
        0 0 3px var(--silver-glow),
        0 0 6px var(--neon-gold-glow);
}

/* Exceptions pour les éléments qui ont déjà des styles spécifiques */
/* Les styles pour .hero-title, .section-header h2, .logo h1, .footer-brand h3 sont définis individuellement */

/* Exception pour les textes dans les cadres - couleur noire avec néon doré */
.swap-box p,
.swap-box span,
.swap-box label,
.swap-box input,
.swap-box select,
.trading-section p,
.trading-section span,
.trading-section label,
.swap-container p,
.swap-container span,
.swap-container label {
    color: #000000 !important;
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow),
        0 0 15px var(--neon-gold) !important;
}

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

/* ============================================
   TOP LANGUAGE SELECTOR
   ============================================ */

.top-language-selector {
    position: fixed;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 1001;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    box-shadow: 
        0 2px 12px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 20px rgba(108, 92, 231, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.flag-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.lang-option .flag-icon {
    font-size: 1.25rem;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger-menu {
    position: fixed;
    top: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 1001;
    background: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: var(--border-radius-md);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.hamburger-menu:hover {
    background: var(--secondary-color);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    max-height: 100vh;
    z-index: 1000;
    overflow: hidden;
    transition: width 0.3s ease;
}

.sidebar-nav.active {
    width: 100%;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-nav.active .sidebar-overlay {
    opacity: 1;
    pointer-events: all;
}

.sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    max-height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    background-image: url('img/bg_spaceship.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-right: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* Masquer la scrollbar si elle apparaît */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE et Edge */
}

.sidebar-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.sidebar-content > * {
    position: relative;
    z-index: 1;
}

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

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver-text);
    text-shadow: 
        0 0 6px var(--silver-glow),
        0 0 12px var(--silver-glow),
        0 0 18px var(--neon-gold-glow),
        0 0 24px var(--neon-gold);
    margin: 0;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    color: var(--text-primary);
}

.sidebar-nav .nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    margin: 0;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.sidebar-nav .nav-links li {
    width: 100%;
}

.sidebar-nav .nav-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--spacing-xs);
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow),
        0 0 15px var(--neon-gold);
    box-shadow: 
        0 2px 8px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sidebar-nav .nav-links a {
    position: relative;
    overflow: hidden;
}

.sidebar-nav .nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sidebar-nav .nav-links a:hover::after {
    width: 300px;
    height: 300px;
}

.sidebar-nav .nav-links a:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    text-shadow: 
        0 0 8px var(--neon-gold-glow),
        0 0 12px var(--neon-gold-glow),
        0 0 18px var(--neon-gold),
        0 0 24px var(--neon-gold);
    box-shadow: 
        0 4px 16px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateX(6px) scale(1.02);
}

.sidebar-nav .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.sidebar-nav .nav-links a:hover::before {
    height: 60%;
}

.sidebar-twitter {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(108, 92, 231, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.twitter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow),
        0 0 15px var(--neon-gold);
    box-shadow: 
        0 2px 8px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.twitter-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
    text-shadow: 
        0 0 8px var(--neon-gold-glow),
        0 0 12px var(--neon-gold-glow),
        0 0 18px var(--neon-gold),
        0 0 24px var(--neon-gold);
    box-shadow: 
        0 4px 16px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.twitter-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px var(--neon-gold-glow));
}

.twitter-button:hover .twitter-icon {
    filter: drop-shadow(0 0 5px var(--neon-gold-glow)) drop-shadow(0 0 8px var(--neon-gold));
}

.sidebar-wallet {
    padding: var(--spacing-md);
    margin-top: auto;
    border-top: 1px solid rgba(108, 92, 231, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.btn-wallet {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

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

.btn-wallet.connected {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid var(--success-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    margin-top: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero:hover .banner-image {
    transform: scale(1.05);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--silver-text);
    text-shadow: 
        0 0 10px var(--silver-glow),
        0 0 20px var(--silver-glow),
        0 0 30px var(--neon-gold-glow),
        0 0 40px var(--neon-gold-glow),
        0 0 50px var(--neon-gold-glow),
        0 0 60px var(--neon-gold),
        0 0 70px var(--neon-gold);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 10px var(--silver-glow),
            0 0 20px var(--silver-glow),
            0 0 30px var(--neon-gold-glow),
            0 0 40px var(--neon-gold-glow),
            0 0 50px var(--neon-gold-glow);
    }
    to {
        text-shadow: 
            0 0 15px var(--silver-glow),
            0 0 25px var(--silver-glow),
            0 0 35px var(--neon-gold-glow),
            0 0 45px var(--neon-gold-glow),
            0 0 55px var(--neon-gold-glow),
            0 0 65px var(--neon-gold),
            0 0 75px var(--neon-gold),
            0 0 85px var(--neon-gold);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--silver-text);
    text-shadow: 
        0 0 8px var(--silver-glow),
        0 0 16px var(--silver-glow),
        0 0 24px var(--neon-gold-glow),
        0 0 32px var(--neon-gold-glow),
        0 0 40px var(--neon-gold);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-shadow: 
        0 0 4px var(--silver-glow),
        0 0 8px var(--neon-gold-glow);
}

/* ============================================
   TRADING SECTION
   ============================================ */

.trading-section {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    margin: var(--spacing-lg) auto;
    padding: var(--spacing-lg);
    max-width: 650px;
    min-width: 500px;
    box-shadow: 
        0 12px 48px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.trading-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.trading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.wallet-status {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(74, 222, 128, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: var(--border-radius-md);
    box-shadow: 
        0 2px 12px rgba(74, 222, 128, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.wallet-info p {
    color: var(--text-secondary);
    margin: 0;
}

.wallet-info span {
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-all;
}

.swap-container {
    background: transparent;
    padding: var(--spacing-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.swap-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.swap-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.swap-box:hover::after {
    opacity: 1;
}

.swap-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swap-box:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
}

.swap-box:hover::before {
    opacity: 1;
}

.balance-mini {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-align: right;
    margin-top: 0.5rem;
    font-weight: 500;
    text-shadow: 
        0 0 4px var(--neon-gold-glow),
        0 0 8px var(--neon-gold-glow);
    letter-spacing: 0.5px;
}

.swap-input-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
    min-height: 60px;
    width: 100%;
}

.swap-input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    outline: none;
    padding: 1rem 1.5rem;
    text-shadow: 
        0 0 10px var(--neon-gold),
        0 0 15px var(--neon-gold),
        0 0 20px var(--neon-gold);
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    width: 100%;
    font-family: 'Inter', 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.swap-input-group input:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.4),
        0 0 35px rgba(255, 215, 0, 0.25);
    text-shadow: 
        0 0 12px var(--neon-gold),
        0 0 18px var(--neon-gold),
        0 0 24px var(--neon-gold);
    transform: scale(1.02);
}

.swap-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 8px var(--neon-gold-glow);
}

.swap-input-group input[readonly] {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    text-shadow: 
        0 0 8px var(--neon-gold),
        0 0 12px var(--neon-gold),
        0 0 16px var(--neon-gold);
    cursor: default;
}

.token-selector {
    min-width: 140px;
    flex-shrink: 0;
}

.token-selector select {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 
        0 0 8px var(--neon-gold),
        0 0 12px var(--neon-gold);
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffd700' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.token-selector select:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 215, 0, 0.3);
}

.token-selector select:focus {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.swap-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: calc(var(--spacing-xs) * -1) 0;
    position: relative;
    z-index: 2;
}

.swap-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.7) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.swap-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.swap-btn:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 
        0 6px 24px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.swap-btn:hover::before {
    width: 100%;
    height: 100%;
}

.swap-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    box-shadow: 
        0 2px 12px rgba(108, 92, 231, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   BOUTONS
   ============================================ */

.btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-colored), 0 0 30px rgba(108, 92, 231, 0.5), 0 0 50px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover:not(:disabled)::before {
    left: 100%;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--accent-color);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md), 0 0 15px rgba(108, 92, 231, 0.2);
}

.btn-swap {
    width: 100%;
    padding: var(--spacing-sm);
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.btn-swap-icon {
    width: 70px;
    height: 70px;
    padding: 0;
    margin: var(--spacing-md) auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-swap-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.btn-swap-icon:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.3);
}

.btn-swap-icon:hover:not(:disabled)::before {
    opacity: 1;
}

.btn-swap-icon:active:not(:disabled) {
    transform: scale(0.95);
}

.btn-swap-icon:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.swap-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--neon-gold-glow)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-swap-icon:hover:not(:disabled) .swap-icon-img {
    filter: drop-shadow(0 0 12px var(--neon-gold-glow)) 
            drop-shadow(0 0 18px rgba(255, 215, 0, 0.7))
            drop-shadow(0 0 24px rgba(255, 215, 0, 0.5));
    transform: scale(1.1);
}

.btn-large {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

.btn-buy-token {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

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

.btn-buy-token:hover:not(:disabled)::before {
    left: 100%;
}

.btn-buy-token:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(16, 185, 129, 0.6),
        0 0 0 1px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-buy-token:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(16, 185, 129, 0.2);
}

.btn-buy-token:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.buy-token-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-buy-token:hover:not(:disabled) .buy-token-icon {
    transform: scale(1.1) rotate(5deg);
}

.buy-icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-buy-token:hover:not(:disabled) .buy-icon-svg {
    transform: scale(1.15) translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-lg) auto;
    max-width: 900px;
}

.about-content {
    display: grid;
    gap: var(--spacing-md);
}

.about-card {
    background: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

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

.about-card code {
    background: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--highlight-color);
    word-break: break-all;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.video-section {
    margin: var(--spacing-lg) auto;
    max-width: 900px;
    padding: var(--spacing-md);
}

.video-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.video-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(108, 92, 231, 0.2);
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    transition: filter 0.3s ease;
}

.video-container:hover video {
    filter: brightness(1.1);
}

.social-section {
    margin: var(--spacing-lg) auto;
    max-width: 600px;
}

.twitter-feed {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-md);
    min-height: 400px;
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.twitter-feed:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 40px rgba(108, 92, 231, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.twitter-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */

.tokenomics-section {
    margin: var(--spacing-lg) auto;
    max-width: 1200px;
    padding: var(--spacing-xl) 0;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 48px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 30px rgba(108, 92, 231, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--silver-text);
    text-shadow: 
        0 0 6px var(--silver-glow),
        0 0 12px var(--silver-glow),
        0 0 18px var(--neon-gold-glow);
}

/* Distribution Chart */
.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.chart-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.8) 0%, rgba(162, 155, 254, 0.8) 100%);
    border-radius: 6px;
    transition: width 1s ease;
    box-shadow: 
        0 0 10px rgba(108, 92, 231, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.chart-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

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

.chart-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.chart-percent {
    font-weight: 700;
    color: var(--text-secondary);
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow);
}

/* Utility List */
.utility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.utility-list li {
    padding: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
}

.utility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-gold);
    font-weight: 700;
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow);
}

.utility-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-shadow: 
        0 0 3px var(--silver-glow),
        0 0 6px var(--neon-gold-glow);
}

/* Supply Info */
.supply-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.supply-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.supply-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.supply-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.supply-value {
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow);
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap-section {
    margin: var(--spacing-lg) auto;
    max-width: 1000px;
    padding: var(--spacing-xl) 0;
}

.roadmap-timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-lg);
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(108, 92, 231, 0.6) 0%,
        rgba(162, 155, 254, 0.6) 50%,
        rgba(108, 92, 231, 0.3) 100%);
    border-radius: 2px;
    box-shadow: 
        0 0 10px rgba(108, 92, 231, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item.completed {
    opacity: 1;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 40px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    box-shadow: 
        0 0 15px rgba(108, 92, 231, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.timeline-item.upcoming .timeline-marker {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(16, 185, 129, 0.6),
            0 0 40px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 30px rgba(16, 185, 129, 0.8),
            0 0 60px rgba(16, 185, 129, 0.5);
    }
}

.timeline-marker {
    position: absolute;
    left: 19px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 
        0 8px 32px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 
        0 12px 48px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 30px rgba(108, 92, 231, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.timeline-phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.phase-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-shadow: 
        0 0 5px var(--neon-gold-glow),
        0 0 10px var(--neon-gold-glow);
}

.phase-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.timeline-item.completed .phase-status {
    background: rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
    color: var(--text-primary);
}

.timeline-item.active .phase-status {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    color: var(--text-primary);
}

.timeline-item.upcoming .phase-status {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--silver-text);
    text-shadow: 
        0 0 6px var(--silver-glow),
        0 0 12px var(--silver-glow),
        0 0 18px var(--neon-gold-glow);
}

.timeline-content p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.timeline-date {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 3px var(--neon-gold-glow),
        0 0 6px var(--neon-gold-glow);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
    box-shadow: 
        0 -4px 24px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    width: 100%;
    clear: both;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.4;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--silver-text);
    text-shadow: 
        0 0 6px var(--silver-glow),
        0 0 12px var(--silver-glow),
        0 0 18px var(--neon-gold-glow),
        0 0 24px var(--neon-gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    background: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.social-link {
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: var(--text-primary);
    background: var(--secondary-color);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateX(6px) scale(1.05);
    box-shadow: var(--shadow-md), 0 0 15px rgba(108, 92, 231, 0.2);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-about {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
}

.footer-about-text code {
    background: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    word-break: break-all;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--border-radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: var(--spacing-md);
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.wallet-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: width 0.3s ease;
}

.wallet-option {
    position: relative;
    overflow: hidden;
}

.wallet-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.wallet-option:hover::after {
    width: 300px;
    height: 300px;
}

.wallet-option:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateX(6px) scale(1.02);
    box-shadow: var(--shadow-md), 0 0 20px rgba(108, 92, 231, 0.2);
}

.wallet-option:hover::before {
    width: 4px;
}

.wallet-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.wallet-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
}

.wallet-info-text {
    flex: 1;
}

.wallet-info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.wallet-info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.wallet-connected-info {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--border-radius-md);
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-sm);
}

.wallet-connected-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.wallet-address-display {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--secondary-color);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wallet-install-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.wallet-install-hint a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wallet-install-hint a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* ============================================
   LOADING & NOTIFICATIONS
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.loader-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px var(--neon-gold-glow)) drop-shadow(0 0 20px var(--neon-gold-glow));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--neon-gold-glow)) drop-shadow(0 0 20px var(--neon-gold-glow));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--neon-gold-glow)) drop-shadow(0 0 30px var(--neon-gold-glow)) drop-shadow(0 0 40px var(--neon-gold));
    }
}

.loader-text {
    color: var(--silver-text);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 
        0 0 5px var(--silver-glow),
        0 0 10px var(--silver-glow),
        0 0 15px var(--neon-gold-glow);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-sm);
}

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

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
    border: 2px solid var(--card-border);
    backdrop-filter: blur(20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left: 4px solid var(--success-color);
}

.toast.error {
    border-left: 4px solid var(--error-color);
}

.toast.warning {
    border-left: 4px solid var(--warning-color);
}

/* ============================================
   WALLET DESKLET (PERSISTENT WIDGET)
   ============================================ */

.wallet-desklet {
    position: fixed;
    top: 50%;
    right: var(--spacing-md);
    transform: translateY(-50%);
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: var(--border-radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.wallet-desklet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.wallet-desklet.collapsed .desklet-body {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.wallet-desklet.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.wallet-desklet.collapsed {
    transform: translateY(-50%);
}

.desklet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.desklet-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.desklet-header:hover {
    background: rgba(0, 0, 0, 0.4);
}

.desklet-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
}

.desklet-wallet-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
    box-shadow: 
        0 2px 8px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.desklet-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--neon-gold-glow));
}

.desklet-wallet-info {
    flex: 1;
    min-width: 0;
}

.desklet-wallet-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2px 0;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(255, 255, 255, 0.2);
}

.desklet-address {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
    margin: 0;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
}

.desklet-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.desklet-toggle:hover {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.toggle-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.desklet-body {
    max-height: 500px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.desklet-balances {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: var(--border-radius-md);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 2px 8px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.balance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-md);
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 0 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 0;
}

.balance-item:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 4px 16px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(2px);
}

.balance-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.balance-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
}

.desklet-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.desklet-action-btn {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border: 1.5px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-sm);
}

.desklet-action-btn:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(162, 155, 254, 0.15) 100%);
    border-color: rgba(108, 92, 231, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .trading-section {
        max-width: 90%;
        min-width: auto;
    }
}

/* Mobile - Large screens */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.8rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-lg) 0;
    }
    
    /* Navigation */
    .hamburger-menu {
        width: 44px;
        height: 44px;
        top: var(--spacing-sm);
        left: var(--spacing-sm);
    }
    
    .top-language-selector {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .lang-button {
        width: 40px;
        height: 40px;
        padding: var(--spacing-xs);
    }
    
    .flag-icon {
        font-size: 1.25rem;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 160px;
    }
    
    .sidebar-content {
        width: 280px;
        max-width: 85vw;
    }
    
    /* Sections */
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Trading Section */
    .trading-section {
        margin: var(--spacing-md) auto;
        padding: var(--spacing-md);
        max-width: calc(100% - 2rem);
        min-width: auto;
        border-radius: var(--border-radius-lg);
    }
    
    .trading-widget {
        width: 100%;
    }
    
    .btn-buy-token {
        padding: 16px 24px;
        font-size: 16px;
        max-width: 100%;
    }
    
    .buy-token-icon {
        width: 24px;
        height: 24px;
    }
    
    .buy-icon-svg {
        width: 20px;
        height: 20px;
    }
    
    /* Swap Container */
    .swap-container {
        padding: var(--spacing-md);
    }
    
    .swap-box {
        padding: var(--spacing-sm);
    }
    
    .swap-input-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .swap-input-group input {
        font-size: 1.2rem;
        padding: 0.875rem 1.25rem;
    }
    
    .token-selector {
        width: 100%;
        min-width: auto;
    }
    
    .token-selector select {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .swap-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Video Section */
    .video-section {
        margin: var(--spacing-md) auto;
        padding: var(--spacing-sm);
    }
    
    .video-container {
        padding: var(--spacing-sm);
    }
    
    /* Social Section */
    .social-section {
        margin: var(--spacing-md) auto;
        padding: 0 var(--spacing-sm);
    }
    
    .twitter-feed {
        padding: var(--spacing-sm);
        min-height: 300px;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-md) 0;
        margin-top: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.25rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-section {
        align-items: center;
    }
    
    .social-icons {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .footer-about {
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
    }
    
    .footer-about-text {
        font-size: 0.7rem;
        padding: 0 var(--spacing-sm);
    }
    
    .footer-about-text code {
        font-size: 0.65rem;
        word-break: break-all;
        display: block;
        margin-top: 0.25rem;
    }
    
    /* Modal */
    .modal {
        padding: var(--spacing-sm);
    }
    
    .modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: var(--border-radius-lg);
    }
    
    .modal-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
    
    .wallet-option {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .wallet-icon {
        width: 40px;
        height: 40px;
    }
    
    .wallet-info-text h3 {
        font-size: 1rem;
    }
    
    .wallet-info-text p {
        font-size: 0.85rem;
    }
    
    /* Wallet Desklet */
    .wallet-desklet {
        position: fixed;
        top: auto;
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        transform: none;
        max-width: none;
        width: auto;
    }
    
    .desklet-header {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .desklet-wallet-icon {
        width: 36px;
        height: 36px;
    }
    
    .desklet-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .desklet-wallet-info h4 {
        font-size: 0.85rem;
    }
    
    .desklet-address {
        font-size: 0.7rem;
    }
    
    .desklet-body {
        padding: var(--spacing-sm);
        max-height: 400px;
    }
    
    .balance-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .balance-label {
        font-size: 0.85rem;
    }
    
    .balance-value {
        font-size: 0.85rem;
    }
    
    .desklet-action-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
    
    /* Toast */
    .toast {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: none;
        padding: var(--spacing-sm);
    }
    
    /* About Section */
    .about-section {
        margin: var(--spacing-md) auto;
        padding: var(--spacing-md);
    }
    
    .about-card {
        padding: var(--spacing-sm);
    }
    
    .about-card h3 {
        font-size: 1.25rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }
    
    .about-card code {
        font-size: 0.8rem;
    }
    
    /* Tokenomics Section */
    .tokenomics-section {
        padding: var(--spacing-md) 0;
        margin: var(--spacing-md) auto;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .tokenomics-card {
        padding: var(--spacing-md);
    }
    
    .tokenomics-card h3 {
        font-size: 1.25rem;
    }
    
    .chart-label {
        font-size: 0.85rem;
    }
    
    .utility-list li {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .supply-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .supply-label,
    .supply-value {
        font-size: 0.85rem;
    }
    
    /* Roadmap Section */
    .roadmap-section {
        padding: var(--spacing-md) 0;
        margin: var(--spacing-md) auto;
    }
    
    .roadmap-timeline {
        padding: var(--spacing-md) 0;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: var(--spacing-lg);
    }
    
    .timeline-marker {
        left: 9px;
        width: 22px;
        height: 22px;
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
    }
    
    .timeline-phase {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .phase-number {
        font-size: 1rem;
    }
    
    .phase-status {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-date {
        font-size: 0.8rem;
    }
    
    /* Loader */
    .loader-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loader-logo {
        width: 40px;
        height: 40px;
    }
    
    .loader-text {
        font-size: 1rem;
    }
}

/* Mobile - Small screens */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.35rem;
        --spacing-sm: 0.7rem;
        --spacing-md: 1.25rem;
        --spacing-lg: 1.75rem;
        --spacing-xl: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Hero Section */
    .hero {
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Navigation */
    .hamburger-menu {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-menu span {
        width: 20px;
    }
    
    .lang-button {
        width: 36px;
        height: 36px;
    }
    
    .flag-icon {
        font-size: 1.1rem;
    }
    
    .sidebar-content {
        width: 260px;
        max-width: 90vw;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .sidebar-nav .nav-links {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .sidebar-nav .nav-links a {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .twitter-button {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
    
    .btn-wallet {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
    
    /* Sections */
    section {
        padding: var(--spacing-md) 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Trading Section */
    .trading-section {
        margin: var(--spacing-sm) auto;
        padding: var(--spacing-sm);
        border-radius: var(--border-radius-md);
    }
    
    .btn-buy-token {
        padding: 14px 20px;
        font-size: 15px;
        gap: 8px;
    }
    
    .buy-token-icon {
        width: 22px;
        height: 22px;
    }
    
    .buy-icon-svg {
        width: 18px;
        height: 18px;
    }
    
    /* Swap */
    .swap-input-group input {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    
    .token-selector select {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-brand h3 {
        font-size: 1.1rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .social-link {
        padding: var(--spacing-xs);
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-link span {
        font-size: 0.85rem;
    }
    
    .footer-about-text {
        font-size: 0.65rem;
    }
    
    .footer-about-text code {
        font-size: 0.6rem;
    }
    
    /* Wallet Desklet */
    .wallet-desklet {
        bottom: var(--spacing-xs);
        right: var(--spacing-xs);
        left: var(--spacing-xs);
        border-radius: var(--border-radius-lg);
    }
    
    .desklet-wallet-icon {
        width: 32px;
        height: 32px;
    }
    
    .desklet-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .desklet-wallet-info h4 {
        font-size: 0.8rem;
    }
    
    .desklet-address {
        font-size: 0.65rem;
    }
    
    /* Modal */
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-description {
        font-size: 0.9rem;
    }
    
    .wallet-option {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .wallet-icon {
        width: 36px;
        height: 36px;
    }
    
    .wallet-info-text h3 {
        font-size: 0.95rem;
    }
    
    .wallet-info-text p {
        font-size: 0.8rem;
    }
    
    /* Tokenomics Section */
    .tokenomics-card {
        padding: var(--spacing-sm);
    }
    
    .tokenomics-card h3 {
        font-size: 1.1rem;
    }
    
    .chart-bar {
        height: 10px;
    }
    
    .chart-label {
        font-size: 0.8rem;
    }
    
    .utility-list li {
        font-size: 0.85rem;
    }
    
    /* Roadmap Section */
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 6px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* Loader */
    .loader-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loader-logo {
        width: 35px;
        height: 35px;
    }
    
    .loader-text {
        font-size: 0.9rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-buy-token {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .sidebar-content {
        width: 240px;
    }
    
    .trading-section {
        margin: var(--spacing-xs) auto;
        padding: var(--spacing-xs);
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .wallet-desklet {
        top: var(--spacing-sm);
        bottom: auto;
        transform: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-buy-token,
    .lang-button,
    .hamburger-menu,
    .wallet-option,
    .desklet-toggle,
    .sidebar-close,
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .swap-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

