/* ========================================
   X TOKEN PRESALE - PREMIUM DARK THEME
   ======================================== */

/* CSS Variables - X Design System (2026 Monochrome) */
:root {
    /* X Colors - Pure Black & White */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0f0f0f;
    --bg-card-hover: #171717;
    --bg-elevated: #1a1a1a;
    
    /* X Accent - White/Light for dark theme */
    --x-accent: #ffffff;
    --x-accent-hover: #e7e9ea;
    --x-accent-muted: #d6d9db;
    --x-accent-light: rgba(255, 255, 255, 0.1);
    --x-accent-subtle: rgba(255, 255, 255, 0.05);
    
    /* X Semantic Colors */
    --x-green: #00ba7c;
    --x-red: #f4212e;
    --x-yellow: #ffd400;
    
    /* X Text Colors */
    --text-primary: #e7e9ea;
    --text-secondary: #71767b;
    --text-tertiary: #536471;
    --text-inverse: #0f1419;
    
    /* X Border Colors */
    --border-color: #2f3336;
    --border-light: #3e4144;
    --border-focus: var(--x-accent);
    
    /* X Effects */
    --shadow-sm: 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-md: 0 0 15px rgba(255, 255, 255, 0.03);
    --shadow-lg: 0 0 30px rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.1);
    
    /* Typography - X uses Chirp */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Transitions - X uses 0.2s */
    --transition-fast: 0.2s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Border Radius - X Style */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

/* ========================================
   BUTTONS - X/Twitter Style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--x-accent);
    color: var(--text-inverse);
    font-weight: 700;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(239, 243, 244, 0.1);
    border-color: var(--border-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
    display: flex;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    height: 64px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.logo-text {
    color: var(--x-accent);
    font-weight: 700;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-auth .btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Language Switcher - Presale */
.lang-switcher-presale {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 8px;
}

.lang-switcher-presale .lang-btn,
.mobile-lang-switcher .lang-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-switcher-presale .lang-btn:hover,
.mobile-lang-switcher .lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-switcher-presale .lang-btn.active,
.mobile-lang-switcher .lang-btn.active {
    color: #000000;
    background: #ffffff;
}

.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu Open State */
.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    margin-bottom: 32px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Minimal Background - X Style */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

/* Subtle Grid Pattern - X Style */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center top, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    color: var(--x-accent);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.stat-value {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-cta .btn {
    padding: 16px 40px;
    font-size: 17px;
}

/* Progress Section */
.progress-section {
    width: 100%;
    max-width: 600px;
}

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

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

.progress-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--x-accent);
}

.progress-bar {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--x-accent);
    border-radius: var(--radius-full);
    transition: width 1.5s ease;
}

.progress-range {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
}

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

/* ========================================
   LIVE STATUS SECTION
   ======================================== */
.live-status {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.status-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.status-badge {
    text-align: center;
}

.status-badge h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--x-accent);
    margin-bottom: 4px;
}

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

.status-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

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

.status-progress {
    flex: 1;
    min-width: 300px;
}

.status-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.status-progress-label {
    color: var(--text-secondary);
}

.status-progress-value {
    color: var(--x-accent);
    font-weight: 600;
}

