/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-primary: #3B82F6;
    --color-primary-dark: #2563EB;
    --color-primary-light: #60A5FA;
    --color-secondary: #8B5CF6;
    --color-danger: #EF4444;
    --color-danger-dark: #DC2626;
    --color-success: #10B981;
    --color-warning: #F59E0B;

    /* Background colors */
    --bg-main: #F8FAFC;
    --bg-alt: #F1F5F9;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.85);

    /* Text colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    /* Border colors */
    --border-light: rgba(148, 163, 184, 0.2);
    --border-medium: rgba(148, 163, 184, 0.3);

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-border: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899, #3B82F6);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Background Gradient ===== */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        var(--bg-main);
    pointer-events: none;
    z-index: -1;
}

/* Animated gradient orbs */
.background-gradient::before,
.background-gradient::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.background-gradient::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.background-gradient::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(0, 20px) scale(0.95);
    }
    75% {
        transform: translate(-20px, -10px) scale(1.02);
    }
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 40px;
    margin-right: auto;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    color: white !important;
}
.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::before {
    left: 100%;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: var(--bg-altnapadlo);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
}

.btn-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
}

.btn-danger:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.hidden {
    display: none !important;
}

/* ===== Wallet Button ===== */
.wallet-btn {
    position: relative;
}

.wallet-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    display: none;
}

.wallet-btn.connected .wallet-status {
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    padding: 200px 0 160px;
    text-align: center;
}

.hero .container {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out 0s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

/* ===== Glass Card ===== */
.card {
    max-width: 520px;
    margin: 0 auto;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Gradient Border Effect */
[data-gradient-border] {
    position: relative;
    padding: 1px;
    background: transparent;
}

[data-gradient-border]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-border);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-rotate 4s linear infinite;
    pointer-events: none;
}

[data-gradient-border].active::before {
    animation: gradient-follow 0.5s ease forwards, gradient-rotate 4s linear infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-content {
    background: var(--bg-card);
    border-radius: inherit;
    padding: 32px;
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-primary);
    background: #fff;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    resize: vertical;
    min-height: 120px;
    transition: all var(--transition-fast);
}

.form-textarea:hover {
    border-color: var(--color-primary-light);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: #fff;
}

.form-textarea::placeholder {
    color: var(--text-muted);
    font-family: inherit;
    opacity: 0.7;
}

/* Dark mode form inputs override */
.app-page .form-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
}

.app-page .form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.form-hint {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.input-with-button {
    display: flex;
    gap: 8px;
}

.input-with-button .form-input {
    flex: 1;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-medium);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--gradient-primary);
    border-color: transparent;
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

/* ===== Fee Info ===== */
.fee-info {
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

.fee-row + .fee-row {
    margin-top: 8px;
}

/* ===== Warning Box ===== */
.warning-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.warning-icon {
    width: 24px;
    height: 24px;
    color: var(--color-warning);
    flex-shrink: 0;
}

/* ===== Proof Result ===== */
.proof-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.proof-badge {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: white;
}

.proof-badge.burn {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.proof-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.proof-badge.audit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    font-size: 11px;
}

.proof-badge.audit svg {
    flex-shrink: 0;
}

/* Audit Info Banner */
.audit-info-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.audit-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-success);
    border-radius: 50%;
    flex-shrink: 0;
}

.audit-info-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.audit-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.audit-info-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.audit-info-label strong {
    color: var(--color-success);
}

.audit-info-link {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 500;
}

.audit-info-link:hover {
    text-decoration: underline;
}

.proof-status {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-success);
}

.proof-details {
    margin-bottom: 20px;
}

.proof-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.proof-row:last-child {
    border-bottom: none;
}

.proof-label {
    color: var(--text-muted);
}

.proof-value {
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    word-break: break-all;
    max-width: 60%;
    text-align: right;
}

.proof-value.link {
    color: var(--color-primary);
    cursor: pointer;
}

.proof-address {
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.proof-address:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Lock Status Banner */
.lock-status-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.lock-status-banner.locked {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.lock-status-banner.locked .lock-status-icon::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E") no-repeat center;
}

.lock-status-banner.expired {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--color-warning);
}

