/* ========================================
   CSS Variables & Theme
======================================== */
:root {
    /* Colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #252d3d;
    --bg-accent: rgba(134, 239, 172, 0.1);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --text-muted: #475569;
    
    --accent: #86efac;
    --accent-hover: #4ade80;
    --accent-glow: rgba(134, 239, 172, 0.3);
    
    --border-primary: #2d3748;
    --border-secondary: #374151;
    
    /* Spacing */
    --sidebar-width: 260px;
    --sidebar-width-collapsed: 70px;
    --header-height: 64px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   Layout
======================================== */
.main-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition-base), opacity 0.5s ease;
    opacity: 0;
}

.sidebar[data-state="collapsed"] ~ .main-wrapper {
    margin-left: var(--sidebar-width-collapsed);
}

/* ========================================
   Sidebar
======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-primary);
    z-index: 100;
    transition: width var(--transition-base);
    overflow: hidden;
}

.sidebar[data-state="collapsed"] {
    width: var(--sidebar-width-collapsed);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px 12px;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px;
    margin-bottom: 24px;
    min-height: 48px;
}

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

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

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

.logo-icon-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    transition: opacity var(--transition-base);
}

.sidebar[data-state="collapsed"] .logo-text {
    opacity: 0;
    width: 0;
}

.accent {
    color: var(--accent);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
}

.sidebar-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.sidebar-toggle .toggle-expand {
    display: none;
}

.sidebar-toggle .toggle-collapse {
    display: block;
}

.sidebar[data-state="collapsed"] .sidebar-toggle .toggle-expand {
    display: block;
}

.sidebar[data-state="collapsed"] .sidebar-toggle .toggle-collapse {
    display: none;
}

.sidebar[data-state="collapsed"] .sidebar-header {
    justify-content: center;
}

.sidebar[data-state="collapsed"] .logo-link {
    display: none;
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.menu-button:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.menu-button.active {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.menu-button.active svg {
    color: var(--accent);
}

.menu-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.menu-button span {
    white-space: nowrap;
    transition: opacity var(--transition-base), width var(--transition-base);
}

.sidebar[data-state="collapsed"] .menu-button {
    justify-content: center;
    padding: 10px;
}

.sidebar[data-state="collapsed"] .menu-button span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* Sidebar Stats Card */
.sidebar-stats-card {
    margin-top: auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 16px;
    transition: all var(--transition-base);
}

.sidebar[data-state="collapsed"] .sidebar-stats-card {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: none;
}

.stats-title {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stats-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stats-subtitle {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.stats-bar {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.stats-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: var(--radius-full);
    transition: width 1s ease-out;
}

.stats-info {
    font-size: 11px;
    color: var(--text-tertiary);
}

/* Sidebar Footer */
.sidebar-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border-primary);
    margin-top: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--bg-secondary);
    color: var(--accent);
}

.sidebar[data-state="collapsed"] .sidebar-footer {
    border-top: none;
    padding-top: 8px;
}

.sidebar[data-state="collapsed"] .social-links {
    flex-direction: column;
    align-items: center;
}

/* Header Mobile Logo */
.header-logo-mobile {
    display: none;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-mobile img {
    border-radius: 6px;
}

/* ========================================
   Header
======================================== */
.header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 50;
    gap: 16px;
}

.header-search {
    flex: 1;
    max-width: 480px;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md);
    padding: 0 80px 0 42px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-kbd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.search-kbd kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-secondary);
    border-radius: 4px;
    color: var(--text-tertiary);
    font-size: 11px;
    font-family: inherit;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    height: 100%;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    background: var(--accent);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s ease;
    cursor: pointer;
}

.header-btn:hover {
    background: var(--accent-hover);
}

.header-btn.btn-primary,
.header-btn.btn-secondary {
    background: var(--accent);
    color: #0a0a0a;
    border: none;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--bg-accent);
    color: var(--accent);
    border: 1px solid rgba(134, 239, 172, 0.2);
}

.btn-primary:hover {
    background: rgba(134, 239, 172, 0.15);
    border-color: rgba(134, 239, 172, 0.3);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-tertiary);
}

.btn-connect {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg-primary);
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

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

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

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-demo {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-secondary);
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
}

.btn-demo:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========================================
   Main Content
======================================== */
.main-content {
    flex: 1;
    padding: 0 24px 48px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.6; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--border-primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--border-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
}

.float-icon {
    position: absolute;
    opacity: 0.6;
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon svg {
    filter: drop-shadow(0 0 10px currentColor);
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 15%; animation-delay: 1s; }
.icon-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.icon-4 { top: 40%; right: 25%; animation-delay: 3s; }
.icon-5 { bottom: 20%; right: 10%; animation-delay: 4s; }

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: slideDown 0.6s ease-out;
}

.badge-icon {
    color: var(--accent);
}

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

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-title .brand {
    white-space: nowrap;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-description strong {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    animation: slideUp 0.6s ease-out 0.3s both;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: slideUp 0.6s ease-out 0.4s both;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: slideUp 0.6s ease-out 0.5s both;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
    overflow: hidden;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar svg {
    width: 100%;
    height: 100%;
}

.trust-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    margin-left: -8px;
}

.trust-text {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg), 0 0 20px var(--accent-glow);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-tertiary);
    position: absolute;
    top: 16px;
    right: 24px;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

