/* DogeOS Frontend - Main Styles */
/* DogeOS Clean Theme */

:root {
    /* DogeOS / Dogecoin Brand Colors */
    --doge-gold: #FFD700;
    --doge-orange: #FFA500;
    --doge-dark-orange: #FF8C00;
    --doge-light-gold: #FFED4E;

    /* Backgrounds */
    --bg-dark: #0A0A0F;
    --bg-card: #16161F;
    --bg-hover: #1F1F2E;
    --border-color: #2A2A3C;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8C8;

    /* Semantic Colors */
    --neon-green: #00ff41;
    --neon-red: #ff0040;

    /* Fonts */
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Gradients */
    --gradient-doge: linear-gradient(135deg, #ffcc00 0%, #ff9500 50%, #ffed4e 100%);
    --gradient-doge-intense: linear-gradient(135deg, #ffd700 0%, #ff8800 25%, #ffaa00 50%, #ffe617 75%, #ffff00 100%);
    --gradient-chrome: linear-gradient(135deg, #fff5cc 0%, #ffcc00 15%, #997300 30%, #ffcc00 45%, #fff5cc 60%, #ffcc00 75%, #997300 90%, #ffcc00 100%);

    /* Spacing (4px grid) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

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

/* Cyber Grid Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 204, 0, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.018) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Radial Glow Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 204, 0, 0.09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: pulse-bg 4s ease-in-out infinite;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

code, .mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphic base styles */
.glass-card {
    background: rgba(31, 19, 9, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--doge-gold-400);
    border-radius: 20px;
    padding: var(--space-6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        0 8px 32px rgba(0, 0, 0, 0.6);
}

.glass-card:hover {
    border-color: var(--doge-orange-400);
    box-shadow:
        0 0 30px var(--glow-gold-lg),
        0 0 50px var(--glow-orange-md),
        0 12px 48px rgba(0, 0, 0, 0.7);
    transform: translateY(-6px);
}

/* Utility classes */
.text-gold {
    color: var(--doge-gold-400);
}

.text-green {
    color: var(--neon-green);
}

.text-red {
    color: var(--neon-red);
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--doge-gold-400);
    animation: spin 1s ease-in-out infinite;
}

/* ============================================ */
/* KEYFRAME ANIMATIONS */
/* ============================================ */

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

@keyframes pulse-bg {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.8; }
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.18;
    }
    33% {
        transform: translate(100px, -50px) scale(1.1);
        opacity: 0.18;
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
        opacity: 0.24;
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes flicker-in {
    0%, 20%, 40%, 60%, 80% {
        opacity: 0;
        box-shadow: none;
    }
    10%, 30%, 50%, 70%, 90% {
        opacity: 1;
        box-shadow:
            0 0 15px var(--glow-gold-md),
            0 0 30px var(--glow-gold-sm);
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-glow {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scan-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes scan-vertical {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes neon-pulse {
    0%, 100% {
        opacity: 1;
        text-shadow:
            0 0 10px var(--glow-gold-md),
            0 0 20px var(--glow-gold-sm);
    }
    50% {
        opacity: 0.85;
        text-shadow:
            0 0 20px var(--glow-gold-lg),
            0 0 40px var(--glow-gold-md),
            0 0 60px var(--glow-gold-sm);
    }
}

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

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.36));
    }
    50% {
        transform: translateY(-8px);
        filter: drop-shadow(0 10px 30px rgba(255, 204, 0, 0.8));
    }
}

/* ============================================ */
/* FLOATING ORB BACKGROUNDS */
/* ============================================ */
.orb-background {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.24;
    pointer-events: none;
    z-index: 3;
}

.orb-gold {
    background: radial-gradient(circle, var(--doge-gold-400) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-orange {
    background: radial-gradient(circle, var(--doge-orange-400) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: float-orb 25s ease-in-out infinite reverse;
}

.orb-yellow {
    background: radial-gradient(circle, var(--doge-yellow-400) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb 30s ease-in-out infinite;
    animation-delay: 5s;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Button base */
.btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--doge-gold-400);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 184, 0, 0.2));
    color: var(--doge-gold-400);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background: var(--doge-gold-400);
    color: #000;
    box-shadow: 0 0 20px var(--glow-gold-lg);
    transform: translateY(-2px);
}

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

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

/* ============================================ */
/* ENHANCED NAVIGATION */
/* ============================================ */

.navbar {
    background: rgba(10, 5, 6, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 2px solid var(--doge-gold-400);
    box-shadow:
        0 0 20px var(--glow-gold-md),
        0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.5));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-doge-intense);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.36));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}

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

.nav-link {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--doge-gold-400);
    box-shadow: 0 0 10px var(--glow-gold-md);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--doge-gold-400);
    background: rgba(255, 204, 0, 0.06);
}

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

