/* Anime Nexus - TikTok Downloader */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --border-neon: #00f5ff;
  --border-magenta: #ff00aa;
  --accent-cyan: #00f5ff;
  --accent-magenta: #ff00aa;
  --accent-purple: #8b5cf6;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.4);
  --glow-magenta: 0 0 20px rgba(255, 0, 170, 0.3);
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255, 0, 170, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(139, 92, 246, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-shadow: var(--glow-cyan);
}

.header p {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Card - Input area */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 4px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.card:hover {
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.08);
}

.input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.input-wrap input {
  flex: 1;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  padding: 0.9rem 1rem;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 4px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap input::placeholder {
  color: var(--text-dim);
}

.input-wrap input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), #00c4cc);
  color: var(--bg-dark);
  border: 1px solid var(--accent-cyan);
}

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

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: var(--glow-cyan);
}

/* Result / Video */
.result-box {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 4px;
  display: none;
}

.result-box.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.result-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.result-box .video-preview {
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.result-box video {
  width: 100%;
  display: block;
}

.video-meta {
  margin-bottom: 0.75rem;
}

.video-meta-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.video-meta-author {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.video-meta-stats {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.download-btn {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #e0f2fe;
  background: #2563eb;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: box-shadow 0.15s, transform 0.15s, background 0.15s;
}

.download-btn:nth-child(1) {
  background: #1d4ed8;
}

.download-btn:nth-child(2) {
  background: #2563eb;
}

.download-btn:nth-child(3) {
  background: #1d4ed8;
}

.download-btn:hover {
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.loading {
  color: var(--accent-cyan);
  margin-top: 1rem;
  display: none;
}

.loading.visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 245, 255, 0.3);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.error-msg {
  color: #f87171;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 4px;
  display: none;
}

.error-msg.visible {
  display: block;
}

/* Pre-roll ad overlay */
.pre-roll {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.pre-roll-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.pre-roll-card {
  position: relative;
  z-index: 41;
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.pre-roll-header {
  padding: 0.75rem 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  color: var(--bg-dark);
}

.pre-roll-body {
  padding: 1rem 1.1rem 1.2rem;
}

.pre-roll-ad-slot {
  min-height: 120px;
  border-radius: 8px;
  border: 1px dashed rgba(0, 245, 255, 0.4);
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.pre-roll-ad-label {
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
}

.pre-roll-countdown {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pre-roll-countdown span {
  color: var(--accent-cyan);
  font-family: 'Orbitron', sans-serif;
}

.pre-roll-skip {
  width: 100%;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1.25rem;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.feature h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Ad slot */
.ad-slot {
  margin: 1.5rem 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 26, 0.6);
  border: 1px dashed rgba(0, 245, 255, 0.2);
  border-radius: 4px;
}

.ad-slot ins, .ad-slot iframe {
  max-width: 100%;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent-cyan);
  text-decoration: none;
}

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

/* Admin login page */
.admin-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.25);
  padding: 2rem;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.admin-card h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  text-align: center;
}

.admin-card label {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.admin-card input[type="text"],
.admin-card input[type="password"] {
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 4px;
  color: var(--text);
  outline: none;
}

.admin-card input:focus {
  border-color: var(--accent-cyan);
}

.admin-card .btn-block {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
}

.admin-card .error {
  color: #f87171;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Admin dashboard */
.admin-dash {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Dashboard (inspired by provided layout) */
.dash {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 84px 1fr;
}

.dash-sidebar {
  background: rgba(18, 18, 26, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 12px 10px;
}

.dash-logo {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.dash-logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0,245,255,0.20), rgba(255,0,170,0.12));
  border: 1px solid rgba(0,245,255,0.35);
  color: var(--accent-cyan);
  font-family: 'Orbitron', sans-serif;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,245,255,0.10);
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-nav-item {
  appearance: none;
  border: 1px solid rgba(0, 245, 255, 0.18);
  background: rgba(10, 10, 15, 0.4);
  color: var(--text-dim);
  padding: 10px 8px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
}

.dash-nav-item:hover {
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 18px rgba(0,245,255,0.12);
  color: var(--text);
  transform: translateY(-1px);
}

.dash-nav-item.active {
  border-color: rgba(0, 245, 255, 0.55);
  color: var(--text);
  box-shadow: 0 0 22px rgba(0,245,255,0.14);
}

.dash-main {
  min-width: 0;
}

.dash-topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(18, 18, 26, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.dash-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.06em;
  color: var(--text);
}

.dash-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 170, 0.35);
  color: var(--accent-magenta);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
}

.dash-pill:hover {
  box-shadow: 0 0 18px rgba(255,0,170,0.14);
}

.dash-content {
  padding: 18px;
  max-width: 1250px;
  margin: 0 auto;
}

.dash-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
  padding: 10px 12px;
  background: rgba(18,18,26,0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 6px solid rgba(0,245,255,0.75);
  margin-bottom: 14px;
}

.dash-widgets {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.dash-widget {
  grid-column: span 4;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0,0,0,0.35);
}

.dash-widget-wide {
  grid-column: span 6;
}

.dash-widget-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  color: var(--text);
  padding: 10px 12px;
  background: rgba(10,10,15,0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.05em;
}

.dash-widget-body {
  padding: 12px;
}

.dash-big-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #e2e8f0;
  font-weight: 600;
  text-shadow: none;
}

.dash-sub {
  margin-top: 6px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.spark-area {
  padding: 8px 10px;
  background: rgba(10, 10, 15, 0.6);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.top-video-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.top-video-link {
  color: var(--accent-magenta);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
}

.top-video-link:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .dash-widget { grid-column: span 6; }
  .dash-widget-wide { grid-column: span 12; }
}

@media (max-width: 640px) {
  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-content { padding: 14px; }
  .dash-widget { grid-column: span 12; }
}

.admin-dash h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-dash .btn-logout {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--accent-magenta);
  border: 1px solid var(--accent-magenta);
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  transition: box-shadow 0.2s;
}

.admin-dash .btn-logout:hover {
  box-shadow: var(--glow-magenta);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: var(--accent-cyan);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 1.25rem;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.metric-card .value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-cyan);
}

.metric-card .label {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.ad-form {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.ad-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.ad-form h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}

.ad-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.verification-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.verification-block:last-of-type { border-bottom: none; }
.verification-block h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}
.verification-block textarea,
.verification-block input[type="text"] {
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
  padding: 0.6rem 0.8rem;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.verification-block textarea { min-height: 100px; resize: vertical; }
.verification-url {
  font-size: 0.85rem;
  color: var(--text-dim);
  word-break: break-all;
  margin-top: 0.25rem;
}
.verification-block code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.9em;
}

.ad-form label {
  display: block;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ad-form input, .ad-form textarea {
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
}

.ad-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ad-form .row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ad-item {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ad-item .provider {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent-magenta);
}

.ad-item .code-preview {
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ad-item .actions {
  display: flex;
  gap: 0.5rem;
}

.ad-item .btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.btn-danger {
  background: transparent;
  color: #f87171;
  border: 1px solid #f87171;
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.15);
}

.chart-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 2rem;
  border-radius: 4px;
  min-height: 200px;
  margin-bottom: 2rem;
}

.chart-placeholder h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 140px;
  margin-top: 0.5rem;
  min-height: 140px;
}

.bar-chart .bar {
  flex: 1;
  min-width: 6px;
  min-height: 4px;
  background: #3b82f6;
  border-radius: 3px 3px 0 0;
  opacity: 1;
  transition: opacity 0.2s;
}

.bar-chart .bar:hover {
  background: #60a5fa;
  opacity: 1;
}

.bar-chart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  color: #64748b;
  font-size: 0.9rem;
}

.country-list {
  list-style: none;
}

.country-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.country-list .country-name {
  color: #e2e8f0;
}

.country-list .country-count {
  font-family: 'Orbitron', sans-serif;
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 600px) {
  .input-wrap {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
