/* Khat Podcast - Theme System */

/* Light Mode (Default) */
:root,
[data-theme="light"] {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-hover: #f0f0f0;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --accent: #8E44AD;
  --accent-hover: #732D91;
  --border: #e0e0e0;
  --youtube: #ff0000;
  --success: #28a745;
  --shadow: rgba(0, 0, 0, 0.1);
  --overlay: rgba(255, 255, 255, 0.9);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-hover: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;
  --accent: #9B59B6;
  --accent-hover: #B370CF;
  --border: #2a2a2a;
  --youtube: #ff0000;
  --success: #28a745;
  --shadow: rgba(0, 0, 0, 0.3);
  --overlay: rgba(0, 0, 0, 0.8);
}

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

/* Prevent scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* ==================== ACCESSIBILITY ==================== */

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--text-primary);
  outline-offset: 2px;
}

/* Focus Indicators */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==================== SITE CONTROLS (Theme & Language Toggle) ==================== */
.site-controls {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

[dir="ltr"] .site-controls {
  left: auto;
  right: 20px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
}

.control-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: scale(1.1);
}

.control-btn svg,
.theme-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lang-label {
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
}

/* Smooth theme transition */
html {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body, header, footer, .admin-sidebar, .admin-section,
.episode-card, .article-card, .guest-card, .goal-card,
.stat-card, .modal-content, .form-section {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Light mode specific adjustments */
[data-theme="light"] .banner {
  filter: brightness(1);
}

[data-theme="light"] .social-btn {
  background: var(--bg-card);
}

[data-theme="light"] .episode-card,
[data-theme="light"] .article-card {
  box-shadow: 0 4px 20px var(--shadow);
}

[data-theme="light"] .guest-image {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(184, 150, 12, 0.15);
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.banner {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  filter: brightness(1.1);
}

header h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Main Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.main-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.main-nav a.active {
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
}

/* Mobile Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle .hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before {
  top: -8px;
}

.menu-toggle .hamburger::after {
  top: 8px;
}

/* Hamburger animation when open */
.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  header .container {
    position: relative;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 20px 40px;
    margin: 0;
    gap: 8px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    padding: 16px 20px;
    border-radius: 12px;
    text-align: right;
    font-size: 1.1rem;
    border: 1px solid var(--border);
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn.youtube {
  background: transparent;
  color: #ff0000;
  border-color: #ff0000;
}

.social-btn.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-btn.instagram {
  background: transparent;
  color: #e1306c;
  border-color: #e1306c;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: transparent;
}

.social-btn.tiktok {
  background: transparent;
  color: #00f2ea;
  border-color: #00f2ea;
}

.social-btn.tiktok:hover {
  background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
  color: white;
  border-color: transparent;
}

.social-btn.whatsapp {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: transparent;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 80px 0 40px;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.about-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 2;
}

/* About Khat Page */
.about-khat-page {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 80px 0;
  text-align: center;
  min-height: 60vh;
}

.about-khat-page h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-khat-page .about-intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* About Khat Section - Vision, Mission, Values (kept for backwards compatibility) */
.about-khat-section {
  background: var(--bg-primary);
  padding: 60px 0 80px;
  text-align: center;
}

.about-khat-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--accent);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.goal-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(155, 89, 182, 0.1);
}

.goal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.goal-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.goal-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Goal card with image */
.goal-card.has-image {
  padding: 0;
  overflow: hidden;
}

.goal-card.has-image .goal-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.goal-card.has-image .goal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.goal-card.has-image:hover .goal-image img {
  transform: scale(1.05);
}

.goal-card.has-image h3,
.goal-card.has-image p {
  padding: 0 30px;
}

.goal-card.has-image h3 {
  padding-top: 20px;
}

.goal-card.has-image p {
  padding-bottom: 30px;
}

/* Content Boxes Admin */
.content-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.content-box-editor {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 25px;
}

.content-box-editor h3 {
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.current-image {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.current-image img {
  border-radius: 8px;
  border: 1px solid var(--border);
}

.remove-image-btn {
  color: #e74c3c;
  font-size: 0.85rem;
  text-decoration: none;
}

.remove-image-btn:hover {
  text-decoration: underline;
}

/* Latest Episode Section (Homepage) */
.latest-episode-section {
  padding: 80px 0;
}

.featured-episode {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-episode:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(155, 89, 182, 0.15);
}

.featured-episode-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
}

.featured-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.featured-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-episode:hover .featured-thumbnail img {
  transform: scale(1.05);
}

.featured-thumbnail .thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-hover) 100%);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.play-overlay svg {
  width: 35px;
  height: 35px;
  fill: var(--bg-primary);
  margin-right: -4px;
}

[dir="ltr"] .play-overlay svg {
  margin-right: 0;
  margin-left: -4px;
}

.featured-episode:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .episode-category {
  align-self: flex-start;
  margin-bottom: 15px;
}

.featured-content h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.featured-content .episode-guest {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.featured-content .episode-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.featured-content .episode-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.featured-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .featured-episode-inner {
    grid-template-columns: 1fr;
  }

  .featured-thumbnail {
    aspect-ratio: 16/9;
  }

  .featured-content {
    padding: 30px;
  }

  .featured-content h3 {
    font-size: 1.4rem;
  }
}

/* Episodes Section */
.episodes-section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
}