.lock-status-banner.expired .lock-status-icon::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 019.9-1'/%3E%3C/svg%3E") no-repeat center;
}

.lock-status-banner.burn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-danger);
}

.lock-status-banner.burn .lock-status-icon::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF4444' stroke-width='2'%3E%3Cpath d='M12 2c.5 2.5 2 4.5 2 6.5a4 4 0 11-8 0c0-2 1.5-4 2-6.5 1 1 2.5 2 4 0z'/%3E%3C/svg%3E") no-repeat center;
}

/* Proof Actions */
.proof-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.proof-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.proof-actions .btn svg {
    flex-shrink: 0;
}

/* Share Section */
.share-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.share-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.twitter:hover {
    background: #1a1a1a;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.telegram:hover {
    background: #0077b5;
}

.share-btn.download {
    background: var(--gradient-primary);
}

.share-btn.download:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* ===== Locks List ===== */
.locks-list {
    max-width: 800px;
    margin: 0 auto;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-hint {
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

.lock-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.lock-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.lock-info {
    flex: 1;
}

.lock-token {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.lock-amount {
    color: var(--text-secondary);
    font-size: 14px;
}

.lock-unlock {
    text-align: right;
}

.lock-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.lock-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.lock-status.locked {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
}

.lock-status.unlocked {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h3 {
    font-size: 20px;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

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

.modal-body {
    padding: 24px;
}

/* ===== Wallet Options ===== */
.wallet-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.wallet-option + .wallet-option {
    margin-top: 12px;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--color-primary);
}

.wallet-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

/* ===== Success Modal ===== */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 40px;
    height: 40px;
    color: var(--color-success);
}

.success-details {
    margin: 24px 0;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}

#successMessage {
    text-align: center;
    color: var(--text-secondary);
}

/* ===== Token Section ===== */
.token-section-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .token-section-grid {
        grid-template-columns: 1fr;
    }
}

.token-info-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Token Free Banner inside left card */
.token-free-banner {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.free-banner-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-banner-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.free-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.free-banner-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-success);
}

.free-banner-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.token-logo svg {
    width: 72px;
    height: 72px;
}

.token-name h3 {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.token-network {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.token-details {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 14px;
}

.token-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.token-detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: var(--text-muted);
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-value.highlight {
    color: var(--color-success);
}

.token-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

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

/* Token Benefits */
.token-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.token-benefits .benefit-card {
    flex: 1;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.benefit-icon.zero-fee {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.benefit-icon.governance {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.benefit-icon.revenue {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.benefit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gradient-primary);
    color: white;
}

/* Token CTA */
.token-cta {
    margin-top: 40px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .cta-highlight {
        flex-direction: column;
        text-align: center;
    }
}

.cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 10s linear infinite;
}

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

.cta-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.cta-text {
    flex: 1;
}

.cta-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-primary);
}

.cta-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-muted);
}

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

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .card-content {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .lock-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .lock-unlock {
        text-align: left;
    }
}