.nav-link.active {
    color: var(--doge-gold-400);
    background: rgba(255, 204, 0, 0.09);
    border: 1px solid var(--doge-gold-400);
    box-shadow:
        0 0 15px var(--glow-gold-sm),
        inset 0 0 10px var(--glow-gold-sm);
}

.btn-connect {
    background: var(--gradient-doge);
    color: var(--bg-black);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        0 4px 20px rgba(255, 204, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-connect:hover::before {
    width: 300px;
    height: 300px;
}

.btn-connect:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 40px var(--glow-gold-lg),
        0 0 60px var(--glow-orange-md),
        0 8px 32px rgba(255, 204, 0, 0.36),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

/* btn-create-token moved to line 1691 for proper navbar styling */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.25rem;
    }
}

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

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 204, 0, 0.12);
    border: 2px solid var(--doge-gold-400);
    border-radius: 100px;
    margin-bottom: 32px;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 10px var(--glow-gold-sm);
    animation: flicker-in 1s ease-in, float-glow 3s ease-in-out infinite;
}

.badge-text {
    color: var(--doge-gold-400);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px var(--glow-gold-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;

    background: var(--gradient-doge-intense);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.24))
            drop-shadow(0 0 30px rgba(255, 149, 0, 0.2));

    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite, fade-in-glow 1.2s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
    text-shadow:
        0 0 10px rgba(255, 204, 0, 0.18),
        0 0 20px rgba(255, 204, 0, 0.12);
    animation: fade-in-glow 1.2s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fade-in-glow 1.2s ease-out 0.4s backwards;
}

.btn-mega {
    background: var(--gradient-chrome);
    color: var(--bg-black);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    padding: 24px 64px;
    border: 4px solid var(--doge-gold-600);
    border-radius: 16px;
    box-shadow:
        0 0 40px var(--glow-gold-lg),
        0 0 80px var(--glow-orange-md),
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-mega:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 60px rgba(255, 204, 0, 1),
        0 0 100px var(--glow-orange-lg),
        0 16px 64px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.btn-outlined {
    background: transparent;
    color: var(--doge-gold-400);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 48px;
    border: 3px solid var(--doge-gold-400);
    border-radius: 12px;
    box-shadow:
        0 0 15px var(--glow-gold-sm),
        inset 0 0 10px var(--glow-gold-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--glow-gold-md);
}

.btn-outlined:hover {
    background: rgba(255, 204, 0, 0.06);
    border-color: var(--doge-orange-400);
    color: var(--doge-orange-400);
    box-shadow:
        0 0 25px var(--glow-orange-md),
        0 0 40px var(--glow-gold-sm),
        inset 0 0 15px var(--glow-orange-md);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    padding: 32px 48px;
    background: rgba(31, 19, 9, 0.9);
    backdrop-filter: blur(30px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 24px;
    box-shadow:
        0 0 30px var(--glow-gold-lg),
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 204, 0, 0.12);
    animation: fade-in-glow 1.2s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--doge-gold-400), transparent);
    animation: scan-line 3s linear infinite;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--doge-gold-400);
    font-weight: 700;
    text-shadow:
        0 0 10px var(--glow-gold-md),
        0 0 20px var(--glow-gold-sm);
    animation: neon-pulse 2s ease-in-out infinite;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--doge-gold-400), transparent);
    box-shadow: 0 0 10px var(--glow-gold-md);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 24px;
        padding: 24px 32px;
    }

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

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

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

    .btn-mega {
        font-size: 1rem;
        padding: 18px 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
    }

    .stat-divider {
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--doge-gold-400), transparent);
    }
}

/* ============================================ */
/* ENHANCED FILTER BAR */
/* ============================================ */

.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    background: rgba(31, 19, 9, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 16px;
    padding: 8px;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 10px var(--glow-gold-sm);
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-medium);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-tab:hover {
    color: var(--text-white);
    background: rgba(255, 204, 0, 0.06);
    box-shadow: 0 0 10px var(--glow-gold-sm);
}