.view-all-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 28px;
  border: 2px solid var(--accent);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* Episode Grid */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.episode-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.episode-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.episode-card:hover .thumbnail {
  transform: scale(1.05);
}

.thumbnail.placeholder {
  background: linear-gradient(135deg, var(--accent) 0%, #8B7355 100%);
}

.episode-content {
  padding: 28px;
}

.episode-category {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.episode-content h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}

.episode-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.episode-content time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.views-count {
  font-size: 0.9rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.views-count::before {
  content: "👁";
  font-size: 0.85rem;
}

.episode-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--youtube);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.watch-btn:hover {
  background: #cc0000;
  transform: scale(1.05);
}

/* Listen to Podcast Section */
.listen-section {
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
  padding: 60px 0;
  margin: 60px 0;
  border-radius: 0;
}

.listen-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.listen-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.listen-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.listen-text h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.listen-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  min-width: 110px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.platform-name {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.platform-link.rss-link {
  background: rgba(255, 107, 53, 0.3);
}

.platform-link.rss-link:hover {
  background: rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
  .listen-header {
    flex-direction: column;
    gap: 16px;
  }

  .listen-icon {
    width: 60px;
    height: 60px;
  }

  .listen-icon svg {
    width: 30px;
    height: 30px;
  }

  .listen-text h2 {
    font-size: 1.5rem;
  }

  .platforms-list {
    gap: 12px;
  }

  .platform-link {
    padding: 16px 18px;
    min-width: 90px;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
  }

  .platform-icon svg {
    width: 32px;
    height: 32px;
  }

  .platform-name {
    font-size: 0.8rem;
  }
}

/* Instagram Section */
.instagram-section {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  padding: 80px 0;
  text-align: center;
}

.instagram-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 12px;
}

.instagram-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #833ab4;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.instagram-follow-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Sponsor CTA */
.sponsor-cta {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
}

.sponsor-cta h2 {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sponsor-cta p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.sponsor-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
}

/* Sponsor Logos */
.sponsor-logos-section {
  margin: 50px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(155, 89, 182, 0.2);
  border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.sponsor-logos-section h3 {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 500;
}

.sponsor-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.sponsor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background: var(--bg-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sponsor-logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-logo-item img {
  max-height: 60px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.sponsor-logo-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .sponsor-logos-grid {
    gap: 20px;
  }

  .sponsor-logo-item {
    padding: 10px 15px;
  }

  .sponsor-logo-item img {
    max-height: 45px;
    max-width: 120px;
  }
}

/* Episodes Page */
.episodes-page {
  padding: 60px 0;
}

.episodes-page h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

/* Category Filter */
.category-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-weight: 500;
  background: var(--bg-card);
}

.category-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.category-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  font-weight: 600;
}

.category-btn .category-count {
  opacity: 0.7;
  font-size: 0.85rem;
  margin-right: 4px;
}

.category-btn.active .category-count {
  opacity: 0.9;
}

/* Sponsor Page */
.sponsor-page {
  padding: 60px 0;
}

.sponsor-intro {
  text-align: center;
  margin-bottom: 50px;
}

.sponsor-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.sponsor-intro p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.1rem;
}

