/* Podcasters - Common Styles */

/* CSS Variables */
:root {
  --bg: #1a0b2e;
  --bg2: #2d1b4e;
  --fg: #f5f0ff;
  --muted: #b8a8d9;
  --card: #2a1a45;
  --line: #4a2d6b;
  --brand1: #a855f7;
  --brand2: #9333ea;
  --ok: #34d399;
  --bad: #f87171;
  --acc: #c084fc;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 16px;
}

/* Reset & Base */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--bg), var(--bg2) 40%, var(--bg));
}

/* Links */
a { 
  color: var(--brand1); 
  text-decoration: none; 
  transition: color 0.2s;
}

a:hover { 
  color: var(--fg); 
  text-decoration: underline; 
}

/* Container */
.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 18px; 
}

/* Header/Navigation */
header {
  position: sticky; 
  top: 0; 
  z-index: 100;
  background: rgba(26, 11, 46, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

nav {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
}

.logo {
  display: flex; 
  align-items: center; 
  gap: 10px;
  font-weight: 700; 
  font-size: 18px;
  text-decoration: none;
  color: inherit;
}

.logo-badge,
.logo-icon {
  width: 28px; 
  height: 28px; 
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
}

.logo-badge img,
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Buttons */
button,
.btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--fg);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-family: inherit;
}

button:hover,
.btn:hover {
  background: rgba(42, 26, 69, 0.8);
  transform: translateY(-1px);
}

button.primary,
.btn.primary {
  background: linear-gradient(180deg, var(--brand1), var(--brand2));
  border-color: #7e22ce;
  font-weight: 600;
  color: white;
}

button.primary:hover,
.btn.primary:hover {
  background: linear-gradient(180deg, #c084fc, #a855f7);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Form Elements */
label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}

input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand1);
}

textarea {
  resize: vertical;
  line-height: 1.6;
  min-height: 220px;
}

/* Status Messages */
.status {
  font-size: 13px;
}

.status.ok {
  color: var(--ok);
}

.status.bad {
  color: var(--bad);
}

/* Utility Classes */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  header {
    padding: 14px 0;
  }
}