.filter-tab.active {
    background: var(--gradient-doge);
    color: var(--bg-black);
    font-weight: 800;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        0 4px 16px rgba(255, 204, 0, 0.24);
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.select {
    padding: 12px 40px 12px 20px;
    background: rgba(31, 19, 9, 0.8);
    border: 2px solid var(--doge-gold-400);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px var(--glow-gold-sm),
        inset 0 0 10px rgba(255, 204, 0, 0.03);
}

.select:hover {
    background: rgba(31, 19, 9, 0.95);
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 15px rgba(255, 204, 0, 0.06);
}

/* Filter Section Labels */
.filter-label {
    display: block;
    color: var(--doge-gold-400);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Search Input */
.search-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(31, 19, 9, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px var(--glow-gold-sm),
        inset 0 0 10px rgba(255, 204, 0, 0.05);
}

.search-input::placeholder {
    color: rgba(255, 204, 0, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: var(--doge-gold-500);
    box-shadow:
        0 0 25px var(--glow-gold-md),
        inset 0 0 15px rgba(255, 204, 0, 0.08);
}

/* Sort Select */
.sort-select {
    width: 100%;
    min-width: 200px;
    padding: 14px 20px;
    background: rgba(31, 19, 9, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 12px;
    color: var(--doge-gold-400);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px var(--glow-gold-sm),
        inset 0 0 10px rgba(255, 204, 0, 0.03);
}

.sort-select:hover {
    background: rgba(31, 19, 9, 0.95);
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 15px rgba(255, 204, 0, 0.06);
}

.sort-select:focus {
    outline: none;
    border-color: var(--doge-gold-500);
}

@media (max-width: 768px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .sort-select {
        min-width: 100%;
    }
}

/* ============================================ */
/* TOKEN CARD ENHANCED STYLES */
/* ============================================ */

/* Corner Glow */
.token-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, var(--glow-gold-lg) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Scan Line Animation */
.token-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--doge-gold-400), transparent);
    box-shadow: 0 0 10px var(--glow-gold-md);
    animation: scan-vertical 3s linear infinite;
    z-index: 1;
}

.token-card {
    /* Inherits from .glass-card but can be customized */
}

.token-image {
    border: 3px solid var(--doge-gold-400);
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 10px var(--glow-gold-sm);
    position: relative;
}

.token-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
    border-radius: inherit;
}

.token-stat-row {
    background: rgba(255, 204, 0, 0.048);
    border: 1px solid var(--doge-gold-400);
    border-radius: 10px;
    box-shadow:
        0 0 10px var(--glow-gold-sm),
        inset 0 0 10px rgba(255, 204, 0, 0.03);
}

/* Progress Bar with Shimmer */
.progress-bar-container {
    width: 100%;
    height: 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--doge-gold-400);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 10px var(--glow-gold-sm),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-doge);
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer-sweep 2s infinite;
}

.token-change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
}

.token-change.positive {
    background: rgba(0, 255, 65, 0.09);
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow:
        0 0 15px var(--neon-green-glow),
        inset 0 0 10px rgba(0, 255, 65, 0.06);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.token-change.negative {
    background: rgba(255, 0, 64, 0.09);
    color: var(--neon-red);
    border: 2px solid var(--neon-red);
    box-shadow:
        0 0 15px rgba(255, 0, 64, 0.36),
        inset 0 0 10px rgba(255, 0, 64, 0.06);
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.36);
}

/* Token Badges */
.token-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 15px rgba(78, 205, 196, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-graduating {
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 15px var(--glow-gold-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 0 15px var(--glow-gold-md),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow:
            0 0 25px var(--glow-gold-lg),
            0 0 35px var(--glow-orange-md),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

/* Stat Value Colors */
.stat-positive {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.stat-negative {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.36);
}
}

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

.footer {
    background: rgba(10, 5, 6, 0.95);
    backdrop-filter: blur(30px);
    border-top: 2px solid var(--doge-gold-400);
    margin-top: 80px;
    padding: 60px 0 24px;
    box-shadow:
        0 -4px 30px var(--glow-gold-sm),
        inset 0 1px 0 rgba(255, 204, 0, 0.3);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 900;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.footer-logo span {
    background: var(--gradient-doge-intense);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.4));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(31, 19, 9, 0.6);
    border: 1px solid var(--doge-gold-400);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--doge-gold-400);
    width: fit-content;
    box-shadow: 0 0 10px var(--glow-gold-sm);
}