.sponsor-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sponsor-stat {
  text-align: center;
}

.sponsor-stat .stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.sponsor-stat .stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Feedback Page */
.feedback-page {
  padding: 60px 0;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
}

footer p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-social a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-social a:hover {
  color: var(--accent);
}

/* No Episodes */
.no-episodes {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.no-episodes a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.no-episodes a:hover {
  text-decoration: underline;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  color: white;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.success-message h2 {
  color: var(--success);
  margin-bottom: 16px;
  font-size: 2rem;
}

.success-message p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Forms */
.admin-section {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.admin-section h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.admin-section h3 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.episode-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.15);
}

.form-group input[dir="ltr"] {
  text-align: left;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Input with translate button */
.input-with-translate {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.input-with-translate input,
.input-with-translate textarea {
  flex: 1;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-with-translate input:focus,
.input-with-translate textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.15);
}

.btn-translate {
  background: var(--bg-hover);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-translate:hover {
  background: var(--accent);
  color: white;
}

.btn-translate:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-small {
  padding: 12px 20px;
  font-size: 0.9rem;
}

.btn-secondary {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-danger {
  background: #dc3545;
  color: white;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-warning {
  background: #ffc107;
  color: #212529;
}

.btn-warning:hover {
  background: #e0a800;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-success:hover {
  background: #218838;
}

/* Hidden item styles */
.is-hidden {
  opacity: 0.6;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 193, 7, 0.05) 10px,
    rgba(255, 193, 7, 0.05) 20px
  );
}

.hidden-badge {
  display: inline-block;
  background: #ffc107;
  color: #212529;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-right: 8px;
  vertical-align: middle;
}

/* ==================== ALL ADMIN STYLES MOVED TO admin-style.css ==================== */

/* Public Page Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 24px 0;
  }

  .banner {
    max-width: 100%;
    border-radius: 8px;
  }

  .main-nav a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-section h2,
  .about-khat-section h2 {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-khat-section,
  .about-khat-page {
    padding: 40px 0 60px;
  }

  .about-khat-page h2 {
    font-size: 1.8rem;
  }

  .about-khat-page .about-intro {
    font-size: 1rem;
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-stats {
    gap: 30px;
  }

  .sponsor-stat .stat-num {
    font-size: 2rem;
  }

  .social-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* ==================== ARTICLES ==================== */

/* Articles Section */
.articles-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.article-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.article-content h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.article-content h3 a:hover {
  color: var(--accent);
}

.article-content > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-footer time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.like-btn:hover {
  border-color: #ff4d6d;
  color: #ff4d6d;
}

.like-btn.liked {
  background: rgba(255, 77, 109, 0.15);
  border-color: #ff4d6d;
  color: #ff4d6d;
}

.like-btn.liked svg {
  fill: #ff4d6d;
}

.like-btn svg {
  transition: all 0.3s;
}

.like-count {
  font-weight: 600;
}

.read-more-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-right: auto;
  transition: color 0.3s;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* Articles Page */
.articles-page {
  padding: 60px 0;
}

.articles-page h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-card-full {
  max-width: 800px;
}

.no-articles {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Single Article */
.single-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.article-meta time {
  color: var(--text-muted);
  font-size: 1rem;
}

.like-btn-large {
  padding: 12px 24px;
  font-size: 1rem;
}

.article-body {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 24px;
}

.article-actions {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

/* Admin Articles */
.articles-admin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-admin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-admin-info h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.article-admin-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.like-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff4d6d;
}

.like-badge svg {
  fill: #ff4d6d;
}

.article-admin-actions {
  display: flex;
  gap: 12px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal.active,
.modal[style*="display: flex"],
.modal[style*="display:flex"] {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border);
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  margin-bottom: 30px;
  color: var(--text-primary);
}

/* Responsive for Articles */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-header h1 {
    font-size: 1.8rem;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .article-admin-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==================== SINGLE EPISODE PAGE ==================== */

.episode-page {
  padding-bottom: 80px;
}

/* Video Section */
.video-section {
  margin-bottom: 50px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.episode-hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .separator {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 500;
}

[dir="ltr"] .breadcrumb .separator {
  transform: rotate(180deg);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pagination-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--card-bg);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-num:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pagination-num.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pagination-ellipsis {
  color: var(--text-secondary);
  padding: 0 8px;
}

@media (max-width: 600px) {
  .pagination {
    gap: 6px;
  }

  .pagination-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .pagination-num {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
}

/* Share Buttons */
.share-section {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.share-section h3 {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
  flex-shrink: 0;
}

.share-copy:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.share-copy.copied {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}

.share-twitter:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.share-whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.share-facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

@media (max-width: 600px) {
  .share-buttons {
    gap: 8px;
  }

  .share-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .share-btn span:not(:first-child) {
    display: none;
  }
}

/* Inline Share Buttons (below episode title) */
.share-buttons-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.share-buttons-inline .share-btn {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
}

.share-buttons-inline .share-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  .share-buttons-inline {
    gap: 8px;
  }

  .share-buttons-inline .share-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .share-buttons-inline .share-btn span {
    display: none;
  }
}

/* Form UX Improvements */
.btn-submit {
  position: relative;
  min-width: 140px;
}

.btn-submit .btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: inline-flex;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.85;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

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

.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group input.valid {
  border-color: #10b981;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 90%;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: #10b981;
}

.toast.error {
  background: #ef4444;
}

/* Related Episodes */
.related-episodes {
  margin-top: 60px;
}

.related-episodes h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.related-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-episode-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.related-episode-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-episode-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.related-episode-thumb.placeholder {
  background: var(--border);
}

.related-episode-info {
  padding: 16px;
}

.related-episode-info h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-episode-guest {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.related-episode-category {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .related-episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-episodes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-episode-card {
    display: flex;
  }

  .related-episode-thumb {
    width: 120px;
    aspect-ratio: 1;
    flex-shrink: 0;
  }

  .related-episode-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .related-episode-info h3 {
    font-size: 0.95rem;
  }
}

/* Episode Info Section */
.episode-info-section {
  max-width: 900px;
  margin: 0 auto 50px;
}

.episode-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.episode-header .episode-category {
  margin-bottom: 20px;
}

.episode-header h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.episode-meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.episode-meta-info time {
  color: var(--text-muted);
  font-size: 1rem;
}

.episode-meta-info .views {
  color: var(--accent);
  font-size: 1rem;
}

.episode-description {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.episode-description h2 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.episode-description p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-secondary);
}

/* Guest Section */
.guest-section {
  max-width: 900px;
  margin: 0 auto 50px;
}

/* Guest Section at Top (Episode Page) */
.guest-section-top {
  margin-bottom: 40px;
}

.guest-section-top .guest-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 10px 40px rgba(155, 89, 182, 0.15);
}

.guest-card {
  display: flex;
  gap: 40px;
  background: var(--bg-card);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border);
  align-items: flex-start;
}

.guest-image-wrapper {
  flex-shrink: 0;
}

.guest-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
}

.guest-image-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-image-placeholder svg {
  width: 80px;
  height: 80px;
  fill: var(--text-muted);
}

.guest-info {
  flex: 1;
}

.guest-info h2 {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.guest-info h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.guest-bio {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.guest-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.guest-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.guest-social-link svg {
  width: 22px;
  height: 22px;
}

.guest-social-link:hover {
  transform: translateY(-3px);
}

.guest-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
}

.guest-social-link.twitter:hover {
  background: #000;
  color: white;
  border-color: transparent;
}

.guest-social-link.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: transparent;
}

.guest-social-link.tiktok:hover {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  color: white;
  border-color: transparent;
}

.guest-social-link.snapchat:hover {
  background: #FFFC00;
  color: #000;
  border-color: transparent;
}

.guest-social-link.website:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: transparent;
}

/* Episode Actions */
.episode-actions {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-youtube {
  background: #ff0000;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-youtube:hover {
  background: #cc0000;
}

/* Episode Card Link Styles */
.episode-card-link {
  display: flex;
  flex-direction: column;
}

.episode-card-inner {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.episode-card-inner:hover h3 {
  color: var(--accent);
}

.episode-guest {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.episode-desc {
  font-size: 0.9rem;
}

.episode-card-actions {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
}

.btn-youtube-small {
  background: #ff0000;
  color: white;
}

.btn-youtube-small:hover {
  background: #cc0000;
}

/* Admin Form Styles */
.episode-form-full {
  max-width: 100%;
}

.form-section {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.form-section h3 {
  color: var(--accent);
  margin-bottom: 24px;
  font-size: 1.1rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-input {
  padding: 12px;
  background: var(--bg-primary);
  border: 2px dashed var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.file-input:hover {
  border-color: var(--accent);
}

.episode-item-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.episode-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.guest-name-tag {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.episode-info h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.episode-info h3 a:hover {
  color: var(--accent);
}

.modal-large {
  max-width: 800px;
}

/* Responsive for Episode Page */
@media (max-width: 768px) {
  .episode-header h1 {
    font-size: 1.8rem;
  }

  .guest-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  .guest-image,
  .guest-image-placeholder {
    width: 140px;
    height: 140px;
  }

  .guest-info h3 {
    font-size: 1.5rem;
  }

  .guest-social {
    justify-content: center;
  }

  .episode-description {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .episode-item-header {
    flex-direction: column;
  }

  .episode-item-thumb {
    width: 100%;
    height: 150px;
  }

  .episode-actions {
    flex-direction: column;
  }

  .episode-card-actions {
    flex-direction: column;
  }
}

/* ==================== ANALYTICS DASHBOARD ==================== */

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.period-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.realtime-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.realtime-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.realtime-dot {
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.realtime-count {
  font-size: 2rem;
  font-weight: 800;
}

.realtime-label {
  font-size: 1rem;
  opacity: 0.9;
}

.realtime-today {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
}

.realtime-today span {
  font-weight: 700;
  font-size: 1.3rem;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.analytics-stat-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.analytics-stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.analytics-stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.analytics-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.analytics-stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.charts-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.chart-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.chart-card h3 {
  color: var(--text-primary);
  margin-bottom: 24px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-card h3 span {
  font-size: 1.2rem;
}

.chart-container {
  position: relative;
  height: 300px;
}

.chart-container-small {
  height: 200px;
}

.analytics-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.analytics-table-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.analytics-table-card h3 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.analytics-table {
  width: 100%;
}

.analytics-table tr {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}

.analytics-table tr:last-child {
  border-bottom: none;
}

.table-rank {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.table-rank.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.table-rank.silver {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  color: #000;
}

.table-rank.bronze {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  color: #fff;
}

.table-title {
  flex: 1;
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-value {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.page-type-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-type-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-type-bar {
  flex: 1;
  height: 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  overflow: hidden;
}

.page-type-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.page-type-label {
  min-width: 100px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.page-type-count {
  min-width: 60px;
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
}

/* Analytics Responsive */
@media (max-width: 1200px) {
  .analytics-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-row {
    grid-template-columns: 1fr;
  }
}

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

  .analytics-tables {
    grid-template-columns: 1fr;
  }

  .analytics-header {
    flex-direction: column;
    align-items: stretch;
  }

  .period-filters {
    justify-content: center;
  }

  .realtime-banner {
    flex-direction: column;
    text-align: center;
  }

  .chart-container {
    height: 250px;
  }
}

/* ==================== GUEST FORMS ==================== */

/* Guest Forms List */
.guest-forms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guest-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.guest-form-info h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.guest-form-guest {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.guest-form-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.guest-form-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.guest-form-status.active {
  background: rgba(40, 167, 69, 0.15);
  color: var(--success);
}

.guest-form-status.inactive {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.guest-form-stats {
  display: flex;
  gap: 16px;
}

.response-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
}

.guest-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Share Link Box */
.share-link-box {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.share-link-box input {
  flex: 1;
  min-width: 300px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: monospace;
  font-size: 0.9rem;
}

.form-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.form-hint strong {
  color: var(--accent);
}

/* Questions List */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.question-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.question-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.question-number {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.question-info {
  flex: 1;
}

.question-info h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.question-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 8px;
}

.question-type-badge.multiple_choice {
  background: rgba(155, 89, 182, 0.15);
  color: var(--accent);
}

.question-type-badge.text {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}

.required-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  margin-right: 8px;
}

.question-actions {
  display: flex;
  gap: 8px;
}

.question-options {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  background: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.edit-question-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.no-questions {
  color: var(--text-muted);
  text-align: center;
  padding: 30px;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 30px;
}

/* Add Question Form */
.add-question-form {
  background: var(--bg-secondary);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.add-question-form h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Danger Zone */
.danger-zone {
  border-color: rgba(220, 53, 69, 0.3);
}

.danger-zone h3 {
  color: #dc3545;
}

.danger-zone p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Response Section */
.response-section {
  margin-bottom: 24px;
}

.response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.response-header h3 {
  color: var(--accent);
  margin: 0;
}

.response-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.response-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.response-answers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.answer-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.answer-question {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.answer-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.no-answer {
  color: var(--text-muted);
  font-style: italic;
}

/* Form Info Banner */
.form-info-banner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

.form-info-item .label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-info-item .value {
  color: var(--text-primary);
  font-weight: 500;
}

/* ==================== PUBLIC GUEST FORM PAGE ==================== */

.guest-form-page {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.guest-form-container {
  width: 100%;
  max-width: 600px;
}

.guest-form-logo {
  text-align: center;
  margin-bottom: 30px;
}

.guest-form-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent);
}

.guest-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.guest-form-card h1 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-align: center;
}

.guest-name-display {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.form-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.passcode-form {
  max-width: 300px;
  margin: 0 auto;
}

.passcode-form .form-group {
  margin-bottom: 20px;
}

.passcode-form input {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 8px;
  text-align: center;
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.1rem;
}

.form-footer-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
}

.already-submitted-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.already-submitted-notice.large {
  flex-direction: column;
  padding: 40px;
  text-align: center;
}

.already-submitted-notice.large h2 {
  color: var(--text-primary);
  margin: 16px 0 10px;
}

.already-submitted-notice.large p {
  color: var(--text-secondary);
  margin: 0;
}

/* Success Card */
.success-card {
  text-align: center;
}

.success-icon-large {
  color: var(--success);
  margin-bottom: 20px;
}

.success-card h1 {
  color: var(--success);
}

.success-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Error Card */
.error-card {
  text-align: center;
}

.error-icon {
  color: #e74c3c;
  margin-bottom: 20px;
}

.error-card h1 {
  color: #e74c3c;
  margin-bottom: 16px;
}

.error-message-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Question Blocks (Public Form) */
.guest-questions-form {
  margin-top: 30px;
}

.question-block {
  margin-bottom: 30px;
}

.question-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.question-label .question-number {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.required-star {
  color: #e74c3c;
  margin-right: 4px;
}

.question-block textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s;
}

.question-block textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-item:hover {
  border-color: var(--accent);
}

.option-item input[type="radio"] {
  display: none;
}

.option-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.option-item input[type="radio"]:checked + .option-radio {
  border-color: var(--accent);
  background: var(--accent);
}

.option-item input[type="radio"]:checked + .option-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.option-item input[type="radio"]:checked ~ .option-text {
  color: var(--accent);
  font-weight: 500;
}

.option-text {
  color: var(--text-primary);
  font-size: 1rem;
}

.no-questions-notice {
  text-align: center;
  color: var(--text-muted);
  padding: 30px;
}

.guest-form-footer {
  text-align: center;
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive for Guest Forms */
@media (max-width: 768px) {
  .guest-form-card {
    padding: 30px 24px;
  }

  .guest-form-card h1 {
    font-size: 1.5rem;
  }

  .share-link-box {
    flex-direction: column;
  }

  .share-link-box input {
    min-width: 100%;
  }

  .question-header {
    flex-direction: column;
  }

  .question-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .response-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .form-info-banner {
    flex-direction: column;
    gap: 16px;
  }
}
