/* ===== INDIA TV SHOW - STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card2: #1a1a28;
  --accent-orange: #ff6b00;
  --accent-gold: #ffd700;
  --accent-red: #e63946;
  --accent-purple: #7b2fff;
  --accent-pink: #ff3cac;
  --text-white: #ffffff;
  --text-muted: #9999bb;
  --border: rgba(255,255,255,0.08);
  --glow-orange: 0 0 30px rgba(255,107,0,0.4);
  --glow-gold: 0 0 20px rgba(255,215,0,0.3);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== INSTALL BANNER ===== */
.install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1a1a28, #12121a);
  border-top: 2px solid var(--accent-orange);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 30px rgba(255,107,0,0.3);
  animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.install-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.install-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,107,0,0.4);
}

.install-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.install-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.install-banner-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.install-btn {
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  color: #000;
  border: none;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.install-btn:hover { transform: scale(1.05); }

.install-dismiss {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.install-dismiss:hover { background: var(--accent-red); color: white; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(255,107,0,0.8));
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255,107,0,0.8)); }
  50% { filter: drop-shadow(0 0 20px rgba(255,215,0,1)); }
}

.logo-text { display: flex; flex-direction: column; }

.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.live-badge {
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 40px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 80%, rgba(123,47,255,0.1) 0%, transparent 60%),
              var(--bg-dark);
}

.hero-bg-text {
  position: absolute;
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 800;
  color: rgba(255,107,0,0.04);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  color: #000;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--glow-orange);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(255,107,0,0.7);
}

.hero-channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.hero-channels span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.hero-channels span:hover {
  background: rgba(255,107,0,0.15);
  border-color: var(--accent-orange);
  color: var(--accent-gold);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== PLANS SECTION ===== */
.plans-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ffd700);
}

.plan-card.featured::before {
  background: linear-gradient(90deg, #ff6b00, #ffd700, #ff6b00);
  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}

.plan-card.premium::before {
  background: linear-gradient(90deg, #7b2fff, #ff3cac, #7b2fff);
  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,107,0,0.2);
  border-color: rgba(255,107,0,0.3);
}

.plan-card.premium:hover {
  box-shadow: 0 20px 60px rgba(123,47,255,0.3);
  border-color: rgba(123,47,255,0.4);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.plan-card.premium .plan-badge {
  background: linear-gradient(135deg, #7b2fff, #ff3cac);
  color: white;
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.plan-duration {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 8px;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-card.premium .amount {
  background: linear-gradient(135deg, #7b2fff, #ff3cac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  text-align: left;
}

.feature {
  font-size: 0.88rem;
  color: #ccccdd;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.plan-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  color: #000;
  border: none;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.plan-card.premium .plan-btn {
  background: linear-gradient(135deg, #7b2fff, #ff3cac);
  color: white;
}

.plan-btn:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-orange);
}

.plan-card.premium .plan-btn:hover {
  box-shadow: 0 0 30px rgba(123,47,255,0.5);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--bg-card2);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 24px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--accent-red); }

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.modal-header p {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== QR SECTION ===== */
.qr-section {
  text-align: center;
  margin-bottom: 24px;
}

.qr-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.qr-wrapper {
  display: inline-block;
  padding: 12px;
  background: #000;
  border-radius: 16px;
  border: 2px solid rgba(255,107,0,0.4);
  box-shadow: 0 0 30px rgba(255,107,0,0.2);
  margin-bottom: 12px;
}

.qr-image {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 8px;
}

.qr-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.qr-bank {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PAYMENT STEPS ===== */
.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #ccccdd;
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 10px;
}

.step-num {
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.payment-note {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #ffaa66;
  text-align: center;
  margin-bottom: 16px;
}

.confirm-btn {
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.confirm-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(34,197,94,0.4);
}

/* ===== SUCCESS BOX ===== */
.success-box {
  text-align: center;
  border-color: rgba(34,197,94,0.4);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.success-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 8px;
}

.success-box p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.success-note {
  font-size: 0.8rem;
  color: #ffaa66;
  margin-bottom: 20px;
}

/* ===== SHOWS SECTION ===== */
.shows-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
}

.show-thumb {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.show-info {
  padding: 10px 12px;
}

.show-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.show-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer p { margin-bottom: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 24px 18px; }
  .qr-image { width: 170px; height: 170px; }
  .hero-title { font-size: 1.6rem; }
}