.footer-heading {
    color: var(--doge-gold-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--doge-gold-400);
    box-shadow: 0 0 8px var(--glow-gold-md);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--doge-gold-400);
    text-shadow: 0 0 10px var(--glow-gold-sm);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(31, 19, 9, 0.6);
    border: 2px solid var(--doge-gold-400);
    border-radius: 50%;
    color: var(--doge-gold-400);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-gold-sm);
}

.social-link:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: var(--doge-gold-500);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 25px var(--glow-gold-md),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link-sm {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link-sm:hover {
    color: var(--doge-gold-400);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Animated Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(31, 19, 9, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 100px;
    margin-bottom: 32px;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 10px var(--glow-gold-sm);
    animation: flicker-in 1s ease-out, float-glow 3s ease-in-out infinite 1s;
}

.badge-text {
    color: var(--doge-gold-400);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow:
        0 0 10px var(--glow-gold-md),
        0 0 20px var(--glow-gold-sm);
}

/* Mega Title with Animated Gradient */
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 24px 0;
    background: var(--gradient-doge-intense);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite, fade-in-glow 1.2s ease-out;
    filter: drop-shadow(0 4px 20px rgba(255, 204, 0, 0.4))
            drop-shadow(0 8px 40px rgba(255, 149, 0, 0.3));
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 48px 0;
    max-width: 700px;
    text-shadow:
        0 0 10px var(--glow-gold-sm),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fade-in-glow 1.2s ease-out 0.2s backwards;
}

/* CTA Buttons Container */
.hero-cta {
    display: flex;
    gap: 24px;
    margin-bottom: 64px;
    animation: fade-in-glow 1.2s ease-out 0.4s backwards;
}

/* Chrome Mega Button */
.btn-mega {
    padding: 24px 64px;
    font-size: 1.25rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--bg-black);
    background: var(--gradient-chrome);
    background-size: 200% auto;
    border: 4px solid var(--doge-gold-600);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 0 40px var(--glow-gold-lg),
        0 0 80px var(--glow-orange-md),
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-mega::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 ease;
}

.btn-mega:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow:
        0 0 60px var(--glow-gold-lg),
        0 0 100px var(--glow-orange-md),
        0 16px 56px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    background-position: right center;
}

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

.btn-mega:active {
    transform: scale(1.02) translateY(-2px);
}

