/* Podcast Ever – Support (external CSS) */

:root{
  --bg0: #050816;
  --bg1: #0a0f24;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(10,14,28,0.80);

  --text: #f4f4f7;
  --muted: #a6acc0;
  --muted2: #7f879e;

  --accent: #ff7b54;
  --accentSoft: rgba(255, 123, 84, 0.14);

  --border: rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.06);

  --shadow: 0 18px 44px rgba(0,0,0,0.50);
  --shadow2: 0 10px 22px rgba(0,0,0,0.35);

  --radius: 22px;
  --radius2: 16px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(124,92,255,0.22), transparent 55%),
    radial-gradient(900px 600px at 95% 10%, rgba(255,123,84,0.18), transparent 60%),
    radial-gradient(circle at top, #151b3a 0, var(--bg0) 52%, #02030a 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page{
  min-height: 100vh;
  display:flex;
  justify-content:center;
  padding: 34px 16px;
}

.container{
  width:100%;
  max-width: 920px;
  padding: 26px 22px 30px;

  background:
    radial-gradient(900px 420px at 10% 0%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(12,18,40,0.86));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

@media (min-width: 768px){
  .container{ padding: 30px 32px 38px; }
}

/* Header */
.header{
  display:flex;
  align-items:center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-icon{
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

.title-block h1{
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.95rem);
  letter-spacing: 0.01em;
}

.title-block p{
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.tagline{
  margin-top: 10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent);
  color: #e9eaff;
  font-size: 0.80rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.pill .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 18px;
}

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

/* Cards */
.card{
  border-radius: var(--radius);
  padding: 16px 16px 16px;
  border: 1px solid var(--border2);
  background:
    radial-gradient(800px 280px at 15% 0%, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.92), rgba(6, 10, 24, 0.98));
  box-shadow: var(--shadow2);
}

.card + .card{ margin-top: 12px; }

.section-label{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  margin-bottom: 6px;
}

.card h2{
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.card p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card ul{
  margin: 8px 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card li{ margin: 6px 0; }

/* Feature list */
.feature-list{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

.feature{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accentSoft);
  color: var(--accent);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 0.92rem;
  flex-shrink:0;
  border: 1px solid rgba(255, 123, 84, 0.18);
}

/* Language badges */
.lang-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 14px;
}

.lang-badge{
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.80rem;
}

/* FAQ */
.faq-item{
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.faq-item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-item strong{
  display:block;
  color: #e9ebff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.faq-item span{
  color: var(--muted);
  font-size: 0.92rem;
}

/* Support row helpers */
.support-row{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.support-label{
  color: var(--muted);
  font-size: 0.92rem;
}

.support-hint{
  margin-top: 12px;
}

.we8823uhqwd{
  width: 175px;
  height: 40px;
  display:block;
  image-rendering: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.15);
}

/* Links */
a{
  color: #7bb4ff;
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

/* Footer */
.footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted2);
  font-size: 0.82rem;
  display:flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Small screens fine-tuning */
@media (max-width: 420px){
  .header{ gap: 12px; }
  .app-icon{ width: 62px; height: 62px; border-radius: 18px; }
  .container{ border-radius: 24px; }
  .card{ padding: 14px 14px; }
}
