/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(24, 34, 56, 0.85);
  --bg-input: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-cyan: #00d4ff;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-green: #00e676;
  --accent-red: #ff5252;
  --accent-gold: #ffc107;
  --gradient-primary: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  --gradient-success: linear-gradient(135deg, #00e676, #00b0ff);
  --gradient-danger: linear-gradient(135deg, #ff5252, #ff1744);
  --gradient-gold: linear-gradient(135deg, #ffc107, #ff9800);
  --glass-blur: 20px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-glow-green: 0 0 30px rgba(0, 230, 118, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}
@media (min-width: 768px) { html { font-size: 16px; } }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  margin: 0;
  padding-bottom: 80px;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
  50% { box-shadow: 0 0 35px rgba(0, 212, 255, 0.25); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s var(--transition-smooth) both;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}
.glass-card:hover {
  background: var(--bg-card-hover) !important;
  border-color: var(--border-glass-hover) !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar-dark-glass {
  background: rgba(10, 14, 26, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass) !important;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
  padding: 0.75rem 0;
  transition: background var(--transition-smooth);
}

.navbar-brand-pro {
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition-fast);
}
.navbar-brand-pro:hover { opacity: 0.85; }

.navbar-brand-pro .brand-icon {
  width: 36px; height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-fill-color: white;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.3);
}

.nav-link-pro {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-link-pro:hover,
.nav-link-pro:focus {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* ===== USER BADGE (Login Partial) ===== */
.user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  color: var(--accent-cyan) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.user-badge:hover {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: var(--shadow-glow-cyan);
}
.user-badge .user-icon {
  width: 26px; height: 26px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.btn-logout {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  transition: all var(--transition-fast);
}
.btn-logout:hover {
  background: rgba(255, 82, 82, 0.1) !important;
  border-color: var(--accent-red) !important;
  color: var(--accent-red) !important;
}

/* ===== PORTFOLIO HEADER ===== */
.portfolio-header {
  animation: fadeInUp 0.5s ease both;
}
.portfolio-header h2 {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}
.portfolio-header .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== STAT CARD (Total Value) ===== */
.stat-card-total {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  animation: pulseGlow 4s ease-in-out infinite, fadeInUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.stat-card-total::before {
  content: '';
  position: absolute;
  top: 0; left: -50%; right: -50%; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
  animation: shimmer 4s linear infinite;
}
.stat-card-total .label {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-card-total .value {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

/* ===== MINI STAT CARDS ===== */
.stat-mini {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  transition: all var(--transition-smooth);
  animation: fadeInUp 0.5s ease both;
}
.stat-mini:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}
.stat-mini .stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.stat-mini .stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-mini .stat-value {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== FORM STYLING ===== */
.form-control-dark {
  background: var(--bg-input) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: all var(--transition-fast);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}
.form-control-dark.has-icon {
  padding-left: 2.75rem;
}
.form-control-dark.has-toggle {
  padding-right: 2.75rem;
}
.form-control-dark:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
  color: var(--text-primary) !important;
}
.form-control-dark::placeholder { color: var(--text-muted) !important; }

/* Form floating (used on Portfolio page) */
.form-floating > .form-control-dark {
  padding: 1.625rem 0.75rem 0.625rem;
  height: auto;
  min-height: calc(3.5rem + 2px);
}
.form-floating > .form-control-dark ~ label {
  color: var(--text-muted) !important;
  padding: 1rem 0.75rem;
}
.form-floating > .form-control-dark:focus ~ label,
.form-floating > .form-control-dark:not(:placeholder-shown) ~ label {
  color: var(--accent-cyan) !important;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 1;
}

/* Non-floating form groups (used on auth pages) */
.form-group-dark {
  position: relative;
}
.form-label-dark {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

/* Input wrapper for icons and toggle */
.input-wrapper {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color var(--transition-fast);
  z-index: 2;
}
.input-wrapper .form-control-dark:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--accent-cyan);
}

/* Password toggle button */
.password-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}
.password-toggle.active {
  color: var(--accent-cyan);
}

/* ===== BUTTONS ===== */
.btn-gradient-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.btn-gradient-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.35);
  color: white;
}
.btn-gradient-primary:active { transform: translateY(0); }

.btn-gradient-success {
  background: var(--gradient-success);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.25);
  transition: all var(--transition-fast);
}
.btn-gradient-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 230, 118, 0.35);
  color: white;
}

/* ===== TABLE ===== */
.table-dark-custom {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text-primary);
  --bs-table-border-color: var(--border-glass);
  border-collapse: separate;
  border-spacing: 0 4px;
}
.table-dark-custom thead th {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  padding: 0.75rem 1rem;
}
.table-dark-custom tbody tr {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.table-dark-custom tbody tr:hover {
  background: var(--bg-card-hover);
  transform: scale(1.005);
}
.table-dark-custom tbody td {
  padding: 1rem;
  border: none;
  vertical-align: middle;
}
.table-dark-custom tbody td:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.table-dark-custom tbody td:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* ===== PNL BADGES ===== */
.pnl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}
.pnl-badge.positive {
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-green);
}
.pnl-badge.negative {
  background: rgba(255, 82, 82, 0.12);
  color: var(--accent-red);
}