/* Outlined Button */
.btn-outlined {
    padding: 24px 64px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--doge-gold-400);
    background: transparent;
    border: 3px solid var(--doge-gold-400);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 0 10px rgba(255, 204, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.btn-outlined:hover {
    color: var(--doge-orange-500);
    border-color: var(--doge-orange-500);
    transform: scale(1.05) translateY(-4px);
    box-shadow:
        0 0 30px rgba(255, 149, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 149, 0, 0.15);
}

.btn-outlined:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outlined:active {
    transform: scale(1.02) translateY(-2px);
}

/* Stats Card */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 32px 48px;
    background: rgba(31, 19, 9, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid var(--doge-gold-400);
    border-radius: 20px;
    box-shadow:
        0 0 30px var(--glow-gold-md),
        inset 0 0 20px var(--glow-gold-sm),
        0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fade-in-glow 1.2s ease-out 0.6s backwards;
    position: relative;
}

/* Scanning Line Animation on Top */
.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--doge-gold-400),
        transparent
    );
    animation: scan-line 2s linear infinite;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--doge-gold-400);
    text-shadow:
        0 0 10px var(--glow-gold-md),
        0 0 20px var(--glow-gold-sm);
    animation: neon-pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--doge-gold-400),
        transparent
    );
    box-shadow: 0 0 10px var(--glow-gold-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .btn-mega,
    .btn-outlined {
        padding: 20px 48px;
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 32px;
        padding: 24px 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

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

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

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

    .btn-mega,
    .btn-outlined {
        width: 100%;
        padding: 18px 32px;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .stat-divider {
        width: 100px;
        height: 2px;
    }
}

/* ============================================ */
/* ENHANCED BUTTON HOVER EFFECTS */
/* ============================================ */

/* Create Token Button (Navbar) */
.btn-create-token {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--bg-black);
    background: var(--gradient-doge);
    background-size: 200% auto;
    border: 2px solid var(--doge-gold-600);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px var(--glow-gold-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-create-token::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.btn-create-token:hover {
    transform: scale(1.05);
    background-position: right center;
    box-shadow:
        0 0 30px var(--glow-gold-lg),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-create-token:hover::after {
    width: 300px;
    height: 300px;
}

.btn-create-token:active {
    transform: scale(1.02);
}

/* Generic Button Enhancements */
button:not(.filter-tab):not(.btn-mega):not(.btn-outlined),
.button {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:not(.filter-tab):not(.btn-mega):not(.btn-outlined):hover,
.button:hover {
    transform: translateY(-2px);
}

button:not(.filter-tab):not(.btn-mega):not(.btn-outlined):active,
.button:active {
    transform: translateY(0);
}

/* Fix A tag styling inside wrapper divs */
.logo a,
.nav-link a,
.btn-create-token a,
.footer-link a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo a:hover,
.nav-link a:hover,
.btn-create-token a:hover,
.footer-link a:hover {
    color: inherit;
}

/* ============================================ */
/* LOADING & SKELETON COMPONENTS */
/* ============================================ */

/* Loading Spinner */
.loading-spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--doge-gold-400);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: var(--doge-orange-400);
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    border-top-color: var(--doge-yellow-400);
    animation-delay: -1s;
}

.spinner-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.loading-text {
    color: var(--doge-gold-400);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-display);
}

/* Skeleton Loaders */
.skeleton {
    pointer-events: none;
}

.skeleton-image,
.skeleton-text {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 204, 0, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-image {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 204, 0, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading Dots */
.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--doge-gold-400);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Inline Loader */
.inline-loader {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.inline-loader-text {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

/* Error Card Animations */
.error-card {
    animation: fadeInUp 0.4s ease-out;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Token Card Skeleton specific styles */
.token-card.skeleton {
    opacity: 0.7;
}

/* Hover effects disabled on skeletons */
.skeleton:hover {
    transform: none !important;
}

/* Phase 4: WebSocket Real-Time Updates - Flash Animation */
@keyframes flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.flash {
    animation: flash 0.5s ease-in-out;
}

/* ============================================================================
   NEW LANDING PAGE STYLES - Clean DogeOS Theme
   ============================================================================ */

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.hero-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.6));
    animation: float-glow 3s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.6));
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.8));
    }
}

.hero .doge-motto {
    font-size: 1.1rem;
    color: var(--doge-light-gold);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    color: var(--bg-dark);
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--doge-gold);
    padding: 1.25rem 3rem;
    border: 2px solid var(--doge-gold);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--doge-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--doge-gold);
}

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

/* Sort Controls */
.sort-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.sort-label {
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sort-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--doge-gold);
    color: var(--doge-gold);
}

.sort-btn.active {
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    border-color: transparent;
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow:
        0 0 15px var(--glow-gold-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.tab {
    background: transparent;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab.active {
    color: var(--doge-gold);
    border-bottom-color: var(--doge-gold);
}

.tab:hover {
    color: var(--doge-gold);
}

/* Token Grid */
.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Token Card - New Clean Design */
.token-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--doge-gold), var(--doge-orange));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--doge-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.token-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.token-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.token-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

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

.token-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.token-stats {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-weight: 700;
    color: var(--doge-gold);
    font-size: 1.1rem;
}

.stat-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.progress-bar {
    background: var(--border-color);
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, var(--doge-gold), var(--doge-orange));
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.token-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-buy {
    flex: 1;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    color: var(--bg-dark);
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-chart {
    background: var(--bg-hover);
    color: var(--doge-gold);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--doge-gold);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-chart:hover {
    background: var(--doge-gold);
    color: var(--bg-dark);
}

/* Featured Token Section */
.featured-section {
    background: var(--bg-card);
    border: 2px solid var(--doge-gold);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* New Token Badge */
.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Creator Info */
.creator-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.creator-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

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

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 0.75rem 1rem;
    }
}

/* Body & Container Updates */
body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* ============================================================================
   WALLET MODAL STYLES
   ============================================================================ */

.wallet-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important; /* Very high to escape any stacking context */
    animation: fadeIn 0.2s ease-out;
    overflow: hidden !important; /* No scrollbar */
    padding: 20px;
    isolation: isolate; /* Create new stacking context */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wallet-modal,
.wallet-dropdown {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 2px solid var(--doge-gold);
    border-radius: 16px;
    box-shadow:
        0 0 40px var(--glow-gold-md),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 204, 0, 0.2);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wallet-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.wallet-modal-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wallet-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.wallet-modal-close:hover {
    background: rgba(255, 204, 0, 0.1);
    color: var(--doge-gold);
    transform: rotate(90deg);
}

.wallet-modal-body {
    padding: 24px;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 204, 0, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.wallet-option:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: var(--doge-gold);
    box-shadow: 0 0 20px var(--glow-gold-md);
    transform: translateY(-2px);
}

.wallet-option-not-installed {
    opacity: 0.85;
}

.wallet-option-not-installed:hover {
    background: rgba(255, 149, 0, 0.1);
    border-color: var(--doge-orange);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.4);
}