/* Features Section */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(134, 239, 172, 0.3);
}

.feature-main {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(134, 239, 172, 0.05) 100%);
}

.feature-main-content {
    flex: 1;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: var(--radius-xl);
    color: var(--accent);
    flex-shrink: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: 16px;
}

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

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

.feature-main h3 {
    font-size: 20px;
}

/* ========================================
   Footer
======================================== */
.footer {
    border-top: 1px solid var(--border-primary);
    padding: 24px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-tagline {
    font-size: 12px;
    color: var(--text-tertiary);
    padding: 2px 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

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

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

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

.footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ========================================
   Modal
======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 16px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-tertiary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-tertiary);
}

/* ========================================
   Login Modal
======================================== */
.login-modal-content {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 356px;
    max-width: calc(100vw - 32px);
    text-align: center;
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

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

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

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

.login-modal-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.login-modal-logo {
    margin: 24px 0;
}

.login-modal-logo img {
    border-radius: var(--radius-lg);
}

/* Login Option Button */
.login-option {
    position: relative;
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.login-option:hover:not(.login-option-disabled) {
    background: rgba(15, 23, 42, 0.9);
}

.login-option-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-option-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.login-option-text span {
    font-size: 14px;
    color: var(--text-primary);
}

.login-option-text small {
    font-size: 10px;
    color: var(--text-tertiary);
}

/* Disabled state with blur */
.login-option-disabled {
    cursor: not-allowed;
}

.login-option-disabled .login-option-inner {
    filter: blur(3px);
    opacity: 0.5;
}

.login-option-blur {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(2px);
}

.maintenance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: #fbbf24;
}

.maintenance-badge svg {
    color: #fbbf24;
}

/* Login Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-secondary);
}

.login-divider span {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Wallet Options */
.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    transition: all var(--transition-fast);
}

.wallet-btn:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--text-tertiary);
}

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

