/* ============================================
   Flap Tax Token - Styles
   Theme: Binance (Gold + Dark) + Glassmorphism
   ============================================ */

/* CSS Variables */
:root {
  /* Binance Colors */
  --primary: #F0B90B;
  --primary-hover: #FFD54F;
  --primary-dark: #C99A00;
  
  /* Dark Theme */
  --bg-primary: #0B0E11;
  --bg-secondary: #1E2026;
  --bg-card: #2B3139;
  --bg-hover: #363C45;
  
  /* Text Colors */
  --text-primary: #EAECEF;
  --text-secondary: #848E9C;
  --text-muted: #5E6673;
  
  /* Glass Effect */
  --glass-bg: rgba(43, 49, 57, 0.6);
  --glass-border: rgba(240, 185, 11, 0.1);
  --glass-blur: 16px;
  
  /* Misc */
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 14px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Effects */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240, 185, 11, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(240, 185, 11, 0.1), transparent);
  pointer-events: none;
  z-index: -2;
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(240, 185, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 185, 11, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 185, 11, 0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-icon {
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}

.logo-text .accent,
.accent {
  color: var(--primary);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition);
}

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

.btn-connect {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-icon {
  font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(240, 185, 11, 0.08);
  border: 1px solid rgba(240, 185, 11, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 16px;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240, 185, 11, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--bg-card);
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--bg-card);
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 340px;
}

.token-preview {
  padding: 20px;
  animation: float 6s ease-in-out infinite;
}

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

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

.token-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
}

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

.token-name {
  font-size: 1rem;
  font-weight: 600;
}

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

.token-address-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.copy-address-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 3px 5px;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

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

.token-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.token-stat {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.token-stat .value {
  font-size: 14px;
  font-weight: 600;
}

.token-stat .value.accent {
  color: var(--primary);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 60px 0;
}

.section-dark {
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

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

/* How it Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 185, 11, 0.2);
}

.step-number {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.step-icon {
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}

.step .command {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  color: var(--primary);
}

.step-detail {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.step-detail.accent {
  color: var(--primary);
}

/* Create Section */
.create-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.create-card {
  padding: 24px;
  position: relative;
}

.create-card.featured {
  border-color: rgba(240, 185, 11, 0.2);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 3px 10px;
  background: var(--primary);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.create-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.create-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 16px;
}

.code-block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  margin-bottom: 16px;
}

.code-block code {
  flex: 1;
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  color: var(--primary);
}

.copy-btn {
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--bg-hover);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}

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

.feature-list {
  list-style: none;
}

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

.feature-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.create-note {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(240, 185, 11, 0.04);
  border-color: rgba(240, 185, 11, 0.15);
}

.note-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.note-content {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.note-content strong {
  color: var(--text-primary);
}

/* Claim Section */
.claim-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.claim-card {
  padding: 28px;
}

.claim-state {
  text-align: center;
}

.claim-state.hidden {
  display: none;
}

.claim-icon {
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.claim-state h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.claim-state > p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
}

.btn-large {
  padding: 12px 24px;
  font-size: 14px;
}

/* Connected State */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.user-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-name {
  font-weight: 600;
  font-size: 13px;
}

.user-id {
  font-size: 11px;
  color: var(--text-secondary);
}

.btn-disconnect {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--bg-hover);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-disconnect:hover {
  border-color: #ff4757;
  color: #ff4757;
}

.earnings-display {
  text-align: center;
  padding: 20px;
  background: rgba(240, 185, 11, 0.04);
  border: 1px solid rgba(240, 185, 11, 0.15);
  border-radius: 12px;
  margin-bottom: 16px;
}

.earnings-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.earnings-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.earnings-usd {
  font-size: 13px;
  color: var(--text-secondary);
}

.tokens-list {
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.token-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
}

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

.btn-claim {
  width: 100%;
}

.btn-claim:disabled {
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.claim-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Claim Info */
.claim-info {
  padding: 24px;
  height: fit-content;
}

.claim-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.claim-steps {
  list-style: none;
  margin-bottom: 16px;
}

.claim-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--bg-card);
}

.claim-steps li:last-child {
  border-bottom: none;
}

.step-num {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.info-box {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(240, 185, 11, 0.04);
  border-radius: 6px;
}

.info-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 16px 0;
  border-top: 1px solid var(--bg-card);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand > div:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand .logo-icon {
  border-radius: 3px;
}

.footer-brand .logo-text {
  font-size: 13px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 11px;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(240, 185, 11, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 6px;
  color: var(--primary);
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  display: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 28px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 340px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .create-grid {
    grid-template-columns: 1fr;
  }
  
  .claim-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

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

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

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

/* ============================================
   Modal
   ============================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

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

.modal-content {
  width: 100%;
  max-width: 380px;
  margin: 20px;
  padding: 24px;
  animation: modalSlide 0.2s ease;
}

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

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

.modal-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.modal-header h3 svg {
  color: var(--primary);
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}

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

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 16px;
}

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

.form-input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bg-card);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.1);
}

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

.login-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.login-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

.login-note svg {
  flex-shrink: 0;
}

/* ============================================
   Wallet Section
   ============================================ */
.wallet-section {
  margin-bottom: 16px;
}

.wallet-display {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-family: 'SF Mono', monospace;
}

.wallet-display svg {
  color: var(--primary);
}

.wallet-display span {
  flex: 1;
  color: var(--text-secondary);
}

.btn-edit {
  padding: 4px 8px;
  background: transparent;
  border: 1px solid var(--bg-hover);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
}

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

.wallet-form {
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.wallet-form .form-label {
  margin-bottom: 8px;
}

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

.input-group .form-input {
  flex: 1;
}

.btn-save {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ============================================
   Notifications
   ============================================ */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-hover);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  animation: slideIn 0.2s ease;
  max-width: 360px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-success {
  border-color: rgba(76, 175, 80, 0.4);
  background: rgba(76, 175, 80, 0.1);
}

.notification-error {
  border-color: rgba(244, 67, 54, 0.4);
  background: rgba(244, 67, 54, 0.1);
}

.notification-info {
  border-color: rgba(240, 185, 11, 0.4);
}

.notification span {
  flex: 1;
  font-size: 13px;
}

.notification button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.notification button:hover {
  color: var(--text-primary);
}

/* ============================================
   Loading Spinner
   ============================================ */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Beneficiary Section
   ============================================ */
.beneficiary-section {
  padding: 16px;
  background: rgba(240, 185, 11, 0.05);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.beneficiary-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beneficiary-address {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beneficiary-address code {
  flex: 1;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  word-break: break-all;
}

.btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--bg-hover);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

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

.beneficiary-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   Tokens Section
   ============================================ */
.tokens-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

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

.tokens-header h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.tokens-count {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-hover);
  padding: 4px 10px;
  border-radius: 12px;
}

.tokens-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.tokens-loading,
.tokens-empty {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 13px;
}

.token-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.token-item:hover {
  border-color: rgba(240, 185, 11, 0.3);
  background: var(--bg-hover);
}

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

.token-address {
  flex: 1;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 11px;
  color: var(--text-secondary);
}

.token-links {
  display: flex;
  gap: 8px;
}

.token-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.token-link svg {
  width: 14px;
  height: 14px;
}

/* Utility */
.hidden {
  display: none !important;
}