/* ===== SYMBOL TAG ===== */
.symbol-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.symbol-tag .symbol-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

/* ===== DELETE BUTTON ===== */
.btn-delete-ghost {
  background: transparent;
  border: 1px solid rgba(255, 82, 82, 0.2);
  color: var(--accent-red);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  padding: 0;
  font-size: 0.85rem;
}
.btn-delete-ghost:hover {
  background: rgba(255, 82, 82, 0.12);
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.2);
  color: var(--accent-red);
}

/* ===== AUTH PAGES ===== */
.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.04);
  animation: fadeInUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0.7;
}

.auth-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
}
.auth-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  opacity: 0.2;
  z-index: -1;
}
.auth-icon.cyan { background: var(--gradient-primary); }
.auth-icon.cyan::after { background: var(--gradient-primary); }
.auth-icon.green { background: var(--gradient-success); }
.auth-icon.green::after { background: var(--gradient-success); }

.auth-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.6rem;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}
.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

.auth-divider {
  border-top: 1px solid var(--border-glass);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.auth-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.auth-link:hover {
  color: var(--accent-blue);
  transform: translateX(2px);
}
.auth-link.green { color: var(--accent-green); }
.auth-link.green:hover { color: #00c853; transform: translateX(2px); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.empty-state h5 { color: var(--text-secondary); font-weight: 600; }
.empty-state p { font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer-pro {
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1.25rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer-pro a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-pro a:hover { color: var(--accent-blue); }

/* ===== FOCUS OVERRIDE ===== */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

/* ===== TEXT COLORS ===== */
.text-accent { color: var(--accent-cyan) !important; }
.text-success-custom { color: var(--accent-green) !important; }
.text-danger-custom { color: var(--accent-red) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-secondary-custom { color: var(--text-secondary) !important; }

/* ===== CARD TITLE ===== */
.card-title-custom {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* ===== LIVE DOT ===== */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  margin-right: 4px;
  animation: livePulse 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--accent-green); }
  50% { opacity: 0.4; box-shadow: 0 0 10px var(--accent-green); }
}

/* ===== UPDATE BADGE ===== */
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.update-badge.updating {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  animation: shimmer 1.5s linear infinite;
  background: linear-gradient(90deg, rgba(0,212,255,0.05), rgba(0,212,255,0.12), rgba(0,212,255,0.05));
  background-size: 200% 100%;
}

/* ===== FLASH ANIMATIONS ===== */
.flash-green {
  animation: flashGreen 1.2s ease;
}
.flash-red {
  animation: flashRed 1.2s ease;
}
@keyframes flashGreen {
  0% { color: var(--text-primary); }
  30% { color: var(--accent-green); text-shadow: 0 0 8px rgba(0,230,118,0.4); }
  100% { color: var(--text-primary); text-shadow: none; }
}
@keyframes flashRed {
  0% { color: var(--text-primary); }
  30% { color: var(--accent-red); text-shadow: 0 0 8px rgba(255,82,82,0.4); }
  100% { color: var(--text-primary); text-shadow: none; }
}

/* ===== QUICK INFO ===== */
.quick-info {
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}
.quick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.quick-info-item i { flex-shrink: 0; margin-top: 2px; }

/* ===== STAT CARD TOTAL FIX ===== */
.stat-card-total {
  min-width: 0;
  max-width: 100%;
  word-break: break-word;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .stat-card-total { min-width: unset; width: 100%; }
  .stat-card-total .value { font-size: 1.6rem; }
  .portfolio-header h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .stat-card-total .value { font-size: 1.35rem; }
  .portfolio-header h2 { font-size: 1.3rem; }
  .stat-mini { padding: 0.75rem 0.75rem; }
  .stat-mini .stat-value { font-size: 0.95rem; }
  .stat-mini .stat-label { font-size: 0.65rem; }
  .stat-mini .stat-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .table-dark-custom { font-size: 0.8rem; }
  .table-dark-custom tbody td { padding: 0.65rem 0.5rem; }
  .table-dark-custom thead th { padding: 0.5rem; font-size: 0.65rem; }
  .pnl-badge { font-size: 0.75rem; padding: 3px 7px; }
  .symbol-tag { font-size: 0.85rem; }
  .glass-card { padding: 1rem !important; }
}

@media (max-width: 576px) {
  .stat-card-total .value { font-size: 1.2rem; }
  .stat-card-total { padding: 1rem 1.25rem; }
  .portfolio-header h2 { font-size: 1.15rem; }
  .portfolio-header .subtitle { font-size: 0.8rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }

/* ===== SELECTION ===== */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}