/* 
   MahirRenang.id Premium Design System 
   Theme: Aqua Luxury Dark Mode
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0a192f;
  --bg-secondary: #0f223d;
  --bg-card: rgba(16, 33, 62, 0.65);
  --bg-glass: rgba(10, 25, 47, 0.75);
  
  --accent-cyan: #00f0ff;
  --accent-blue: #00b4d8;
  --accent-gold: #ffb703;
  --text-primary: #f8fafd;
  --text-secondary: #8892b0;
  --text-muted: #5e6b8c;
  
  --success: #00f5a0;
  --error: #ff4d6d;
  --border-color: rgba(0, 240, 255, 0.15);
  --border-hover: rgba(0, 240, 255, 0.4);
  
  --font-outfit: 'Outfit', sans-serif;
  --font-inter: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --shadow-neon: 0 0 15px rgba(0, 240, 255, 0.3);
  --shadow-neon-glow: 0 0 25px rgba(0, 240, 255, 0.5);
  --shadow-gold: 0 0 15px rgba(255, 183, 3, 0.3);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-outfit);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* Background Animations */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(10, 25, 47, 0) 70%);
  top: -150px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
  animation: float-glow 15s infinite alternate ease-in-out;
}

.bg-glow-left {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, rgba(10, 25, 47, 0) 70%);
  bottom: -200px;
  left: -200px;
  z-index: -1;
  pointer-events: none;
  animation: float-glow 20s infinite alternate-reverse ease-in-out;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  z-index: 1000;
  transition: var(--transition-normal);
}

nav.scrolled {
  height: 70px;
  background-color: rgba(7, 18, 36, 0.95);
  box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.logo {
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-accent {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

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

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-cyan);
}

.nav-btn {
  background: transparent;
  border: 1.5px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.nav-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.nav-btn.primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: var(--bg-primary);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.nav-btn.primary:hover {
  box-shadow: var(--shadow-neon-glow);
}

/* User Account Menu */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-weight: 700;
  font-family: var(--font-outfit);
  border: 2px solid var(--accent-cyan);
  box-shadow: var(--shadow-neon);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 8% 60px 8%;
  background: radial-gradient(ellipse at center, rgba(16, 38, 74, 0.4) 0%, rgba(10, 25, 47, 1) 80%);
  position: relative;
}

.hero-tag {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: inline-block;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.2); }
  70% { box-shadow: 0 0 0 8px rgba(0, 240, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 40px;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: var(--bg-primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.2);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--accent-cyan);
  margin-bottom: 5px;
}

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

/* Sections General */
section {
  padding: 100px 8%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--accent-cyan);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Coaches Section */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.coach-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.coach-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-neon);
}

.coach-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.coach-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.coach-card:hover .coach-img-wrapper img {
  transform: scale(1.05);
}

.coach-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.coach-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coach-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.coach-specialty {
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.coach-bio {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.coach-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.coach-rating .stars {
  color: var(--accent-gold);
}

/* Pricing Section */
.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(16, 33, 62, 0.85) 0%, rgba(10, 25, 47, 0.95) 100%);
  border: 2px solid var(--accent-cyan);
  border-radius: 24px;
  padding: 50px 40px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-neon-glow);
  position: relative;
  backdrop-filter: blur(12px);
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }
  100% { box-shadow: 0 0 35px rgba(0, 240, 255, 0.45); }
}

.pricing-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-gold);
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-family: var(--font-outfit);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pricing-card .price span {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 30px auto;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Glassmorphism Forms (Login & Register) */
.form-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 80px 8%;
}

.form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-normal);
}

.form-container:hover {
  border-color: var(--border-hover);
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
}

.form-container p.subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 35px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(10, 25, 47, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
  background: rgba(10, 25, 47, 0.9);
}

.form-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: var(--bg-primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
  transition: var(--transition-normal);
  margin-top: 15px;
}

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

.form-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-footer a {
  color: var(--accent-cyan);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* User Dashboard / Video Library Grid */
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .dashboard-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.video-player-container {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-detail-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  margin-top: 25px;
  backdrop-filter: blur(10px);
}

.video-detail-box h2 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.video-detail-box p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Video List Playlist UI */
.playlist-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  max-height: 600px;
  overflow-y: auto;
}

.playlist-header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playlist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.playlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(10, 25, 47, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.playlist-item:hover {
  background: rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.2);
}

.playlist-item.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
}

.playlist-item.locked {
  cursor: not-allowed;
  opacity: 0.6;
}

.playlist-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.playlist-item-title {
  font-size: 14px;
  font-weight: 600;
}

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

/* Locked Overlay Card in Dashboard */
.locked-overlay-card {
  background: linear-gradient(135deg, rgba(16, 33, 62, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.locked-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1.5px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.locked-overlay-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.locked-overlay-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.transfer-instructions {
  background: rgba(10, 25, 47, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.transfer-instructions p {
  margin: 5px 0;
}

.bank-detail {
  font-family: var(--font-outfit);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-cyan);
  margin: 12px 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-detail button {
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}

/* Admin Dashboard Table */
.admin-section {
  padding: 120px 8% 80px 8%;
  min-height: 100vh;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.admin-stat-card h4 {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.admin-stat-card p.stat-value {
  font-family: var(--font-outfit);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.admin-stat-card p.stat-value.gold {
  color: var(--accent-gold);
}

.admin-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.admin-table-header {
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-weight: 700;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  background: rgba(10, 25, 47, 0.8);
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.pending {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(255, 183, 3, 0.3);
}

.status-badge.approved {
  background: rgba(0, 245, 160, 0.15);
  color: var(--success);
  border: 1px solid rgba(0, 245, 160, 0.3);
}

.status-badge.rejected {
  background: rgba(255, 77, 109, 0.15);
  color: var(--error);
  border: 1px solid rgba(255, 77, 109, 0.3);
}

.action-btn-group {
  display: flex;
  gap: 10px;
}

.action-btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.action-btn.approve {
  background: var(--success);
  color: var(--bg-primary);
}

.action-btn.approve:hover {
  box-shadow: 0 0 10px rgba(0, 245, 160, 0.4);
  transform: translateY(-1px);
}

.action-btn.reject {
  background: var(--error);
  color: var(--text-primary);
}

.action-btn.reject:hover {
  box-shadow: 0 0 10px rgba(255, 77, 109, 0.4);
  transform: translateY(-1px);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 8px;
  padding: 16px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  max-width: 450px;
  animation: slide-in 0.3s ease forwards;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.toast.success {
  border-left-color: var(--success);
}

.toast.error {
  border-left-color: var(--error);
}

@keyframes slide-in {
  from { transform: translateX(120%); }
  to { transform: translateX(0); }
}

/* Footer Section */
footer {
  background: #061122;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 8% 30px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-col ul a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
}

/* AI Upload Dropzone Hover State */
#upload-dropzone:hover {
  border-color: var(--accent-cyan) !important;
  background: rgba(0, 240, 255, 0.03);
}
