/* Xcelo Push Studio Dashboard CSS */

:root {
  --bg-color: #060913;
  --sidebar-bg: rgba(10, 15, 30, 0.85);
  --panel-bg: rgba(18, 25, 47, 0.45);
  --panel-border: rgba(255, 255, 255, 0.06);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  --neon-cyan: #39f3ff;
  --neon-blue: #1e5bfa;
  --neon-red: #fa3232;
  --neon-orange: #ffb424;
  --neon-green: #10b981;
  
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Gradients */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.35;
}

.sphere-1 {
  width: 55vw;
  height: 55vw;
  top: -15vw;
  left: -15vw;
  background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
}

.sphere-2 {
  width: 50vw;
  height: 50vw;
  bottom: -15vw;
  right: -15vw;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

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

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

.text-green { color: var(--neon-green); }
.text-cyan { color: var(--neon-cyan); }
.text-orange { color: var(--neon-orange); }
.text-red { color: var(--neon-red); }

/* LOGIN SCREEN */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 10;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 25, 47, 0.7);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(30, 91, 250, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 10px rgba(57, 243, 255, 0.3));
}

.login-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.login-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(57, 243, 255, 0.25), 
              inset 0 0 10px rgba(0, 0, 0, 0.4);
}

.hint-box {
  background: rgba(255, 180, 36, 0.05);
  border: 1px solid rgba(255, 180, 36, 0.15);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--neon-orange);
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-heading);
}

.btn-login {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(30, 91, 250, 0.3);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(57, 243, 255, 0.5);
  filter: brightness(1.1);
}

/* STUDIO ADMIN LAYOUT */
.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

@media (max-width: 968px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none !important; /* Hide sidebar on mobile in initial simple design or construct toggle */
  }
}

/* Sidebar styling */
.sidebar {
  background: var(--sidebar-bg);
  border-right: 1px solid var(--panel-border);
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.sidebar-logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(57, 243, 255, 0.4));
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.brand-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -0.2rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.nav-item.active {
  background: rgba(30, 91, 250, 0.12);
  color: var(--neon-cyan);
  border-color: rgba(57, 243, 255, 0.2);
  box-shadow: inset 0 0 10px rgba(30, 91, 250, 0.1);
}

.sidebar-footer {
  border-top: 1px solid var(--panel-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.profile-pic {
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-details {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.profile-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-logout {
  background: transparent;
  color: var(--neon-red);
  border: 1px solid rgba(250, 50, 50, 0.2);
  font-size: 0.85rem;
  padding: 0.7rem;
  border-radius: 10px;
}

.btn-logout:hover {
  background: rgba(250, 50, 50, 0.1);
  border-color: var(--neon-red);
}

/* MAIN PANEL CONTENT */
.main-panel {
  padding: 2.5rem 3rem;
  max-height: 100vh;
  overflow-y: auto;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.header-title-wrapper h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header-title-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.score-display {
  background: linear-gradient(135deg, rgba(255, 180, 36, 0.1), rgba(250, 50, 50, 0.1));
  border: 1px solid rgba(255, 180, 36, 0.2);
  border-radius: 16px;
  padding: 0.6rem 1.4rem;
  text-align: right;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.score-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.score-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

/* Tab Layouts */
.tab-content {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon-wrapper {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.2rem;
}

.stat-footer {
  font-size: 0.75rem;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 0.6rem;
}

/* Analytics Layout */
.analytics-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 968px) {
  .analytics-layout {
    grid-template-columns: 1fr;
  }
}

.analytics-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.analytics-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.platform-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.platform-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}

.progress-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-blue { background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan)); }

.fast-action-card {
  background: linear-gradient(135deg, rgba(30, 91, 250, 0.08), rgba(57, 243, 255, 0.08));
  border-color: rgba(30, 91, 250, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.fast-action-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.funnel-graphics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.funnel-step {
  color: var(--neon-cyan);
}

.funnel-arrow {
  color: var(--text-muted);
}

.btn-compose-shortcut {
  background: var(--neon-blue);
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(30, 91, 250, 0.3);
}

.btn-compose-shortcut:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 25px rgba(30, 91, 250, 0.5);
}

/* Activity & Log Tables */
.activity-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

@media (max-width: 768px) {
  .card-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .search-wrapper {
    width: 100%;
  }
}

.search-wrapper input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  color: #ffffff;
  font-size: 0.9rem;
  width: 250px;
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.data-table th {
  padding: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.data-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
}

.empty-state {
  text-align: center;
  padding: 3rem !important;
  color: var(--text-muted);
}

.badge-status {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-inactive {
  background: rgba(250, 50, 50, 0.1);
  color: var(--neon-red);
  border: 1px solid rgba(250, 50, 50, 0.2);
}

/* TAB 2: COMPOSER LAYOUT */
.composer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .composer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.composer-form-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.composer-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.composer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.input-limit {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: -0.2rem;
  display: block;
}

.input-help {
  font-size: 0.75rem;
  color: var(--neon-cyan);
}

.btn-send-now {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  color: #ffffff;
  padding: 1.1rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(30, 91, 250, 0.3);
}

.btn-send-now:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(57, 243, 255, 0.5);
}

/* Interactive Device Mockup (WOW!) */
.composer-preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.android-mockup {
  width: 320px;
  height: 600px;
  background-color: #0b0f19;
  border: 10px solid #1c263e;
  border-radius: 40px;
  padding: 1.2rem 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
              0 0 30px rgba(30, 91, 250, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?w=320&auto=format&fit=crop&q=60') no-repeat center center;
  background-size: cover;
  border-radius: 26px;
  padding: 0.8rem;
  position: relative;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

/* Native notification styling inside mockup */
.native-notification {
  background: rgba(31, 31, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: slideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.notif-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.notif-small-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.notif-app-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.notif-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
}

.notif-body-wrapper {
  display: flex;
  gap: 0.8rem;
}

.notif-text {
  flex: 1;
}

.notif-title-preview {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.notif-body-preview {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.notif-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  max-height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.notif-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notif-actions {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
}

.notif-action-btn {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  cursor: pointer;
}

/* Modals & Loaders */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 5, 12, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.spinner-box {
  text-align: center;
  color: #ffffff;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 1.5rem auto;
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 5, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-modal {
  background: rgba(18, 25, 47, 0.95);
  border: 1px solid rgba(57, 243, 255, 0.2);
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
              0 0 60px rgba(57, 243, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.success-checkmark {
  font-size: 3.5rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.stats-summary-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.2rem;
  margin: 1.5rem 0;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.summary-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.summary-item .value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.btn-modal-primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  color: #ffffff;
  border: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(18, 25, 47, 0.95);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(57, 243, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(150px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5000;
  backdrop-filter: blur(12px);
}

.toast.show {
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.4rem;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}