.wallet-option img {
    flex-shrink: 0;
}

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

.wallet-option-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.wallet-option-description {
    font-size: 0.9rem;
    color: #fff;
}

.wallet-option-status {
    padding: 6px 12px;
    background: var(--doge-gold);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
}

.wallet-option-status.installed {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.wallet-modal-empty {
    padding: 48px;
    text-align: center;
    color: var(--text-muted);
}

/* Wallet Button Connected State */
.wallet-button-connected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 2px solid var(--doge-gold);
    border-radius: 12px;
    box-shadow: 0 0 20px var(--glow-gold-md);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wallet-balance {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--doge-gold);
    text-shadow: 0 0 10px var(--glow-gold-md);
}

.wallet-address {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wallet-disconnect-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.wallet-disconnect-btn:hover {
    background: rgba(255, 0, 64, 0.2);
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.4);
}

/* Wallet Error Display */
.wallet-error-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.wallet-error-message {
    padding: 12px 16px;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid var(--neon-red);
    border-radius: 8px;
    color: var(--neon-red);
    font-size: 0.9rem;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.2);
    animation: fadeIn 0.3s ease-out;
}

/* MetaMask Network Indicator */
.wallet-network {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--doge-gold-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.network-indicator {
    font-size: 0.6rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* MetaMask Install Prompt */
.wallet-install-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    gap: 16px;
}

.wallet-install-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.wallet-install-prompt h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--doge-gold-400);
    margin: 0;
}

.wallet-install-prompt p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.wallet-install-subtext {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    max-width: 400px;
}

.wallet-install-button {
    margin-top: 8px;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.wallet-install-footer {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    margin-top: 8px !important;
}

/* Wallet Option Icon */
.wallet-option-icon {
    font-size: 2.5rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

/* Update wallet balance for 4 decimal places */
.wallet-balance {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--doge-gold-400);
    letter-spacing: 0.5px;
}

/* Network Warning Modal */
.network-warning-modal {
    max-width: 500px;
}

.network-warning-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 16px;
}

.network-warning-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 8px;
}

.network-warning-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-red);
    margin: 0;
}

.network-warning-content p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.network-warning-details {
    width: 100%;
    margin: 8px 0;
    padding: 20px;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.network-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.network-detail-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: nowrap;
}

.network-detail-value {
    font-family: var(--font-mono);
    color: var(--doge-gold-400);
    font-size: 0.85rem;
    text-align: right;
    word-break: break-all;
}

.network-switch-button {
    margin-top: 8px;
    padding: 14px 28px !important;
    font-size: 1.05rem !important;
    background: linear-gradient(135deg, var(--neon-red) 0%, #ff6b00 100%) !important;
}

.network-switch-button:hover {
    box-shadow: 0 0 25px rgba(255, 0, 64, 0.6) !important;
}

.network-warning-footer {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    margin-top: 4px !important;
}

/* Wrong network indicator animation */
.wallet-network:has(.network-indicator:contains("🔴")) {
    color: var(--neon-red) !important;
    animation: networkWarning 2s ease-in-out infinite;
}

@keyframes networkWarning {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Wallet Details Dropdown - Centered Modal Style */
.wallet-dropdown {
    width: 100%;
    max-width: 400px;
    min-width: 320px;
    background: var(--bg-card);
    border: 2px solid var(--doge-gold);
    border-radius: 16px;
    box-shadow:
        0 0 40px var(--glow-gold-md),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 204, 0, 0.2);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glass card effect for modals */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

@keyframes dropdown-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wallet-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.wallet-dropdown-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--doge-gold-400);
    font-family: var(--font-display);
}

.wallet-dropdown-body {
    padding: 20px;
}

