/* ============================================
   FlashNode Pro - Complete Stylesheet
   Modern Dark Crypto Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-base: #050507;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-active: rgba(255, 255, 255, 0.2);
    --accent-violet: #7c3aed;
    --accent-violet-light: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-pink-light: #f472b6;
    --accent-gold: #fbbf24;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --glow-violet: 0 0 20px rgba(124, 58, 237, 0.4), 0 0 40px rgba(124, 58, 237, 0.2);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

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

::selection {
    background: rgba(124, 58, 237, 0.4);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--accent-violet);
    border-radius: 3px;
}

/* ---- Canvas Background ---- */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 64px;
    transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

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

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

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: white;
    letter-spacing: -0.5px;
}

.logo-pro {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--accent-violet);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-violet-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

@media (max-width: 640px) {
    .nav { height: 56px; }
    .logo-text { font-size: 15px; }
    .status-pill { font-size: 11px; padding: 4px 10px; }
    .nav-inner { padding: 0 16px; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(5, 5, 7, 0.5) 0%, rgba(5, 5, 7, 0.1) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.hero-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 15px; }
    .hero-frame { width: 90vw; height: 150px; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-violet), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: white;
}

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

@media (max-width: 640px) {
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 14px; margin-bottom: 32px; }
}

/* ============================================
   PRICING SECTION - REDESIGNED
   ============================================ */
.pricing {
    position: relative;
    z-index: 1;
    padding: 100px 0 60px;
}

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

/* ---- Card Shell ---- */
.pricing-card {
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Animated gradient border */
.card-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(124,58,237,0.15), rgba(255,255,255,0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s;
}

.pricing-card:hover .card-border {
    background: linear-gradient(135deg, rgba(124,58,237,0.9), rgba(139,92,246,0.5), rgba(236,72,153,0.3));
}

.card-border.pink {
    background: linear-gradient(135deg, rgba(236,72,153,0.7), rgba(236,72,153,0.25), rgba(255,255,255,0.1));
}

.pricing-card.featured:hover .card-border.pink {
    background: linear-gradient(135deg, rgba(236,72,153,1), rgba(244,114,182,0.6), rgba(124,58,237,0.4));
}

.card-border.gold {
    background: linear-gradient(135deg, rgba(251,191,36,0.7), rgba(251,191,36,0.25), rgba(255,255,255,0.1));
}

.pricing-card.whale:hover .card-border.gold {
    background: linear-gradient(135deg, rgba(251,191,36,1), rgba(245,158,11,0.6), rgba(124,58,237,0.4));
}

/* Inner card content */
.card-inner {
    position: relative;
    background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 28px 28px;
    text-align: center;
    overflow: hidden;
}

.pricing-card.active .card-inner {
    background: linear-gradient(165deg, rgba(124,58,237,0.12) 0%, rgba(124,58,237,0.04) 100%);
}

.pricing-card.featured.active .card-inner {
    background: linear-gradient(165deg, rgba(236,72,153,0.15) 0%, rgba(236,72,153,0.05) 100%);
}

.pricing-card.whale.active .card-inner {
    background: linear-gradient(165deg, rgba(251,191,36,0.12) 0%, rgba(251,191,36,0.04) 100%);
}

/* Shimmer effect for featured */
.shimmer {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: shimmerSweep 4s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Glow behind card */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(124,58,237,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    filter: blur(30px);
    z-index: -1;
}

.pricing-card:hover .card-glow,
.pricing-card.active .card-glow {
    opacity: 1;
}

.card-glow.pink {
    background: radial-gradient(ellipse, rgba(236,72,153,0.2), transparent 70%);
}

.card-glow.gold {
    background: radial-gradient(ellipse, rgba(251,191,36,0.2), transparent 70%);
}

/* ---- Ribbons ---- */
.featured-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.whale-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ---- Tier Icon ---- */
.tier-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.4s;
}

.pricing-card:hover .tier-icon {
    opacity: 1;
    transform: scale(1.1);
}

.tier-icon.featured-icon { opacity: 0.9; }
.tier-icon.gold-icon { opacity: 0.9; }

/* ---- Tier Name ---- */
.tier-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tier-name.pink-name {
    color: var(--accent-pink);
}

.tier-name.gold-name {
    color: var(--accent-gold);
}

/* ---- Price Row ---- */
.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-tag.pink-price {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag.gold-price {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(236,72,153,0.5);
}

.original-price.gold-strike {
    text-decoration-color: rgba(251,191,36,0.5);
}

/* ---- Amount Row ---- */
.amount-row {
    margin-bottom: 12px;
}

.amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.amount.pink-amount {
    background: linear-gradient(135deg, #fff, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amount.gold-amount {
    background: linear-gradient(135deg, #fff, #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unit {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--accent-violet);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ---- Deal Badge ---- */
.deal-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(236,72,153,0.12);
    border: 1px solid rgba(236,72,153,0.25);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.deal-badge.gold-badge {
    background: rgba(251,191,36,0.12);
    border-color: rgba(251,191,36,0.25);
    color: var(--accent-gold);
}

/* ---- Feature List ---- */
.feature-list {
    list-style: none;
    text-align: left;
    margin: 0 0 20px 0;
    padding: 16px 0 0 0;
    border-top: 1px solid var(--border-subtle);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li.gold-check {
    color: #fde68a;
}

/* ---- Select Button ---- */
.select-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
    border: 1.5px solid rgba(124,58,237,0.4);
    border-radius: 12px;
    color: var(--accent-violet-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s;
}

.select-btn:hover {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border-color: transparent;
    color: white;
    box-shadow: var(--glow-violet);
    transform: translateY(-2px);
}

.select-btn.pink-btn {
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05));
    border-color: rgba(236,72,153,0.4);
    color: var(--accent-pink);
}

.select-btn.pink-btn:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
    color: white;
    box-shadow: var(--glow-pink);
}

.select-btn.gold-btn {
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(251,191,36,0.05));
    border-color: rgba(251,191,36,0.4);
    color: var(--accent-gold);
}

.select-btn.gold-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
    box-shadow: 0 0 20px rgba(251,191,36,0.4);
}

.pricing-card.active .select-btn {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border-color: transparent;
    color: white;
}

.pricing-card.featured.active .select-btn.pink-btn {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
    color: white;
}

.pricing-card.whale.active .select-btn.gold-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
}

