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

body {
  font-family: 'Segoe UI', 'SF Mono', 'Inter', monospace;
  background: radial-gradient(circle at 20% 50%, #0a0a0f, #050508);
  color: #e0e0ff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Glassmorphism */
.glass {
  background: rgba(20, 20, 40, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.neon-text {
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
}

/* Buttons */
.btn-neon {
  background: transparent;
  border: 1px solid #0ff;
  color: #0ff;
  padding: 10px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: monospace;
}

.btn-neon:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 20px #0ff;
  transform: scale(1.02);
}

.btn-secondary {
  border-color: #f0f;
  color: #f0f;
}

.btn-secondary:hover {
  background: #f0f;
  box-shadow: 0 0 20px #f0f;
}

.btn-small {
  padding: 6px 16px;
  font-size: 14px;
}

/* Forms */
input, select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  color: #0ff;
  padding: 12px;
  border-radius: 12px;
  outline: none;
  font-family: monospace;
  font-size: 14px;
}

input:focus {
  box-shadow: 0 0 10px #0ff;
}

input[type="file"] {
  padding: 8px;
  cursor: pointer;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

/* Login/Register containers */
.login-container {
  max-width: 450px;
  margin: 80px auto;
  padding: 40px;
  text-align: center;
}

.subtitle {
  margin: 10px 0 30px;
  opacity: 0.8;
}

/* Dashboard */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.user-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

.user-badge {
  background: rgba(0, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Stats */
.stats-container {
  padding: 20px;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.dashboard-card {
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s;
  border-left: 3px solid #0ff;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

/* Tabs */
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  padding-bottom: 10px;
}

/* Forms container */
.form-container {
  padding: 25px;
  margin-bottom: 20px;
}

.form-container h3 {
  margin-bottom: 15px;
}

.form-container input {
  width: 100%;
  margin: 10px 0;
}

/* Two column layout */
.two-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}

/* Library sections */
.library-section {
  margin-top: 30px;
}

.library-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.library-grid {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

/* Status badge */
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.leads-container {
  display: grid;
  gap: 15px;
}

/* Audio player */
audio {
  width: 100%;
  margin-top: 8px;
}

/* Links */
a {
  color: #0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
  }
  
  .dashboard-header {
    flex-direction: column;
    text-align: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Delete button hover */
.btn-neon.btn-small {
  padding: 4px 12px;
  font-size: 12px;
}

.btn-neon.btn-small:hover {
  background: #f00;
  border-color: #f00;
  box-shadow: 0 0 20px #f00;
}

/* Sort dropdown */
select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  color: #0ff;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

select:hover {
  background: rgba(0, 255, 255, 0.1);
}

/* Missing file indicator */
[style*="color: #f00"] {
  font-weight: bold;
}

/* Add these styles */
textarea {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  color: #0ff;
  padding: 12px;
  border-radius: 12px;
  outline: none;
  font-family: monospace;
  width: 100%;
  resize: vertical;
}

textarea:focus {
  box-shadow: 0 0 10px #0ff;
}

/* App buttons */
.btn-neon.btn-small {
  padding: 5px 12px;
  font-size: 12px;
  display: inline-block;
  text-decoration: none;
}