/**
 * AvanteView - Landing Page Styles
 * Neon Cyber-Agrícola Theme (by Avante Agrícola)
 */

/* ============================
   AVANTE DESIGN SYSTEM
   ============================ */

:root {
  /* === CORES PRINCIPAIS === */
  --neon: #00CC6A;
  --neon-bright: #00DD7A;
  --neon-dark: #00AA55;
  --neon-glow: rgba(0, 200, 100, 0.35);
  --neon-soft: rgba(0, 200, 100, 0.08);
  
  /* === COR SECUNDÁRIA (CYAN/AZUL) === */
  --accent: #00B4D8;
  --accent-bright: #48CAE4;
  --accent-glow: rgba(0, 180, 216, 0.3);
  
  /* === COR TERCIÁRIA (AMARELO/DOURADO) === */
  --gold: #FFD700;
  --gold-dim: #C9A227;
  --gold-glow: rgba(255, 215, 0, 0.3);
  
  /* === BACKGROUNDS === */
  --bg: #010508;
  --bg-card: rgba(5, 15, 20, 0.6);
  --bg-glass: rgba(0, 180, 216, 0.02);
  
  /* === TEXTOS === */
  --text: #FFFFFF;
  --text-dim: #8BA4AC;
  
  /* === BORDAS === */
  --border: rgba(100, 150, 160, 0.15);
  --border-hover: rgba(0, 200, 100, 0.4);
  
  /* === POSITIVO/NEGATIVO === */
  --color-up: #22C55E;
  --color-up-bg: rgba(34, 197, 94, 0.2);
  --color-down: #EF4444;
  --color-down-bg: rgba(239, 68, 68, 0.2);
  
  /* === BLUR SYSTEM === */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 32px;
  --blur-xl: 64px;
  
  /* === SPACING === */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* === RADIUS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(100, 150, 160, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 150, 160, 0.5);
}

/* === SELECTION === */
::selection {
  background: rgba(0, 180, 216, 0.3);
  color: white;
}

/* ============================================
   GLOW ORBS BACKGROUND
   ============================================ */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-orb 10s infinite ease-in-out;
}

.glow-orb-1 {
  top: 5%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: rgba(0, 180, 216, 0.08);
}

.glow-orb-2 {
  bottom: 10%;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(0, 200, 100, 0.06);
  animation-delay: -5s;
}

.glow-orb-3 {
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(255, 215, 0, 0.03);
  animation-delay: -2.5s;
}

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

/* === GRID SUTIL === */
.grid-neon {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(100, 150, 160, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 150, 160, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
}

/* ============================================
   NEON TEXT EFFECTS
   ============================================ */
.neon-text {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon-glow);
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-glow);
}

.gold-text {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl) var(--spacing-2xl);
  background: rgba(1, 5, 3, 0.8);
  backdrop-filter: blur(var(--blur-md));
  border-bottom: 1px solid var(--border);
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 80px;
  width: auto;
}

.header-center {
  flex: 1;
  text-align: center;
}

.header-subtitle {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-neon {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-bright) 100%);
  color: #000;
  box-shadow: 0 4px 20px var(--neon-glow);
}

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

.btn-neon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--neon-glow);
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.6s;
}

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

.btn-neon svg {
  stroke: #000;
}

.btn-outline {
  background: rgba(0, 255, 136, 0.05);
  color: var(--neon);
  border: 2px solid var(--neon);
  backdrop-filter: blur(16px);
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 
    0 0 40px var(--neon-glow),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  transform: translateY(-3px);
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   SIDEBARS
   ============================================ */
.sidebar-left,
.sidebar-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* ============================================
   PARTNER SLOTS
   ============================================ */
.partner-slot {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-slot:hover {
  border-color: var(--border-hover);
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-width: 160px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.float-delay {
  animation-delay: 1.5s;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: linear-gradient(135deg, rgba(20, 40, 50, 0.5) 0%, rgba(10, 20, 25, 0.7) 100%);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 100, 0.05), transparent);
  transition: left 0.8s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   PRICE PANEL
   ============================================ */
.price-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.prices-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

/* ============================================
   PRICE CARDS
   ============================================ */
.price-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.price-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}

.price-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--spacing-xs);
}

.price-value {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.price-value::before {
  content: 'R$ ';
  font-size: 1.25rem;
  opacity: 0.6;
  font-weight: 400;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-change.positive,
.badge-up {
  background: var(--color-up-bg);
  color: var(--color-up);
}

.price-change.negative,
.badge-down {
  background: var(--color-down-bg);
  color: var(--color-down);
}

.price-change.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}

/* ============================================
   DOLLAR VALUE
   ============================================ */
.price-value-dollar::before {
  content: 'US$ ';
}

.price-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.7;
}

/* ============================================
   UPDATE INFO
   ============================================ */
.update-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--text-dim);
}

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

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.update-text strong,
.update-next strong {
  color: var(--text);
}