.wallet-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.wallet-detail-row:last-of-type {
    border-bottom: none;
}

.wallet-detail-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-detail-value {
    font-size: 0.95rem;
    color: var(--doge-gold-400);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.wallet-detail-address {
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.wallet-disconnect-btn-subtle {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 0, 64, 0.1);
    border: 2px solid var(--neon-red);
    border-radius: 8px;
    color: var(--neon-red);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-disconnect-btn-subtle:hover {
    background: rgba(255, 0, 64, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
    transform: translateY(-2px);
}

.wallet-switch-network-btn {
    background: var(--gradient-doge) !important;
    border-color: var(--doge-gold-600) !important;
}

.wallet-details-list {
    margin-bottom: 16px;
}

.wallet-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
}

/* ============================================================================
   CREATE TOKEN PAGE STYLES
   ============================================================================ */

/* Page Header */
.create-page {
    position: relative;
    z-index: 3;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-doge);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Step Indicator */
.steps-container {
    background: var(--bg-card);
    backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

.steps-container:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-line {
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 215, 0, 0.2);
    z-index: 0;
}

.step-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--doge-gold);
    transition: width 0.5s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.step.active .step-circle {
    background: var(--gradient-doge);
    border-color: var(--doge-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    color: var(--bg-dark);
}

.step.completed .step-circle {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.step.active .step-label {
    color: var(--doge-gold);
}

.step.completed .step-label {
    color: var(--neon-green);
}

/* Form Section */
.form-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-main {
    background: var(--bg-card);
    backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

.form-main:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--doge-gold);
}

.form-label .required {
    color: var(--neon-red);
    margin-left: 0.25rem;
}

.form-helper {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--doge-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Image Upload */
.image-upload {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.image-upload:hover {
    border-color: var(--doge-gold);
    background: rgba(255, 215, 0, 0.05);
}

.image-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.upload-text {
    font-weight: 600;
    color: var(--doge-gold);
}

.upload-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.image-upload.has-image .image-preview {
    display: block;
}

.image-upload.has-image .upload-placeholder {
    display: none;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--doge-gold);
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Preview Sidebar */
.preview-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.preview-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

.preview-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.preview-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--doge-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-token-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.preview-token-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.preview-token-ticker {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.preview-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    min-height: 80px;
}

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

.preview-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.preview-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--doge-gold);
}

.preview-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Cost Breakdown */
.cost-breakdown {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid var(--doge-gold);
    border-radius: 12px;
    padding: 1.5rem;
}

.cost-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--doge-gold);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.cost-item-label {
    color: var(--text-secondary);
}

.cost-item-value {
    font-weight: 600;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tips Section */
.tips-section {
    background: var(--bg-card);
    backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.tips-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--doge-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.tip-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.tip-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tip-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .form-section {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        position: static;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

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

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

    .step-line {
        display: none;
    }

    .form-actions {
        flex-direction: column;
    }

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

/* ============================================================================
   AIGC (AI Generation) Styles
   ============================================================================ */

/* AI Generation Button */
.btn-ai-generate {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: 2px solid #a855f7;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-ai-generate:hover {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-color: #c084fc;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

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

/* AI Modal Overlay */
.ai-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AI Modal Content */
.ai-modal-content {
    background: linear-gradient(135deg, rgba(31, 19, 9, 0.98) 0%, rgba(18, 8, 8, 0.98) 100%);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 24px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(168, 85, 247, 0.2);
    animation: slideUp 0.3s ease;
}

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

/* AI Modal Header */
.ai-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.ai-modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffcc00;
    margin: 0;
}

.ai-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ai-modal-close:hover {
    color: #ff0040;
    transform: rotate(90deg);
}

/* AI Service Selector */
.ai-service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ai-service-option {
    padding: 1.25rem;
    background: rgba(255, 204, 0, 0.05);
    border: 2px solid rgba(255, 204, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.ai-service-option:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.4);
    transform: translateY(-2px);
}

.ai-service-option.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.ai-service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.ai-service-cost {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* AI Modal Actions */
.ai-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
}

/* Responsive AI Modal */
@media (max-width: 768px) {
    .ai-modal {
        padding: 1rem;
    }

    .ai-modal-content {
        padding: 1.5rem;
        max-height: 85vh;
    }

    .ai-service-selector {
        grid-template-columns: 1fr;
    }

    .ai-modal-actions {
        flex-direction: column;
    }

    .ai-modal-actions button {
        width: 100%;
    }
}

/* ============================================
   TROLL BOX / COMMENTS SECTION
   ============================================ */

.troll-box {
    padding: 1.5rem;
}

.troll-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.troll-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffcc00;
    margin: 0;
}

.troll-box-count {
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Comments Section */
.comments-section {
    max-height: 500px;
    overflow-y: auto;
}

.comment-input-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.comment-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s;
}

.comment-input:focus {
    outline: none;
    border-color: #ffcc00;
}

.comment-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.comment-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    border: none;
    border-radius: 12px;
    color: #0a0a0f;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.comment-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.5);
}

.comment-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.comment-error {
    color: #ff0040;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 8px;
}

.comment-connect-prompt {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 204, 0, 0.05);
    border: 1px dashed rgba(255, 204, 0, 0.2);
    border-radius: 8px;
}

.comment-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    padding: 2rem;
}