/* Grid responsive */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.whale { grid-column: span 2; }
    .pricing-card.whale .card-inner { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .pricing { padding: 60px 0 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.whale { grid-column: span 1; }
    .pricing-card { margin: 0 auto; max-width: 360px; }
    .card-inner { padding: 24px 20px 20px; }
    .amount { font-size: 32px; }
    .price-tag { font-size: 30px; }
    .tier-icon { width: 48px; height: 48px; }
}

/* ============================================
   TRANSACTION SECTION
   ============================================ */
.transaction {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

.transaction-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

/* ---- Form Panel ---- */
.form-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
}

.address-group {
    margin-bottom: 20px;
}

.field-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 12px 16px;
    overflow: hidden;
}

.address-code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-gold);
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--accent-violet);
    border-radius: 4px;
    color: var(--accent-violet);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--accent-violet);
    color: white;
    box-shadow: var(--glow-violet);
}

.copy-btn.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

/* Upload Zone */
.upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    border: 2px dashed var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    color: var(--text-secondary);
}

.upload-zone:hover {
    border-color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.05);
}

.upload-zone.has-file {
    border-color: #22c55e;
    border-style: solid;
    background: rgba(34, 197, 94, 0.05);
}

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

.upload-hint {
    font-size: 12px;
    color: var(--text-muted);
}

.file-preview {
    margin-top: 8px;
    display: none;
}

.file-preview.show {
    display: block;
}

.file-preview img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

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

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Credit Summary */
.credit-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    margin: 24px 0;
}

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

.credit-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-violet-light);
}

/* Confirm Button */
.confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-violet);
    background: linear-gradient(135deg, var(--accent-violet-light), var(--accent-pink));
}

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

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

.info-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-path {
    animation: borderDraw 3s ease-out forwards;
}

@keyframes borderDraw {
    to { stroke-dashoffset: 0; }
}

.info-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-violet-light);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
}

.info-icon {
    font-size: 16px;
}

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

.info-value {
    color: white;
    font-weight: 500;
}

/* Support Card */
.support-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
}

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

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-violet);
}

/* Wallets Card */
.wallets-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
}

.wallets-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.wallet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.wallet-item:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-active);
    color: white;
}