.wallet-btn span {
    flex: 1;
    text-align: left;
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature-main {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
}

/* ========================================
   Responsive - Mobile
======================================== */
@media (max-width: 768px) {
    /* Hide sidebar completely on mobile */
    .sidebar {
        display: none;
    }
    
    .main-wrapper {
        margin-left: 0 !important;
    }
    
    /* Header adjustments */
    .header {
        padding: 12px 16px;
        height: auto;
        min-height: 56px;
    }
    
    .header-logo-mobile {
        display: flex;
    }
    
    .header-search {
        display: none;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-btn {
        height: 32px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    /* Main content */
    .main-content {
        padding: 0 16px 32px;
    }
    
    /* Hero section */
    .hero {
        padding: 32px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .btn-connect, .btn-demo {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }
    
    .trust-text {
        font-size: 13px;
    }
    
    /* Hide floating icons on mobile */
    .floating-icons {
        display: none;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        font-size: 32px;
        top: 12px;
        right: 16px;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    /* Features */
    .features {
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Footer */
    .footer {
        padding: 20px 16px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-copy {
        font-size: 11px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    
    .how-it-works {
        padding: 40px 0;
    }
}

/* ========================================
   Responsive - Small Mobile
======================================== */
@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
    }
    
    .header-logo-mobile img {
        width: 24px;
        height: 24px;
    }
    
    .header-btn {
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .btn-connect, .btn-demo {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--border-secondary);
}

/* ========================================
   Selection
======================================== */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ========================================
   X Verification Screen
======================================== */
.x-verification-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.x-verification-screen.active {
    opacity: 1;
    pointer-events: all;
}

.x-verification-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.x-logo-container {
    margin-bottom: 40px;
}

.x-logo-container.loading {
    animation: spin 2s linear infinite;
}

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

.x-logo {
    width: 150px;
    height: 150px;
    fill: #ffffff;
    transition: fill 1s ease, filter 1s ease;
}

.x-logo.safe {
    fill: var(--accent);
    filter: drop-shadow(0 0 40px var(--accent-glow));
}

.x-loading-text {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    transition: opacity 0.5s ease;
}

.x-loading-text.hidden {
    opacity: 0;
    visibility: hidden;
}

.x-safe-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.x-safe-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.x-verification-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.x-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(134, 239, 172, 0.1);
    border: 2px solid rgba(134, 239, 172, 0.4);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.x-badge.verified {
    animation: fadeInLeft 0.6s ease forwards;
}

.x-badge.safe {
    animation: fadeInRight 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.x-pumpfun-card {
    background: rgba(134, 239, 172, 0.05);
    border: 2px solid rgba(134, 239, 172, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: scaleIn 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.x-pumpfun-label {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.x-pumpfun-logo-big {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.x-pumpfun-logo-big img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.x-pumpfun-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.x-progress-bar {
    width: 100%;
    max-width: 450px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.x-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

.x-redirect-text {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

/* ========================================
   Loading Screen
======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.loading-screen.active {
    opacity: 1;
    pointer-events: all;
}

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

.loading-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 40px var(--accent-glow));
}

.loading-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid var(--accent);
    animation: loadingPulse 2s ease-in-out infinite;
}

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

.loading-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.loading-subtitle {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.loading-status {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ========================================
   Demo Modal Styles
======================================== */
.demo-modal .demo-modal-content {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

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

.demo-screen {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-step {
    display: none;
    opacity: 0;
    animation: demoFadeIn 0.5s ease forwards;
    width: 100%;
}

.demo-step.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

/* Phone Frame */
.demo-phone {
    width: 320px;
    height: 600px;
    position: relative;
}

.demo-phone-frame {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border: 10px solid #1a1a1a;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

.demo-phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.demo-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    overflow-y: auto;
}

.demo-phone-screen-dark {
    background: #000;
}

/* Mobile Header in Demo */
.demo-mobile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 35px 20px 15px;
    border-bottom: 1px solid var(--border-primary);
}

.demo-mobile-logo {
    border-radius: 8px;
}

.demo-mobile-header span {
    font-size: 1rem;
    font-weight: 700;
}

.demo-mobile-content {
    padding: 50px 25px;
    text-align: center;
}

.demo-mobile-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.demo-mobile-content .highlight {
    color: var(--accent);
}

.demo-mobile-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.demo-connect-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow), 0 5px 15px var(--accent-glow); }
    50% { box-shadow: 0 0 0 10px rgba(134, 239, 172, 0), 0 5px 25px var(--accent-glow); }
}

/* Wallet Selection */
.demo-wallet-select {
    padding: 50px 20px;
}

.demo-wallet-select h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.demo-wallet-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.demo-wallet-option:hover {
    border-color: var(--accent);
    background: var(--bg-accent);
}

.demo-wallet-option span {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Transaction Screen */
.demo-transaction {
    padding: 50px 20px;
    text-align: center;
}

.demo-tx-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.demo-tx-header svg {
    border-radius: 16px;
}

.demo-tx-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.demo-tx-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 25px;
}

.demo-tx-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.demo-tx-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-tx-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.demo-tx-row span:first-child {
    color: var(--text-tertiary);
}

.demo-tx-row span:last-child {
    font-weight: 600;
}

.demo-approve-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.demo-approve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

/* Scanning Screen */
.demo-scanning {
    padding: 60px 25px;
    text-align: center;
}

.demo-scan-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.demo-scan-icon svg {
    position: relative;
    z-index: 2;
}

.scan-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    animation: scanRing 2s ease-in-out infinite;
}

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

.demo-scan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.demo-scan-status {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.demo-scan-progress {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.demo-scan-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.demo-scan-info {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

/* Result Screen */
.demo-result {
    padding: 40px 25px;
    text-align: center;
}

.demo-result-icon {
    margin-bottom: 20px;
}

.demo-result-icon svg {
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.demo-result-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.demo-result-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.demo-result-subtitle strong {
    color: var(--text-primary);
}

.demo-cashback-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(134, 239, 172, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 25px;
}

.demo-cashback-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-cashback-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.demo-cashback-usd {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

.demo-claim-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    animation: btnPulse 2s ease-in-out infinite;
}

/* Push Notification */
.demo-push-notification {
    position: absolute;
    top: 50px;
    left: 15px;
    right: 15px;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(0);
    animation: pushSlideIn 0.5s ease forwards;
    z-index: 100;
}

@keyframes pushSlideIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.demo-push-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.demo-push-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.demo-push-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-push-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.demo-push-text {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
}

.demo-push-time {
    font-size: 0.75rem;
    color: #888;
}

/* Success Content */
.demo-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 25px 40px;
    text-align: center;
}

.demo-success-icon {
    margin-bottom: 20px;
}

.demo-success-icon svg {
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.demo-success-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.demo-success-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.demo-success-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.demo-close-btn {
    width: 100%;
    max-width: 250px;
    padding: 14px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.demo-close-btn:hover {
    border-color: var(--accent);
    background: var(--bg-accent);
}

/* Demo Navigation Dots */
.demo-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.demo-dot {
    width: 10px;
    height: 10px;
    background: var(--border-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.demo-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Demo Modal Mobile */
@media (max-width: 768px) {
    .demo-modal .demo-modal-content {
        padding: 30px 15px;
        max-height: 95vh;
        border-radius: var(--radius-lg);
        margin: 10px;
    }
    
    .demo-screen {
        min-height: 450px;
    }
    
    .demo-phone {
        width: 280px;
        height: 520px;
    }
    
    .demo-phone-frame {
        border-width: 8px;
        border-radius: 35px;
    }
    
    .demo-phone-frame::before {
        width: 80px;
        height: 18px;
    }
    
    .demo-mobile-content {
        padding: 40px 20px;
    }
    
    .demo-mobile-content h2 {
        font-size: 1.4rem;
    }
    
    .demo-cashback-value {
        font-size: 2rem;
    }
    
    .x-verification-badges {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .x-badge {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .x-logo {
        width: 100px;
        height: 100px;
    }
    
    .x-pumpfun-logo-big {
        width: 90px;
        height: 90px;
    }
}