.comment {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.comment:hover {
    border-color: rgba(255, 204, 0, 0.2);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #0a0a0f;
    flex-shrink: 0;
}

.comment-username {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.comment-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.comment-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.comment-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.comment-action {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.comment-action:hover {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

/* Responsive Troll Box */
@media (max-width: 768px) {
    .comment-input-wrapper {
        flex-direction: column;
    }

    .comment-submit {
        width: 100%;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-time {
        margin-top: 0.25rem;
    }
}

/* ===========================
   Chart Controls
   =========================== */

/* Chart type and timeframe button containers */
.chart-type-btn,
.timeframe-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chart-type-btn:hover,
.timeframe-btn:hover {
    color: #fff;
    background: rgba(255, 204, 0, 0.1);
}

.chart-type-btn.active,
.timeframe-btn.active {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.2);
    font-weight: 600;
}

/* Chart container responsiveness */
.price-chart-container {
    width: 100%;
    overflow-x: auto;
}

.price-chart-container svg {
    min-width: 600px;
}

/* Responsive chart controls */
@media (max-width: 768px) {
    .chart-controls {
        flex-direction: column;
        gap: 8px;
    }
    
    .chart-type-btn,
    .timeframe-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* ===========================
   Trade Input Fixes
   =========================== */

/* Hide number input spinners (prevent layout shifts) */
input[type="number"].trade-input::-webkit-outer-spin-button,
input[type="number"].trade-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].trade-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Prevent scroll on focus */
.trade-input:focus {
    outline: 2px solid rgba(255, 204, 0, 0.5);
    outline-offset: -2px;
}

/* Stable height for trading panel to prevent layout shifts */
.glass-card {
    overflow: hidden;
}

/* Trading panel specific - prevent scroll during input */
.trading-panel-container {
    contain: layout style;
    overflow-anchor: none;
    will-change: contents;
}

/* All elements inside trading panel should not anchor scroll */
.trading-panel-container * {
    overflow-anchor: none;
}

/* Prevent scroll on input focus - trading panel */
.trading-panel-container input:focus {
    scroll-margin-top: 200px;
    scroll-snap-align: none;
}

/* Prevent any scroll behavior on the main container during input */
body:has(.trade-input:focus) {
    overflow-anchor: none;
    scroll-behavior: auto !important;
}

/* Global scroll anchor prevention for reactive updates */
html, body {
    overflow-anchor: none;
}

/* Container should also prevent scroll anchoring */
.container {
    overflow-anchor: none;
}

/* Ensure stable layout during reactive updates */
.trade-input {
    min-height: 48px;
    box-sizing: border-box;
}

/* ============================================================================
   WALLET DROPDOWN STYLES (connected wallet details)
   ============================================================================ */

.wallet-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

.wallet-dropdown-header h4 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--doge-gold);
}

.wallet-dropdown-body {
    padding: 24px;
}

.wallet-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.wallet-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.wallet-detail-label {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-detail-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.wallet-detail-address {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.network-indicator {
    margin-right: 6px;
}

.wallet-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-disconnect-btn-subtle {
    padding: 12px 20px;
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 8px;
    color: #ff0040;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-disconnect-btn-subtle:hover {
    background: rgba(255, 0, 64, 0.2);
    border-color: #ff0040;
}

.wallet-switch-network-btn {
    background: linear-gradient(135deg, var(--doge-gold), var(--doge-orange)) !important;
    color: #000 !important;
}