/* Responsive transaction */
@media (max-width: 1024px) {
    .transaction-grid {
        grid-template-columns: 1fr;
    }
    .info-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-card,
    .support-card,
    .wallets-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .form-panel { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .info-panel { flex-direction: column; }
    .info-card,
    .support-card,
    .wallets-card {
        min-width: auto;
        padding: 24px;
    }
    .wallet-grid { grid-template-columns: repeat(2, 1fr); }
    .address-box { flex-direction: column; align-items: flex-start; }
    .copy-btn { align-self: flex-end; }
    .transaction { padding: 40px 0 60px; }
}

/* ============================================
   COMMUNITY HUB - COMPLETE REDESIGN
   ============================================ */
.community-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

/* ---- Transaction Ticker ---- */
.tx-ticker {
    position: relative;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.05));
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-violet-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
    display: flex;
    gap: 32px;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.ticker-item .ticker-icon {
    font-size: 14px;
}

.ticker-item .ticker-tx {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-violet-light);
    background: rgba(124,58,237,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.ticker-item .ticker-amount {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ---- Community Grid Layout ---- */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

/* ---- Chat Panel ---- */
.chat-panel {
    background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--card-shadow);
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 12px;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.chat-title svg {
    color: var(--accent-violet);
}

.chat-stats {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 12px;
    color: var(--text-secondary);
}

.stat-online {
    display: flex;
    align-items: center;
    gap: 6px;
}

.green-dot-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.stat-divider {
    width: 1px;
    height: 14px;
    background: var(--border-subtle);
    margin: 0 10px;
}

.stat-msgs, .stat-today {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Activity Wave */
.activity-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.activity-wave span {
    width: 3px;
    background: linear-gradient(to top, var(--accent-violet), var(--accent-pink));
    border-radius: 2px;
    animation: waveBar 1.2s ease-in-out infinite;
}

.activity-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.activity-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.activity-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.activity-wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.activity-wave span:nth-child(5) { height: 30%; animation-delay: 0.4s; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Join Bar */
.join-bar {
    padding: 8px 24px;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.join-notification {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    animation: joinSlide 0.5s ease-out;
    white-space: nowrap;
}

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

.join-flag {
    font-size: 14px;
}

.join-name {
    color: var(--accent-violet-light);
    font-weight: 600;
}

.join-action {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ---- Messages ---- */
.chat-messages {
    max-height: 560px;
    overflow-y: auto;
    padding: 20px 24px;
    scroll-behavior: smooth;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    animation: messageSlide 0.35s ease-out;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.message-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.support-avatar {
    background: linear-gradient(135deg, #059669, #10b981);
}

.message-body {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    border-top-left-radius: 4px;
    padding: 12px 16px;
    transition: border-color 0.3s;
}

.message.user .message-body {
    border-left: 3px solid var(--accent-pink);
}

.message.support .message-body {
    border-left: 3px solid var(--accent-violet);
    background: rgba(124,58,237,0.04);
}

.verified-msg .message-body {
    border-left-color: var(--accent-gold);
    background: rgba(251,191,36,0.03);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.message-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: white;
}

.support-name {
    color: #34d399;
}

.role-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #34d399;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.2);
    padding: 2px 7px;
    border-radius: 4px;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.2);
    padding: 2px 8px;
    border-radius: 20px;
}

.country-tag {
    font-size: 14px;
    opacity: 0.7;
}

.message-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

.message-text {
    font-size: 13.5px;
    color: #c4c4cf;
    line-height: 1.6;
    word-wrap: break-word;
}

.message-text .highlight {
    color: var(--accent-violet-light);
    font-weight: 600;
}

.message-text .amount-tag {
    display: inline;
    color: var(--accent-gold);
    font-weight: 600;
    background: rgba(251,191,36,0.1);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.message-text strong {
    color: white;
    font-weight: 600;
}

.inline-tx {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-violet-light);
    background: rgba(124,58,237,0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Reactions */
.reactions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-subtle);
}

.reaction {
    font-size: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3px 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.reaction:hover {
    background: rgba(124,58,237,0.1);
    border-color: var(--accent-violet);
}

/* System Notice */
.system-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 16px;
    background: rgba(124,58,237,0.06);
    border: 1px dashed rgba(124,58,237,0.2);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.notice-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-violet);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.notice-green {
    color: #22c55e;
    font-weight: 600;
}

/* Inline Join */
.inline-join {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 16px;
    padding: 0 12px;
}

.join-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.join-text {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

.join-text strong {
    color: var(--accent-violet-light);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    animation: messageSlide 0.3s ease-out;
}

.typing-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

.typing-body {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    border-top-left-radius: 4px;
    padding: 10px 16px;
}

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

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent-violet);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* Chat Input */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px 18px;
    border-top: 1px solid var(--border-subtle);
}

.input-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.chat-input-area.joined .input-avatar {
    border: none;
    color: white;
}

.chat-input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.chat-input:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

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

.chat-send {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.chat-send:hover {
    box-shadow: var(--glow-violet);
    transform: scale(1.08);
}

/* ============================================
   JOIN CHAT MODAL
   ============================================ */
.join-modal {
    max-width: 400px;
    text-align: center;
}

.join-modal .modal-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.join-modal .modal-title {
    font-size: 24px;
}

.join-modal .modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.name-field {
    text-align: left;
    margin-bottom: 8px;
}

.name-field .field-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.name-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.modal-skip {
    display: block;
    width: calc(100% - 64px);
    margin: 0 32px 24px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-skip:hover {
    border-color: var(--border-active);
    color: white;
}

/* No additional styles needed */

@media (max-width: 640px) {
    .join-modal { margin: 16px; }
    .join-modal .modal-title { font-size: 20px; }
}

/* ============================================
   COMMUNITY SIDEBAR
   ============================================ */
.community-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot-small {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

/* Stats Card */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    text-align: center;
    padding: 14px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--border-active);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 11px;
    font-weight: 600;
}

.stat-change.up {
    color: #22c55e;
}

/* Online Users */
.online-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.online-avatars {
    display: flex;
}

.o-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: white;
    border: 2px solid rgba(5,5,7,0.8);
    margin-left: -8px;
    position: relative;
}

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

.o-avatar.more {
    background: var(--bg-surface-hover);
    border-color: var(--border-subtle);
    color: var(--text-secondary);
    font-size: 10px;
}

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

/* Trust Card */
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

.trust-item strong {
    color: white;
    font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    .community-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sidebar-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 640px) {
    .community-section { padding: 40px 0 60px; }
    .chat-header { padding: 14px 16px; }
    .chat-header-left { gap: 12px; }
    .chat-messages { padding: 14px 16px; max-height: 440px; }
    .chat-input-area { padding: 12px 16px 14px; }
    .chat-stats { font-size: 11px; }
    .chat-title { font-size: 14px; }
    .message-text { font-size: 13px; }
    .tx-ticker { padding: 10px 14px; }
    .ticker-label { font-size: 10px; }
    .stat-grid { gap: 8px; }
    .stat-box { padding: 10px 6px; }
    .stat-number { font-size: 16px; }
    .community-sidebar { flex-direction: column; }
    .sidebar-card { min-width: auto; padding: 18px; }
    .join-bar { padding: 6px 16px; min-height: 32px; }
    .typing-body { padding: 8px 12px; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-item.active {
    border-color: var(--accent-violet);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-surface);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-surface-hover);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
    color: var(--accent-violet);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

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

@media (max-width: 640px) {
    .faq-question { font-size: 14px; padding: 16px 20px; }
    .faq-item.active .faq-answer { padding: 0 20px 16px; }
    .faq-section { padding: 40px 0 60px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-link:hover {
    border-color: var(--accent-violet);
    color: white;
    background: rgba(124, 58, 237, 0.1);
}

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

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.toast-icon {
    width: 22px;
    height: 22px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #0a0a0f;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: var(--card-shadow);
}

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

.modal-header {
    padding: 32px 32px 0;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-body {
    padding: 0 32px;
}

.modal-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
}

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

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

.modal-value {
    color: white;
    font-weight: 500;
    word-break: break-all;
    text-align: right;
}

.modal-value.mono {
    font-family: var(--font-mono);
    font-size: 12px;
}

.modal-close {
    display: block;
    width: calc(100% - 64px);
    margin: 24px 32px 32px;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-light));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    box-shadow: var(--glow-violet);
    transform: translateY(-1px);
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* Floating particles animation (used by JS canvas) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