/* ===== Mouse Gradient Follow Effect ===== */
.gradient-follow {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.gradient-follow::before {
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(59, 130, 246, 0.15),
        transparent 40%
    ), var(--gradient-border);
    background-size: 100% 100%, 300% 300%;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== App Page Styles ===== */
.app-page {
    padding-top: 72px;
}

.app-main {
    min-height: calc(100vh - 180px);
    padding: 60px 0;
}

.app-header {
    text-align: center;
    margin-bottom: 48px;
}

.app-title {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.title-icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}

.title-icon.burn {
    color: var(--color-danger);
}

.title-icon.dex {
    color: var(--color-secondary);
}

.app-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Burn title styling */
.burn-title .title-icon {
    color: var(--color-danger);
}

/* ===== App Grid Layout ===== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.app-card {
}

.app-card .card-content {
    padding: 32px;
}

/* ===== App Info Panel ===== */
.app-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-info .info-card {
    padding: 24px;
    text-align: left;
}

.app-info .info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Info List (numbered steps) */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.info-list li {
    position: relative;
    padding-left: 32px;
    padding-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-list li:last-child {
    padding-bottom: 0;
}

/* Benefit List (checkmarks) */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.benefit-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* Price Tag Card */
.info-card.highlight {
    background: var(--gradient-primary);
    color: white;
}

.price-tag {
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Wallet Required Notice ===== */
.wallet-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.wallet-required svg {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.wallet-required p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== Token Selector ===== */
.token-select {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
}

.token-select:hover {
    border-color: var(--color-primary);
}

.token-placeholder {
    color: var(--text-muted);
}

.select-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.token-select.open .select-arrow {
    transform: rotate(180deg);
}

.token-selected {
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-selected-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    overflow: hidden;
}

.token-selected-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-selected-info {
    display: flex;
    flex-direction: column;
}

.token-selected-symbol {
    font-weight: 600;
    font-size: 14px;
}

.token-selected-address {
    font-size: 11px;
    color: var(--text-muted);
}

/* Token Loading */
.token-loading {
    padding: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Quick Date Buttons ===== */
.quick-dates {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.quick-date {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    color: var(--text-secondary);
}

.quick-date:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

/* ===== Fee Info Enhancements ===== */
.fee-value {
    font-weight: 600;
    color: var(--color-primary);
}

.fee-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-weight: 600;
}

.fee-total span:last-child {
    color: var(--text-primary);
}

/* ===== My Locks Section ===== */
.my-locks-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.section-title-sm {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 24px;
}

.section-header-row .section-title-sm {
    margin-bottom: 0;
    text-align: left;
}

.section-header-row .btn-sm {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.section-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.section-actions .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

@media (max-width: 640px) {
    .section-header-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .section-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== Success Icon Burn Variant ===== */
.success-icon-wrapper.burn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
}

.success-icon-wrapper.burn .success-icon {
    color: var(--color-danger);
}

/* ===== Nav Link Active ===== */
.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== Navigation Dropdown ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 8px;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dropdown-item.active {
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 0;
}

/* Mobile dropdown styles */
.mobile-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 0;
}

.mobile-section-title {
    display: block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding-left: 24px;
    }
}

/* ===== Verify Container ===== */
.verify-container {
    max-width: 600px;
    margin: 0 auto;
}

.verify-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    padding: 24px;
    text-align: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    color: var(--color-primary);
}

.info-icon.dex {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-secondary);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== DEX Checker Styles ===== */
.dex-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.dex-status-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.dex-status-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dex-status-label {
    font-size: 14px;
    color: var(--text-muted);
}

.dex-status-value {
    font-size: 20px;
    font-weight: 700;
}

.dex-details {
    margin-bottom: 24px;
}

.dex-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.dex-row:last-child {
    border-bottom: none;
}

.dex-label {
    color: var(--text-muted);
    font-size: 14px;
}

.dex-value {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.dex-features {
    margin-bottom: 24px;
}

.dex-features h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dex-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dex-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    transition: all var(--transition-normal);
}

.dex-feature svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.dex-feature.active {
    border-color: var(--color-success);
    background: rgba(16, 185, 129, 0.05);
}

.dex-feature.active svg {
    color: var(--color-success);
}

/* ===== Token Selector ===== */
.token-select-wrapper {
    position: relative;
}

.token-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
}

.token-select-btn:hover {
    border-color: var(--color-primary);
}

.token-select-btn .placeholder {
    color: var(--text-muted);
}

.token-select-btn .chevron {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.token-select-btn.open .chevron {
    transform: rotate(180deg);
}

.token-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.token-search {
    padding: 12px;
    border-bottom: 1px solid var(--border-light);
}

.token-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.token-search input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.token-list {
    overflow-y: auto;
    max-height: 240px;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.token-item:hover {
    background: var(--bg-alt);
}

.token-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
}

.token-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.token-item-symbol {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.token-item-address {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.token-item-balance {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.token-empty {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Wallet Notice ===== */
.wallet-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.wallet-notice svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.wallet-notice p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Quick Date Buttons ===== */
.quick-dates {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.quick-date-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    color: var(--text-secondary);
}

.quick-date-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ===== Legal Pages ===== */
.legal-page .app-main {
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 16px;
    margin: 20px 0 12px;
    color: var(--text-secondary);
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--bg-alt);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.contact-icon.twitter {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.contact-icon.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

.contact-icon.email {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.contact-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

/* ===== FAQ Accordion ===== */
.faq-section {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    gap: 24px;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .faq-accordion {
        flex-direction: column;
        gap: 12px;
    }

    .faq-column {
        gap: 12px;
    }
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Legacy FAQ Grid (for contact page) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    padding: 24px;
}

.faq-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.faq-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Quick Actions Panel ===== */
.quick-actions {
    display: none;
    padding: 24px 0;
}

.quick-actions.visible {
    display: block;
}

.quick-actions-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
    text-decoration: none;
}

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

.quick-action-btn.lock-btn {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.quick-action-btn.lock-btn:hover {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
}

.quick-action-btn.burn-btn {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.quick-action-btn.burn-btn:hover {
    border-color: var(--color-danger);
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.quick-action-btn svg {
    width: 22px;
    height: 22px;
}

/* ===== Connected Wallet Button Styles ===== */
.wallet-btn.connected {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: none;
}

.wallet-btn.connected:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
}

.wallet-btn.connected .wallet-text {
    color: var(--color-success);
}

.wallet-btn .wallet-address {
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 8px;
}

/* ===== Lock Item Improvements ===== */
.lock-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-success {
    background: var(--color-success);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 6px;
}

.btn-ghost:hover {
    background: var(--bg-alt);
    color: var(--color-primary);
}

.lock-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.lock-time-remaining {
    color: var(--color-primary);
    font-weight: 500;
}

/* ===== Footer Minimal ===== */
.footer-minimal {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    background: var(--bg-alt);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-inline {
    display: flex;
    gap: 24px;
}

.footer-links-inline a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

/* ===== Landing Page Styles ===== */
.landing-page {
    overflow-x: hidden;
}

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-right .social-links {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.nav-right .social-link {
    width: 36px;
    height: 36px;
}

.nav-right .social-link svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    background: var(--bg-alt);
    color: var(--color-primary);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.25s; }
.animate-on-scroll.delay-3 { transition-delay: 0.35s; }
.animate-on-scroll.delay-4 { transition-delay: 0.45s; }

/* Scale animation variant */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Hero Title with Gradient */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 20px 32px;
    text-align: center;
    min-width: 140px;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.stat-card .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Token CA Box */
.token-ca {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.ca-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ca-address {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 14px;
    color: var(--text-primary);
    background: none;
}

.ca-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.ca-copy svg {
    width: 16px;
    height: 16px;
}

.ca-copy:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Button Icon */
.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Features Grid - Landing */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    text-align: left;
    transition: all var(--transition-normal);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 60px rgba(59, 130, 246, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-link {
    transform: translateX(4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    color: var(--color-primary);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover .feature-icon {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.feature-card:hover .feature-icon.burn {
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

.feature-card:hover .feature-icon.verify {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.feature-card:hover .feature-icon.dex {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.feature-card:hover .feature-icon.dust {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.feature-card:hover .feature-icon.scanner {
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.feature-card:hover .feature-icon.leaderboard {
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
}

.feature-icon.burn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

.feature-icon.verify {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.feature-icon.dex {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-secondary);
}

.feature-icon.dust {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.feature-icon.scanner {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.feature-icon.leaderboard {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.feature-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-size: 12px;
}

.feature-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
    transition: transform var(--transition-normal);
}

.feature-link:hover {
    text-decoration: underline;
}

/* Pricing Table */
.pricing-table {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-cell {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pricing-cell:first-child {
    gap: 12px;
}

.pricing-highlight {
    background: rgba(59, 130, 246, 0.05);
}

.pricing-highlight .pricing-cell:first-child {
    font-weight: 600;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--gradient-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-weight: 600;
    color: var(--color-primary);
}

.price-free {
    font-weight: 600;
    color: var(--color-success);
}

.price-competitor {
    color: var(--text-muted);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Trust Section - Two Column Layout */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.trust-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-image {
    display: flex;
    justify-content: center;
}

.trust-visual {
    padding: 60px;
    text-align: center;
}

.shield-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.shield-icon svg {
    width: 100%;
    height: 100%;
}

.trust-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-primary);
    box-shadow: none;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-social .social-link {
    width: 36px;
    height: 36px;
}

.footer-social .social-link svg {
    width: 16px;
    height: 16px;
}

.footer-links-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-disclaimer {
    opacity: 0.7;
}

/* Social Links Generic */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

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

.social-link svg {
    width: 18px;
    height: 18px;
}

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

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-content .section-title {
        text-align: center;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* App Grid on tablets */
    .app-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .app-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-info .info-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .app-info .info-card.highlight {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    /* Hide nav links on mobile */
    .nav-links {
        display: none;
    }

    .nav-right .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
        z-index: 100;
    }

    /* Fix wallet button on mobile */
    .nav-right {
        flex-shrink: 1;
        min-width: 0;
    }

    .wallet-btn {
        padding: 8px 12px;
        font-size: 13px;
        max-width: 140px;
        overflow: hidden;
    }

    .wallet-btn .wallet-address {
        display: none;
    }

    .wallet-btn.connected .wallet-text {
        font-size: 12px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-card {
        min-width: calc(50% - 8px);
        padding: 16px;
    }

    .stat-card .stat-value {
        font-size: 24px;
    }

    .token-ca {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 20px;
    }

    /* Pricing */
    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .pricing-cell {
        padding: 12px 10px;
        font-size: 12px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Trust */
    .trust-visual {
        padding: 40px;
    }

    .shield-icon {
        width: 80px;
        height: 80px;
    }

    /* CTA */
    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

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

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

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

    /* App pages */
    .app-title {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .title-icon {
        width: 32px;
        height: 32px;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .app-info {
        flex-direction: column;
    }

    .app-info .info-card {
        flex: 1 1 100%;
    }

    .app-card .card-content {
        padding: 24px;
    }

    .wallet-required {
        padding: 40px 20px;
    }

    .wallet-required svg {
        width: 48px;
        height: 48px;
    }

    .quick-dates {
        justify-content: center;
    }

    .my-locks-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .verify-info-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .legal-content {
        padding: 32px 24px;
    }

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

@media (max-width: 480px) {
    .pricing-table {
        font-size: 11px;
    }

    .pricing-cell {
        padding: 10px 8px;
    }

    .pricing-badge {
        font-size: 8px;
        padding: 2px 4px;
    }
}

/* ===== Leaderboard Styles ===== */
.leaderboard-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.leaderboard-stats .stat-card {
    padding: 24px 40px;
    text-align: center;
    min-width: 160px;
}

.leaderboard-stats .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.leaderboard-stats .stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Leaderboard Tabs */
.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tab-btn.active svg {
    color: white;
}

/* Leaderboard Container */
.leaderboard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.leaderboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--text-muted);
}

.leaderboard-loading .btn-loader {
    width: 32px;
    height: 32px;
    border-width: 3px;
    border-color: var(--border-medium);
    border-top-color: var(--color-primary);
}

.leaderboard-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.leaderboard-empty .empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.leaderboard-empty p {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Leaderboard Table */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.leaderboard-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-alt);
}

.leaderboard-table tbody tr {
    transition: background var(--transition-fast);
}

.leaderboard-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

/* Rank Badge */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.rank-badge.top-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.rank-badge.top-2 {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: white;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
}

.rank-badge.top-3 {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: white;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
}

/* Token Info */
.token-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.token-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-icon-fallback {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.token-symbol {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.token-address {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 12px;
    color: var(--text-muted);
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: var(--bg-alt);
    color: var(--color-primary);
}

/* Column Widths */
.col-rank {
    width: 60px;
}

.col-token {
    width: auto;
}

.col-value {
    width: 140px;
    font-weight: 600;
    color: var(--color-success);
}

.col-count,
.col-users {
    width: 80px;
    text-align: center;
}

.col-actions {
    width: 60px;
    text-align: center;
}

/* Action Button */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .leaderboard-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .leaderboard-stats .stat-card {
        min-width: calc(50% - 8px);
        padding: 20px;
    }

    .leaderboard-stats .stat-value {
        font-size: 24px;
    }

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

    .tab-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .col-users {
        display: none;
    }

    .col-value {
        width: auto;
    }
}

@media (max-width: 480px) {
    .leaderboard-stats .stat-card {
        min-width: 100%;
    }

    .col-count {
        display: none;
    }
}

/* ===== Airdrop Tool Styles ===== */

/* Airdrop Container */
.airdrop-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Airdrop Tabs */
.airdrop-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.airdrop-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.airdrop-tab svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.airdrop-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
}

.airdrop-tab:hover svg {
    opacity: 0.8;
}

.airdrop-tab.active {
    background: var(--gradient-primary);
    color: white;
}

.airdrop-tab.active svg {
    opacity: 1;
}

/* Airdrop Tabs Inline (inside card) - matches distribution-options style */
.airdrop-tabs-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.airdrop-tabs-inline .airdrop-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.airdrop-tabs-inline .airdrop-tab svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.airdrop-tabs-inline .airdrop-tab:hover {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

.airdrop-tabs-inline .airdrop-tab.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.airdrop-tabs-inline .airdrop-tab.active svg {
    color: var(--color-primary);
}

/* Tab Content */
.airdrop-tab-content {
    display: none;
}

.airdrop-tab-content.active {
    display: block;
}

/* Airdrop Form */
.airdrop-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Row Two Cols */
.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-input {
    padding-right: 44px;
}

.input-with-icon .input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

/* File Upload Area */
.file-upload-area {
    position: relative;
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-label svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.file-upload-label span {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.file-upload-area:hover .file-upload-label {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

.file-upload-area:hover .file-upload-label svg,
.file-upload-area:hover .file-upload-label span {
    color: var(--color-primary);
}

.file-upload-area .file-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--color-success);
    text-align: center;
}

.file-upload-area .file-name:empty {
    display: none;
}

/* Distribution Options */
.distribution-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.distribution-option {
    position: relative;
    cursor: pointer;
}

.distribution-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.distribution-option .option-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.distribution-option .option-content svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.distribution-option .option-content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.distribution-option:hover .option-content {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

.distribution-option input[type="radio"]:checked + .option-content {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-primary);
}

.distribution-option input[type="radio"]:checked + .option-content svg,
.distribution-option input[type="radio"]:checked + .option-content span {
    color: var(--color-primary);
}

/* Equal Amount Group */
.equal-amount-group {
    padding: 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
}

/* Airdrop Preview */
.airdrop-preview {
    margin-top: 24px;
}

.preview-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Preview Stats */
.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.preview-stat {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.preview-stat .stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.preview-stat .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Preview Table */
.preview-list-container {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
}

.preview-table th,
.preview-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
}

.preview-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--text-secondary);
    position: sticky;
    top: 0;
    z-index: 1;
}

.preview-table td {
    border-top: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
}

.preview-table td:first-child {
    color: var(--text-muted);
    font-family: inherit;
}

.preview-table td:last-child {
    text-align: right;
    color: var(--color-primary);
    font-weight: 500;
}

.preview-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

/* Holder Benefit Notice */
.holder-benefit-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.holder-benefit-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.holder-benefit-notice strong {
    color: var(--color-secondary);
}

/* Airdrop Progress */
.airdrop-progress {
    margin-top: 24px;
}

.progress-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

/* Progress Bar */
.progress-bar-container {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Progress Stats */
.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.progress-stat {
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.progress-stat .stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.progress-stat .stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Transaction Log */
.tx-log {
    max-height: 200px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 12px;
}

.tx-log-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.tx-log-entry:last-child {
    border-bottom: none;
}

.tx-log-entry.success {
    color: var(--color-success);
}

.tx-log-entry.error {
    color: var(--color-danger);
}

.tx-log-entry.pending {
    color: var(--text-muted);
}

.tx-log-entry .log-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.tx-log-entry .log-message {
    flex: 1;
    color: var(--text-secondary);
}

.tx-log-entry .log-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.tx-log-entry .log-link:hover {
    text-decoration: underline;
}

/* Airdrop Success */
.airdrop-success {
    margin-top: 24px;
}

.airdrop-success .success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airdrop-success .success-icon {
    width: 40px;
    height: 40px;
    color: var(--color-success);
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 8px;
}

.success-message {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    justify-content: center;
}

/* Airdrop Info Grid */
.airdrop-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.airdrop-info-grid .info-card {
    padding: 24px;
    text-align: center;
}

.airdrop-info-grid .info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.airdrop-info-grid .info-icon.airdrop {
    background: rgba(139, 92, 246, 0.1);
}

.airdrop-info-grid .info-icon.airdrop svg {
    color: var(--color-secondary);
}

.airdrop-info-grid .info-icon.zero-fee {
    background: rgba(16, 185, 129, 0.1);
}

.airdrop-info-grid .info-icon.zero-fee svg {
    color: var(--color-success);
}

.airdrop-info-grid .info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.airdrop-info-grid h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.airdrop-info-grid p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Button with icon */
.btn svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.btn-full svg {
    flex-shrink: 0;
}

/* Responsive Airdrop */
@media (max-width: 768px) {
    .airdrop-tabs {
        flex-direction: column;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

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

    .progress-stats {
        grid-template-columns: 1fr;
    }

    .distribution-options {
        grid-template-columns: 1fr;
    }

    .airdrop-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .preview-stats {
        grid-template-columns: 1fr;
    }

    .preview-table th:first-child,
    .preview-table td:first-child {
        display: none;
    }
}


/* Transaction Links List in Modal */
.tx-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.tx-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.tx-link-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-primary);
}

.tx-link-num {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 30px;
}

.tx-link-sig {
    flex: 1;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 13px;
    color: var(--color-primary);
}

.tx-link-item svg {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.tx-link-item:hover svg {
    color: var(--color-primary);
}

/* ===== Dust Collector Styles ===== */

/* Dust Title Icon */
.dust-title .title-icon {
    color: var(--color-secondary);
}

/* Dust Filters */
.dust-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.filter-tab {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    border-color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

.filter-tab.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Dust Results */
.dust-results {
    margin-top: 24px;
}

.dust-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dust-count {
    font-size: 14px;
    color: var(--text-secondary);
}

.dust-count span {
    font-weight: 700;
    color: var(--color-primary);
}

.dust-actions-header {
    display: flex;
    gap: 8px;
}

/* Dust List */
.dust-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.dust-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.dust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

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

.dust-item:hover {
    background: rgba(59, 130, 246, 0.03);
}

/* Dust Checkbox */
.dust-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dust-checkbox input[type="checkbox"] {
    display: none;
}

.dust-checkbox .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-medium);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.dust-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
}

.dust-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Dust Token Icon */
.dust-token-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dust-token-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dust-token-fallback {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Dust Token Info */
.dust-token-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dust-token-symbol {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dust-token-address {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

/* Dust Token Balance */
.dust-token-balance {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dust-amount {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.dust-usd {
    font-size: 11px;
    color: var(--text-muted);
}

/* Dust Summary */
.dust-summary {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.summary-row.summary-total {
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.text-success {
    color: var(--color-success) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

/* Dust Form */
.dust-form {
    display: flex;
    flex-direction: column;
}

/* Responsive Dust Collector */
@media (max-width: 768px) {
    .dust-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .dust-actions-header {
        justify-content: center;
    }

    .filter-tabs {
        grid-template-columns: 1fr;
    }

    .dust-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .dust-token-balance {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding-left: 32px;
    }
}