/* ============================================
   INFO CARDS (Sidebar Right)
   ============================================ */
.info-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--border-hover);
}

.info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.info-title .icon-svg svg {
  stroke: var(--accent);
}

.info-text {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.btn-access {
  display: inline-block;
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-access:hover {
  background: rgba(0, 180, 216, 0.2);
  border-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-xl);
  background: rgba(1, 5, 3, 0.9);
  backdrop-filter: blur(var(--blur-md));
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.separator {
  opacity: 0.3;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(var(--blur-sm));
}

.modal {
  background: linear-gradient(135deg, rgba(20, 40, 50, 0.95) 0%, rgba(10, 20, 25, 0.98) 100%);
  backdrop-filter: blur(var(--blur-xl));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--neon);
}

.modal-text {
  color: var(--text-dim);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9375rem;
}

/* ============================================
   FORM INPUTS
   ============================================ */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: var(--spacing-xs);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(20, 40, 50, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* ============================================
   SVG ICONS
   ============================================ */
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-svg.icon-sm { width: 1em; height: 1em; }
.icon-svg.icon-lg { width: 2em; height: 2em; }
.icon-svg.icon-xl { width: 3em; height: 3em; }

.icon-svg.icon-muted svg { stroke: var(--text-dim); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 10px var(--neon-glow)); }
  50% { filter: drop-shadow(0 0 30px var(--neon-glow)) drop-shadow(0 0 60px var(--neon-glow)); }
}

.animate-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-card {
  animation: slide-up 0.8s ease-out forwards;
  animation-fill-mode: backwards;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

/* Loading state */
.loading .price-value {
  animation: glow-pulse 1.5s ease-in-out infinite;
  color: var(--text-dim);
}

/* ============================================
   ADMIN CONFIG (Hidden by default)
   ============================================ */
.admin-config {
  display: none;
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: 50;
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 300px;
}

.admin-config label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: var(--spacing-xs);
}

.admin-config select {
  width: 100%;
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .main {
    grid-template-columns: 1fr;
  }
  
  .sidebar-left,
  .sidebar-right {
    display: none;
  }
  
  .prices-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .prices-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .header-left {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .brand-tagline {
    padding-left: 0;
    border-left: none;
  }
  
  .header-center {
    display: none;
  }
}

@media (max-width: 600px) {
  .price-value {
    font-size: 2.5rem;
  }
  
  .price-value::before {
    font-size: 1rem;
  }
  
  .btn {
    padding: 14px 22px;
    font-size: 14px;
    min-height: 44px;
    min-width: 44px;
  }
  
  .glass-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
  }
  
  .update-info {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  
  .glow-orb {
    opacity: 0.15;
    filter: blur(60px);
  }
  
  .footer {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

/* Extra small devices (flip phones, small Androids) */
@media (max-width: 480px) {
  :root {
    --spacing-xs: 4px;
    --spacing-sm: 6px;
    --spacing-md: 10px;
    --spacing-lg: 14px;
    --spacing-xl: 18px;
  }
  
  .header {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .logo img {
    height: 50px;
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .brand-tagline {
    display: none;
  }
  
  .price-card {
    padding: var(--spacing-md);
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .price-label {
    font-size: 0.75rem;
  }
  
  .price-date {
    font-size: 0.65rem;
  }
  
  .clickable-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .glow-orb {
    display: none;
  }
  
  .grid-neon {
    opacity: 0.02;
  }
}

/* ============================================
   CLICKABLE CARDS
   ============================================ */

.clickable-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.clickable-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 204, 106, 0.3),
    0 0 30px rgba(0, 180, 216, 0.2);
  border-color: var(--neon-secondary);
}

.clickable-card:active {
  transform: translateY(-4px) scale(1.01);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-container.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast {
  background: rgba(10, 25, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--neon-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 204, 106, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 400px;
  max-width: 90vw;
  animation: toastGlow 2s ease-in-out infinite;
}

@keyframes toastGlow {
  0%, 100% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(0, 204, 106, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(0, 180, 216, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.toast-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.toast-content {
  flex: 1;
}

.toast-title {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.toast-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.toast-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-btn-primary {
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.4);
}

.toast-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 106, 0.5);
}

.toast-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

/* Toast responsive */
@media (max-width: 576px) {
  .toast {
    flex-direction: column;
    text-align: center;
    min-width: unset;
    width: calc(100vw - 40px);
    padding: var(--spacing-lg);
  }
  
  .toast-actions {
    width: 100%;
  }
  
  .toast-btn {
    flex: 1;
    min-height: 44px;
  }
}

/* Disable heavy effects on low-end devices */
@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  .glow-orb,
  .grid-neon {
    display: none;
  }
  
  * {
    animation: none !important;
    transition-duration: 0.1s !important;
  }
}

/* Safe area for notched phones (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
  }
  
  .toast-container {
    bottom: calc(30px + env(safe-area-inset-bottom));
  }
}
