/* -------------------------------------------------------------
   LARIATO PRO WRESTLING GUILD - ENHANCED SITE DESIGN SYSTEM
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --bg-dark: #07080c;
  --bg-card: #12141d;
  --bg-card-hover: #1c2030;
  --bg-glass: #0c0e16;
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(255, 215, 0, 0.3);
  
  --primary-red: #990014;
  --primary-red-glow: rgba(153, 0, 20, 0.45);
  --accent-gold: #ffd700;
  --accent-gold-glow: rgba(255, 215, 0, 0.35);
  --accent-cyan: #00f0ff;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-gold: #ffe066;
  
  --font-title: 'Bebas Neue', 'Oswald', sans-serif;
  --font-sub: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-glow: 0 0 25px rgba(230, 0, 35, 0.25);
  --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.2);
}

/* Universal 100% Opaque Card Rule - Enforces zero transparency on all cards */
[class*="-card"],
.card,
.faq-item,
.modal-content,
.ticket-tier {
  background-color: var(--bg-card);
  opacity: 1;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/Lariato-circledragon.png');
  background-size: 140px auto;
  background-position: top left;
  background-repeat: repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-title);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

h2 .highlight {
  color: var(--primary-red);
  position: relative;
}

h2 .highlight-gold {
  color: var(--accent-gold);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Components */
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.card-dark { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; }
.card-dark-glass { background: #12141d; border: 1px solid var(--border-glass); border-radius: var(--radius-md); overflow: hidden; }
.border-gold { border: 1px solid var(--border-gold); }
.border-glass { border: 1px solid var(--border-glass); }
.shadow-heavy { box-shadow: 0 15px 40px rgba(0,0,0,0.7); }
.shadow-gold { box-shadow: 0 0 20px rgba(255,215,0,0.35); }
.radius-sm { border-radius: var(--radius-sm); }
.radius-md { border-radius: var(--radius-md); }
.radius-lg { border-radius: var(--radius-lg); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.text-white { color: #fff; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.page-banner {
  padding-top: 140px;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, rgba(7,8,12,0.9), rgba(11,13,20,0.95));
  border-bottom: 1px solid var(--border-glass);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-live, .badge-gold, .badge-glass, .event-date-badge {
  background: var(--primary-red);
  color: #fff;
  border: none;
  font-weight: 700;
}
.badge-live {
  box-shadow: 0 0 15px var(--primary-red-glow);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #990014, #73000f);
  color: #fff;
  box-shadow: 0 0 25px rgba(153, 0, 20, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(153, 0, 20, 0.6);
  background: linear-gradient(135deg, #b80018, #990014);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #0b0c10;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Navbar Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  list-style: none;
  width: 100%;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Separation between Contact & Buy Tickets Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 115px;
  padding-bottom: 50px;
  background: linear-gradient(to right, rgba(7, 8, 12, 0.92) 30%, rgba(7, 8, 12, 0.6)),
              url('assets/hero_bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

body.home-page::before {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Countdown Card */
.event-countdown-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--primary-red);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.countdown-title {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.countdown-event-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: #fff;
}

.timer-units {
  display: flex;
  gap: 1rem;
}

.timer-box {
  text-align: center;
}

.timer-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
}

.timer-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Quick Match Card / Hero Media Side */
.hero-media-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.vs-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1.5rem 0;
}

.fighter-preview {
  text-align: center;
}

.fighter-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: #fff;
}

.vs-badge {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--primary-red);
  background: rgba(230, 0, 35, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-red);
}

/* Events Section */
.events-section {
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-glow);
}

.event-card-header {
  position: relative;
  height: 180px;
  background: #111420;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
}

.event-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 8, 12, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  text-align: center;
}

.date-day {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--accent-gold);
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.event-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-location {
  font-size: 0.9rem;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.event-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.event-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.event-details li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.event-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-tag {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Roster Section */
.roster-section {
  background: linear-gradient(to bottom, transparent, rgba(14, 17, 26, 0.5), transparent);
}

.roster-tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.roster-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
  cursor: pointer;
}

.roster-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.roster-img-wrapper {
  height: 320px;
  background: radial-gradient(circle at center, #242938 0%, #0d0f16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.roster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-normal);
}

.roster-card:hover .roster-img {
  transform: scale(1.05);
}

.roster-avatar {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  transition: var(--transition-normal);
}

.roster-card:hover .roster-avatar {
  transform: scale(1.1);
  color: var(--accent-gold);
}

.roster-info {
  padding: 1.2rem;
  background: rgba(12, 14, 22, 0.95);
}

.roster-role {
  font-size: 0.75rem;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roster-name {
  font-size: 1.6rem;
  color: #fff;
}

.roster-move {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Broadcast / Watch Section */
.watch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-normal);
}

.watch-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
}

.network-logo {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

/* Merchandise Section */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
}

.merch-img-placeholder {
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.2rem;
}

.merch-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.merch-price {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.8rem 1.4rem 1.8rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-red);
}

/* Modal Ticket Picker */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0f121d;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 650px;
  height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-gold);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.ticket-tier {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ticket-tier:hover, .ticket-tier.selected {
  border-color: var(--primary-red);
  background: rgba(230, 0, 35, 0.1);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: #141724;
  border-left: 4px solid var(--accent-gold);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slide-toast 0.3s ease;
}

@keyframes slide-toast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

.footer-title {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #07080c;
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-normal);
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-actions {
    border-left: none;
    padding-left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Form Controls & Alignment */
.dojo-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
  margin: 0;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: #141724;
  color: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .watch-theater-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Added utilities for proposal 2 */
.grid-70-30 { display: grid; grid-template-columns: 7fr 3fr; gap: 1.8rem; align-items: start; margin-bottom: 2.5rem; }
.theater-frame { background: #12141d; border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: 0 15px 40px rgba(0,0,0,0.7); }
.video-responsive { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-md); background: #000; }
.video-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.theater-info-row { margin-top: 1.2rem; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.theater-info-text { flex: 1; min-width: 260px; }
.theater-title { font-size: 1.6rem; color: #fff; margin-top: 0.2rem; margin-bottom: 0.4rem; line-height: 1.3; }
.theater-desc { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.5; }
.btn-yt { font-size: 0.88rem; padding: 0.6rem 1.1rem; white-space: nowrap; background: #cc0000; border-color: #e60023; }
.queue-header { font-size: 1.05rem; font-weight: 700; color: var(--accent-gold); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-playlist { display: flex; flex-direction: column; gap: 0.8rem; }
.vid-card { background: #12141d; border: 1px solid var(--border-glass); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: transform 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.vid-card:hover { transform: translateY(-3px); border-color: var(--accent-gold); }
.vid-thumb-container { position: relative; padding-bottom: 56.25%; background: #000; }
.vid-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.vid-info { padding: 0.8rem; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.vid-title { font-size: 1.05rem; color: #fff; margin: 0 0 0.4rem 0; line-height: 1.3; }
.vid-desc { color: var(--text-muted); font-size: 0.85rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.sponsor-logo { object-fit: contain; width: 100%; height: 100%; padding: 15px; }

/* Fix for sidebar playlist layout */
.sidebar-queue-item {
    flex-direction: row !important;
    padding: 0.6rem;
    gap: 0.8rem;
}

.roster-modal-img { object-fit: cover; object-position: top; width: calc(100% - 30px); max-width: none; aspect-ratio: 3/4; border-radius: 12px; display: block; margin: 0 auto 1rem auto; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border: 2px solid var(--border-gold); }