.status-progress-bar {
    height: 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.status-progress-fill {
    height: 100%;
    background: var(--x-accent);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.status-cta .btn {
    padding: 14px 32px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-gradient {
    color: var(--x-accent);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

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

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

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.partners-marquee {
    overflow: hidden;
    margin-top: 48px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-base);
}

.partner-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.partner-name {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ========================================
   TOKENOMICS SECTION
   ======================================== */
.tokenomics {
    padding: var(--section-padding);
}

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

.tokenomics-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.tokenomics-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Distribution Bars */
.distribution-item {
    margin-bottom: 24px;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.distribution-name {
    font-size: 14px;
    color: var(--text-primary);
}

.distribution-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.distribution-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

/* Token Details Table */
.token-details-table {
    width: 100%;
}

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

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

.token-detail-label {
    font-size: 15px;
    color: var(--text-secondary);
}

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

/* ========================================
   ROADMAP SECTION
   ======================================== */
.roadmap {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Connection Line */
.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
}

.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all var(--transition-base);
}

.roadmap-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.roadmap-card.active {
    border-color: var(--x-accent);
}

.roadmap-card.active .roadmap-quarter {
    color: var(--x-accent);
}

.roadmap-quarter {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.roadmap-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.roadmap-item::before {
    content: '→';
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* ========================================
   REWARDS SECTION
   ======================================== */
.rewards {
    padding: var(--section-padding);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.reward-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.reward-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

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

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

.reward-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* Prize Pool Banner */
.prize-pool {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.prize-pool-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.prize-pool-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.prize-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.prize-tag {
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-base);
}

.prize-tag:hover {
    border-color: var(--border-light);
    background: var(--x-accent-light);
}

/* ========================================
   PRIVILEGES SECTION
   ======================================== */
.privileges {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.privilege-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.privilege-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

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

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

.privilege-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* Exclusive Benefits Banner */
.exclusive-benefits {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.exclusive-benefits-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.exclusive-benefits-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.benefits-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.benefit-tag {
    padding: 12px 20px;
    background: var(--x-accent);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-inverse);
    transition: all var(--transition-base);
}

.benefit-tag:hover {
    background: var(--x-accent-hover);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--border-light);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--x-accent);
}

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

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

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: var(--section-padding);
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-title span {
    color: var(--x-accent);
}

.cta-description {
    position: relative;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta .btn {
    position: relative;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

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

.social-link:hover {
    color: var(--x-accent);
    border-color: var(--border-light);
    background: var(--x-accent-light);
}

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

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

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

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .rewards-grid,
    .privileges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-grid::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    /* Navigation */
    .nav-links,
    .nav-auth {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-cta .btn {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    /* Status */
    .status-container {
        flex-direction: column;
        text-align: center;
    }
    
    .status-progress {
        width: 100%;
    }
    
    /* Section titles */
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Features, Rewards, Privileges */
    .features-grid,
    .rewards-grid,
    .privileges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Roadmap */
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Prize Tags */
    .prize-tags,
    .benefits-tags {
        flex-direction: column;
    }
    
    .prize-tag,
    .benefit-tag {
        text-align: center;
    }
    
    /* CTA */
    .cta-card {
        padding: 48px 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-group {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-cta {
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 14px 12px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Progress bar */
    .presale-progress {
        padding: 16px;
    }
    
    .progress-info span {
        font-size: 12px;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-title {
        font-size: 17px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    /* Roadmap cards */
    .roadmap-card {
        padding: 24px 20px;
    }
    
    .roadmap-quarter {
        font-size: 12px;
    }
    
    .roadmap-title {
        font-size: 18px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 18px 16px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-brand-description {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.text-gradient {
    color: var(--x-accent);
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

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

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

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

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

/* Selection */
::selection {
    background: var(--x-accent);
    color: var(--text-inverse);
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets on mobile */
    .btn {
        min-height: 48px;
    }
    
    .form-input {
        min-height: 48px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .faq-question {
        min-height: 56px;
    }
    
    .password-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .checkbox-mark {
        width: 24px;
        height: 24px;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ========================================
   WALLET MODAL
   ======================================== */
.wallet-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.wallet-modal-overlay {
    display: none;
}

.wallet-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border: none;
    border-radius: 0;
    overflow: hidden;
    overflow-y: auto;
}

.wallet-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

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

.wallet-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Wallet Info Side */
.wallet-info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.wallet-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.wallet-title span {
    color: var(--x-accent);
}

.wallet-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.wallet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.wallet-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.wallet-feature svg {
    color: var(--text-tertiary);
}

.wallet-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-wallet-create {
    background: var(--x-accent);
    color: var(--text-inverse);
    padding: 14px 24px;
    font-size: 15px;
}

.btn-wallet-create:hover {
    background: var(--x-accent-hover);
}

.btn-wallet-login {
    padding: 14px 24px;
    font-size: 15px;
}

.wallet-terms {
    font-size: 13px;
    color: var(--text-tertiary);
}

.wallet-terms a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.wallet-terms a:hover {
    color: var(--text-primary);
}

/* Wallet Preview Side */
.wallet-preview {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Modal Trading Card - Splash Page */
.modal-trading-card {
    width: 100%;
    max-width: 340px;
    transform: none;
    animation: none;
}

.modal-trading-card .trading-header {
    padding: 12px 16px;
}

.modal-trading-card .live-trade-ticker {
    margin: 0 16px 16px;
}

.modal-trading-card .trading-stats {
    padding: 0 16px;
}

.modal-trading-card .trading-stats-divider {
    margin: 12px 16px 10px;
}

.modal-trading-card .trade-value {
    font-size: 18px;
}

/* Floating Icons - X Monochrome */
.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.floating-icon-2 {
    bottom: 25%;
    left: 20%;
    animation-delay: -2s;
}

.floating-icon-3 {
    top: 15%;
    right: 20%;
    animation-delay: -4s;
}

.floating-icon svg {
    fill: var(--text-secondary);
}

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

/* Portfolio Card - X Monochrome */
.wallet-card-preview {
    width: 280px;
    background: var(--x-accent);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    z-index: 1;
}

.wallet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wallet-card-badge {
    background: rgba(0, 0, 0, 0.15);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-inverse);
}

.wallet-card-header svg {
    color: rgba(0, 0, 0, 0.5);
}

.wallet-card-balance {
    text-align: center;
    margin-bottom: 24px;
}

.balance-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-inverse);
    letter-spacing: -0.02em;
}

.balance-currency {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

.wallet-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wallet-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-inverse);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
}

.wallet-card-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* ========================================
   WALLET VIEWS
   ======================================== */
.wallet-view {
    display: none;
    width: 100%;
    min-height: 100vh;
}

.wallet-view.active {
    display: block;
}

/* ========================================
   AUTH FORMS - Register & Login
   ======================================== */
.auth-view {
    display: none;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.auth-view.active {
    display: flex;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.auth-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 24px;
    transition: color var(--transition-base);
}

.auth-back-btn:hover {
    color: var(--x-accent);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x-accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    color: var(--x-accent);
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color var(--transition-base);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--x-accent);
}

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

.form-input-wrapper .form-input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-base);
}

.password-toggle:hover {
    color: var(--text-secondary);
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.password-strength.visible {
    opacity: 1;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.strength-fill.weak {
    width: 33%;
    background: #f59e0b;
}

.strength-fill.medium {
    width: 66%;
    background: var(--text-secondary);
}

.strength-fill.strong {
    width: 100%;
    background: #10b981;
}

.strength-text {
    font-size: 12px;
    font-weight: 500;
    min-width: 60px;
    text-align: right;
}

.strength-text.weak {
    color: #f59e0b;
}

.strength-text.medium {
    color: var(--text-secondary);
}

.strength-text.strong {
    color: #10b981;
}

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

.form-checkbox input {
    display: none;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.form-checkbox input:checked + .checkbox-mark {
    background: var(--x-accent);
    border-color: var(--x-accent);
}

.form-checkbox input:checked + .checkbox-mark::after {
    content: '✓';
    color: var(--text-inverse);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--text-secondary);
}

.checkbox-text a {
    color: var(--x-accent);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
    background: var(--x-accent);
    color: var(--text-inverse);
}

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

/* Auth Switch Link */
.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.auth-switch a {
    color: var(--x-accent);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Auth Social Proof */
.auth-social-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.social-proof-item .proof-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
}

.social-proof-item .proof-dot.pulse {
    animation: pulse 2s infinite;
}

.social-proof-item svg {
    color: #00ff88;
}

/* Auth Forms Responsive */
@media (max-width: 768px) {
    .auth-view {
        padding: 30px 24px;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .auth-card {
        max-width: 100%;
        border: none;
        background: transparent;
        padding: 24px 0;
    }
    
    .auth-title {
        font-size: 26px;
    }
    
    .auth-form {
        gap: 18px;
    }
    
    .form-input {
        padding: 16px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 18px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .auth-view {
        padding: 20px 16px;
        padding-top: 50px;
    }
    
    .auth-card {
        padding: 20px 0;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-subtitle {
        font-size: 14px;
    }
    
    .auth-icon {
        width: 48px;
        height: 48px;
    }
    
    .auth-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .auth-header {
        margin-bottom: 28px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-input {
        padding: 14px;
    }
    
    .auth-back-btn {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .password-strength {
        gap: 8px;
    }
    
    .strength-text {
        font-size: 11px;
        min-width: 50px;
    }
}

/* NFT Card - X Monochrome */
.nft-card-preview {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 120px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    z-index: 2;
}

.nft-avatar {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nft-avatar::after {
    content: '𝕏';
    font-size: 32px;
    color: var(--text-primary);
}

.nft-info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.nft-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.nft-balance {
    font-size: 11px;
    color: var(--text-secondary);
    margin-left: auto;
}

.nft-id {
    font-size: 10px;
    color: var(--text-tertiary);
    width: 100%;
}

/* Wallet Modal Responsive */
@media (max-width: 1024px) {
    .wallet-info {
        padding: 60px 48px;
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .wallet-modal-content {
        grid-template-columns: 1fr;
    }
    
    .wallet-info {
        max-width: 100%;
        padding: 80px 48px;
    }
    
    .wallet-preview {
        display: none;
    }
}

@media (max-width: 768px) {
    .wallet-info {
        padding: 80px 32px 48px;
        justify-content: flex-start;
    }
    
    .wallet-title {
        font-size: 32px;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .wallet-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .wallet-modal-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .wallet-info {
        padding: 72px 20px 32px;
    }
    
    .wallet-title {
        font-size: 26px;
    }
    
    .wallet-description {
        font-size: 15px;
    }
    
    .btn-wallet-create,
    .btn-wallet-login {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Very small screens (320px) */
@media (max-width: 360px) {
    /* Homepage */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Wallet Splash */
    .wallet-info {
        padding: 64px 16px 24px;
    }
    
    .wallet-title {
        font-size: 24px;
    }
    
    .wallet-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .wallet-features {
        margin-bottom: 24px;
    }
    
    .wallet-feature {
        font-size: 13px;
    }
    
    .btn-wallet-create,
    .btn-wallet-login {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .wallet-modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
    
    /* Auth Forms */
    .auth-view {
        padding: 16px 12px;
        padding-top: 40px;
    }
    
    .auth-title {
        font-size: 22px;
    }
    
    .auth-subtitle {
        font-size: 13px;
    }
    
    .form-input {
        padding: 12px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }
    
    .auth-back-btn {
        font-size: 12px;
    }
}

/* ========================================
   NOTIFICATION TOAST — Luxury Monochrome
   ======================================== */
.notification-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px) scale(0.96);
    padding: 0;
    background: rgba(18, 18, 20, 0.98);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    z-index: 3000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    max-width: 400px;
    width: max-content;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 0.5px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-family: var(--font-primary);
    overflow: hidden;
}

.notification-toast.active {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
}

.notification-accent {
    width: 3px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}

.notification-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    flex: 1;
    min-width: 0;
}

.notification-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

.notification-icon svg {
    width: 16px;
    height: 16px;
}

.notification-message {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.notification-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 16px;
    cursor: pointer;
    padding: 14px 14px 14px 4px;
    line-height: 1;
    transition: color 0.15s ease;
    flex-shrink: 0;
    align-self: center;
}

.notification-close:hover {
    color: rgba(255, 255, 255, 0.6);
}

.notification-success .notification-accent {
    background: rgba(255, 255, 255, 0.25);
}

.notification-success .notification-icon {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.notification-error .notification-accent {
    background: rgba(255, 100, 100, 0.35);
}

.notification-error .notification-icon {
    background: rgba(255, 100, 100, 0.1);
    color: rgba(255, 140, 140, 0.8);
}

.notification-info .notification-accent {
    background: rgba(255, 255, 255, 0.15);
}

.notification-info .notification-icon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
    .notification-toast {
        left: 12px;
        right: 12px;
        max-width: none;
        width: auto;
        transform: translateX(0) translateY(-80px) scale(0.96);
        top: 12px;
    }
    .notification-toast.active {
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* ========================================
   SEED PHRASE VIEW
   ======================================== */
.seed-phrase-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
}

.seed-header {
    text-align: center;
    margin-bottom: 24px;
}

.seed-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 186, 124, 0.1);
    border: 1px solid rgba(0, 186, 124, 0.2);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    color: var(--x-green);
}

.seed-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.seed-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.seed-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(244, 33, 46, 0.1);
    border: 1px solid rgba(244, 33, 46, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--x-red);
    font-size: 14px;
    font-weight: 500;
}

.seed-phrase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.seed-word {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.seed-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    min-width: 20px;
}

.seed-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: monospace;
}

.wallet-address-display {
    margin-bottom: 24px;
}

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

.address-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.address-box code {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
    font-family: monospace;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-base);
}

.copy-btn:hover {
    color: var(--text-primary);
}

.seed-actions {
    margin-bottom: 16px;
}

.seed-disclaimer {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
}

/* Seed phrase responsive */
@media (max-width: 600px) {
    .seed-phrase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seed-phrase-card {
        padding: 24px 20px;
    }
    
    .seed-title {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .seed-phrase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .seed-word {
        padding: 10px 12px;
    }
    
    .seed-text {
        font-size: 13px;
    }
}

/* ========================================
   BACKUP FLOW (Post-Registration)
   ======================================== */
.backup-view {
    display: none;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.backup-view.active {
    display: flex;
    opacity: 1;
}

.backup-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Step 1: Intro Card */
.backup-intro {
    max-width: 480px;
    text-align: center;
    padding: 60px 40px;
}

.backup-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x-accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin: 0 auto 40px;
    color: var(--x-accent);
}

.backup-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.backup-title span {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.backup-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 360px;
}

.btn-backup {
    background: var(--x-accent);
    color: var(--text-inverse);
    padding: 16px 32px;
    font-size: 16px;
}

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

/* Step 2: Seed Phrase Card */
.backup-seed {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.backup-left {
    padding-right: 20px;
}

.backup-step-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 193, 7, 0.9);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 0.03em;
}

.backup-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.seed-box {
    background: linear-gradient(145deg, rgba(32, 32, 32, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.seed-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding: 14px 18px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 12px;
}

.seed-box-header svg {
    flex-shrink: 0;
    color: #ffc107;
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.4));
}

.seed-box-header strong {
    color: #ffc107;
    font-weight: 600;
}

.seed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.seed-word-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 14px;
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.6) 0%, rgba(25, 25, 25, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.seed-word-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.seed-word-box:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.word-num {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
    min-width: 24px;
    text-align: center;
}

.word-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    letter-spacing: 0.02em;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.word-text.blurred {
    filter: blur(6px);
    user-select: none;
    opacity: 0.6;
}

.seed-box-actions {
    display: flex;
    gap: 12px;
}

.seed-box-actions .btn {
    flex: 1;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.seed-box-actions .btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
}

.seed-box-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.seed-box-actions .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.seed-box-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-next {
    background: #ffffff;
    color: #000000;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.2s ease;
}

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

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

/* Step 3: Confirm Card */
.backup-confirm {
    max-width: 500px;
    text-align: center;
    padding: 60px 40px;
}

.backup-step-label-simple {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    display: block;
}

.backup-title-center {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.backup-description-center {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
}

.backup-checkbox-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    cursor: pointer;
}

.backup-checkbox-simple input {
    display: none;
}

.backup-checkbox-simple .checkbox-mark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.backup-checkbox-simple input:checked + .checkbox-mark {
    background: #ffffff;
    border-color: #ffffff;
}

.backup-checkbox-simple input:checked + .checkbox-mark::after {
    content: '✓';
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

.backup-checkbox-simple .checkbox-label {
    font-size: 15px;
    color: #ffffff;
}

.btn-confirm {
    background: #ffffff;
    color: #000000;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.2s ease;
}

.btn-confirm:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

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

/* Backup Flow Responsive */
@media (max-width: 900px) {
    .backup-seed {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .backup-left {
        padding-right: 0;
        text-align: center;
    }
    
    .backup-step-label {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .backup-seed {
        gap: 16px;
    }

    .backup-view {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 50px;
    }
    
    .backup-intro,
    .backup-confirm {
        padding: 32px 24px;
    }
    
    .backup-title {
        font-size: 36px;
    }
    
    .backup-title-center {
        font-size: 30px;
    }
    
    .backup-description {
        font-size: 15px;
    }
    
    .backup-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 32px;
    }
    
    .backup-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .seed-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .seed-word-box {
        padding: 12px 8px;
    }
    
    .word-text {
        font-size: 13px;
    }
    
    .seed-box {
        padding: 20px 16px;
    }
    
    .btn-backup,
    .btn-next,
    .btn-confirm {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .backup-view {
        padding: 12px 12px;
        padding-top: 40px;
    }
    
    .backup-intro,
    .backup-confirm {
        padding: 24px 16px;
    }
    
    .backup-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .backup-title-center {
        font-size: 24px;
    }
    
    .backup-description,
    .backup-description-center {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .backup-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .backup-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .backup-right {
        gap: 14px;
    }
    
    .seed-box {
        padding: 14px 12px;
    }
    
    .seed-box-header {
        font-size: 12px;
        padding: 10px 12px;
        margin-bottom: 14px;
        gap: 10px;
    }
    
    .seed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .seed-word-box {
        padding: 8px 6px;
        gap: 4px;
        border-radius: 10px;
    }
    
    .word-num {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .word-text {
        font-size: 12px;
    }
    
    .seed-box-actions {
        gap: 8px;
    }
    
    .seed-box-actions .btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .btn-next {
        position: sticky;
        bottom: 12px;
        z-index: 50;
        padding: 14px;
        font-size: 15px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    }
    
    .backup-checkbox {
        flex-direction: row;
        gap: 10px;
    }
    
    .backup-checkbox .checkbox-label {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .backup-title {
        font-size: 26px;
    }
    
    .backup-title-center {
        font-size: 24px;
    }
    
    .backup-description {
        font-size: 13px;
    }
    
    .seed-word-box {
        padding: 8px 6px;
    }
    
    .word-text {
        font-size: 11px;
    }
    
    .btn-backup,
    .btn-next,
    .btn-confirm {
        padding: 14px;
        font-size: 15px;
    }
}

/* ==================== Trust Elements ==================== */

/* Hero Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.hero-trust-badge svg {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

/* Trust Quote Section - Twitter/X Post Style */
.trust-quote-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.x-post-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 24px;
}

.x-post-container {
    position: relative;
}

/* Subtle glow effect behind post */
.x-post-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(29, 155, 240, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* X Post Card */
.x-post {
    position: relative;
    z-index: 1;
    background: #000000;
    border: 1px solid #2f3336;
    border-radius: 20px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Post Header */
.x-post-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.x-post-avatar {
    flex-shrink: 0;
}

.x-post-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(135deg, #1d9bf0, #8b5cf6) border-box;
}

.x-post-user-info {
    flex: 1;
    min-width: 0;
}

.x-post-name-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.x-post-name {
    font-size: 15px;
    font-weight: 700;
    color: #e7e9ea;
    line-height: 20px;
}

.x-post-name:hover {
    text-decoration: underline;
    cursor: pointer;
}

.x-verified-badge {
    flex-shrink: 0;
    margin-left: 2px;
}

.x-post-handle {
    font-size: 15px;
    color: #71767b;
    line-height: 20px;
}

.x-post-logo {
    margin-left: auto;
    color: #ffffff;
    opacity: 0.9;
}

/* Post Content */
.x-post-content {
    margin-bottom: 16px;
    padding-left: 60px;
}

.x-post-main {
    font-size: 23px;
    color: #e7e9ea;
    line-height: 1.4;
    margin: 0 0 16px;
    word-wrap: break-word;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.x-post-secondary {
    font-size: 15px;
    color: #71767b;
    line-height: 1.5;
    margin: 0;
}

/* Post Timestamp */
.x-post-time {
    padding: 16px 0;
    padding-left: 60px;
    border-bottom: 1px solid #2f3336;
    font-size: 15px;
    color: #71767b;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.x-post-separator {
    color: #71767b;
}

.x-post-views strong {
    color: #e7e9ea;
    font-weight: 700;
}

/* Post Engagement Stats */
.x-post-engagement {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    padding-left: 60px;
    border-bottom: 1px solid #2f3336;
    flex-wrap: wrap;
}

.x-post-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.x-post-stat:hover {
    opacity: 0.8;
}

.x-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #e7e9ea;
}

.x-stat-label {
    font-size: 14px;
    color: #71767b;
}

/* Post Actions */
.x-post-actions {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 4px;
    margin-left: 48px;
}

.x-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #71767b;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s;
}

.x-action-btn span {
    font-size: 13px;
}

/* Action button hover states */
.x-action-btn.x-action-reply:hover {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
}

.x-action-btn.x-action-repost:hover {
    background: rgba(0, 186, 124, 0.1);
    color: #00ba7c;
}

.x-action-btn.x-action-like:hover {
    background: rgba(249, 24, 128, 0.1);
    color: #f91880;
}

.x-action-btn.x-action-bookmark:hover {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
}

.x-action-btn.x-action-share:hover {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
}

/* Liked state */
.x-action-btn.x-action-liked {
    color: #f91880;
}

.x-action-btn.x-action-liked svg path {
    fill: #f91880;
}

/* Responsive for X Post */
@media (max-width: 768px) {
    .trust-quote-section {
        padding: 30px 0;
    }
    
    .x-post-wrapper {
        padding: 0 16px;
    }
    
    .x-post {
        border-radius: 16px;
        padding: 16px;
    }
    
    .x-post-content {
        padding-left: 0;
    }
    
    .x-post-main {
        font-size: 18px;
    }
    
    .x-post-time {
        padding-left: 0;
    }
    
    .x-post-engagement {
        padding-left: 0;
        gap: 16px;
    }
    
    .x-post-actions {
        margin-left: 0;
        justify-content: space-between;
        padding: 8px 0 0;
    }
    
    .x-action-btn {
        padding: 8px;
    }
    
    .x-action-btn span {
        display: none;
    }
}

/* Wallet Trust Message */
.wallet-trust-message {
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.wallet-trust-message p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.01em;
}

.wallet-feature-trust {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 8px;
}

/* Responsive adjustments for trust elements */
@media (max-width: 768px) {
    .hero-trust-badge {
        font-size: 12px;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .hero-trust-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .trust-quote-section {
        padding: 30px 0;
    }
    
    .trust-quote-mark {
        font-size: 48px;
    }
    
    .trust-quote-text {
        font-size: 18px;
    }
    
    .trust-quote-subtext {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-quote-subtext svg {
        display: none;
    }
}
