/* ================================================================
   BIGG BOSS AGNIPAREEKSHA – Global Stylesheet
   ================================================================ */

/* ── Google Fonts fallback + Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-dark:   #2a0040;
  --purple-mid:    #4a0072;
  --purple-rich:   #6a0dad;
  --purple-bright: #d500f9;
  --pink-hot:      #ff4081;
  --pink-deep:     #c51162;
  --gold-bright:   #ffd700;
  --gold-mid:      #f0a500;
  --gold-dark:     #c67c00;
  --white:         #ffffff;
  --white-70:      rgba(255,255,255,0.7);
  --white-40:      rgba(255,255,255,0.4);
  --white-15:      rgba(255,255,255,0.15);
  --white-08:      rgba(255,255,255,0.08);
  --glass-bg:      rgba(255,255,255,0.05);
  --glass-border:  rgba(255,255,255,0.12);
  --input-bg:      rgba(255,255,255,0.07);
  --input-border:  rgba(255,255,255,0.18);
  --input-focus:   rgba(232,93,244,0.6);
  --error-color:   #ff6b6b;
  --success-color: #4ade80;
  --font-main:     'Outfit', sans-serif;
  --font-display:  'Rajdhani', sans-serif;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

html, body { width: 100%; min-height: 100vh; font-family: var(--font-main); scroll-behavior: smooth; }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-main); }
input, select, textarea { font-family: var(--font-main); }
.hidden { display: none !important; }

/* ================================================================
   STARS OVERLAY
   ================================================================ */
.stars-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 75%, rgba(232,93,244,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 50%, rgba(255,255,255,0.4) 0%, transparent 100%);
}

/* ================================================================
   NAV BAR
   ================================================================ */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: stretch; justify-content: space-between;
  padding: 0 40px; height: 80px;
  background: #1a0033;
  border-bottom: 2px solid #d500f9;
  box-shadow: 0 0 10px rgba(213,0,249,0.3);
}

.nav-left, .nav-right {
  display: flex; align-items: center; gap: 0; height: 100%;
}

.asianet-logo {
  height: 40px; margin-right: 20px;
  object-fit: contain;
}

.myg-logo {
  height: 45px; margin-right: 30px;
  object-fit: contain;
}

.nav-social-wrap {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  width: 260px; height: 100%; align-self: stretch;
}
.outline-wrap { margin-left: 20px; }
.solid-wrap { margin-right: 20px; }

.nav-shape-svg {
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 50px;
  z-index: 1; pointer-events: none;
}

.nav-social-icons {
  position: relative; z-index: 2; display: flex; align-items: center; gap: 20px;
  margin-bottom: 6px;
}

.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  transition: var(--transition);
}
.outline-icon {
  border: 2px solid #d500f9; color: #d500f9; background: transparent;
  box-shadow: 0 0 8px rgba(213,0,249,0.3);
}
.solid-icon {
  border: 1px solid #11001c; color: #11001c; background: transparent;
}
.social-icon:hover {
  transform: scale(1.1); box-shadow: 0 0 8px rgba(213,0,249,0.5);
}

.hotstar-logo {
  height: 50px;
  margin-left: 30px;
  object-fit: contain;
}

/* ================================================================
   LANDING PAGE
   ================================================================ */
.landing-body {
  background: linear-gradient(135deg, #2b0057 0%, #1a0033 50%, #3a0062 100%);
  overflow-x: hidden;
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: stretch;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(213,0,249,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(213,0,249,0.1) 0%, transparent 70%);
  bottom: -80px; right: 100px;
  animation-delay: 2s;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: stretch; justify-content: space-between;
  width: 100%; max-width: 1800px; margin: 0 auto;
  padding: 0 30px;
  gap: 20px;
}

/* Hero Left */
.hero-left {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 20px;
  padding-left: 60px;
}

.hero-tagline {
  font-size: clamp(24px, 3vw, 32px); font-weight: 600;
  color: var(--white); letter-spacing: 1.5px;
  text-transform: none; 
  text-shadow: 0 0 15px rgba(213,0,249,0.8), 0 0 5px rgba(213,0,249,0.5);
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  color: var(--white); line-height: 1.1;
  text-shadow: 0 0 25px rgba(213,0,249,0.8), 0 0 10px rgba(213,0,249,0.6);
  margin-bottom: 20px;
  letter-spacing: 2.5px;
}

/* ── BB Logo Component ─────────────── */
.bb-logo-img {
  width: 100%; max-width: 800px; height: auto;
  margin: 10px 0 20px 0;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255,215,0,0.4));
  transform: scale(1.15);
}

/* ── Register Button ──────────────── */
.register-btn {
  position: relative; display: inline-block; overflow: hidden;
  padding: 16px 48px; border-radius: 12px;
  border: 2px solid #d500f9;
  background: #1a0033;
  color: var(--white); font-family: var(--font-main);
  font-size: 18px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(213,0,249,0.4);
  margin-top: 20px;
}
.register-btn:hover {
  background: #d500f9;
  color: #fff;
  box-shadow: 0 0 40px rgba(213,0,249,0.7);
  transform: translateY(-2px);
}

.btn-shimmer {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }

/* Hero Right */
.hero-right {
  flex: 1.2; display: flex; justify-content: flex-end; align-items: flex-end;
  position: relative; padding-right: 140px;
}

.host-container {
  position: relative; display: flex; align-items: flex-end; justify-content: flex-end;
  width: 100%; height: 100%;
}

.host-glow-ring {
  position: absolute; bottom: 10%; right: 10%;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.25) 0%, transparent 70%);
  filter: blur(30px);
  animation: hostGlow 3s ease-in-out infinite alternate;
}
@keyframes hostGlow {
  from { opacity: 0.6; } to { opacity: 1; }
}

.host-img { 
  width: auto; height: 95vh;
  max-width: none;
  position: relative; z-index: 2; 
  object-fit: contain; object-position: bottom right; 
}
.host-svg { width: 340px; height: auto; position: relative; z-index: 2; }
/* ================================================================
   REGISTRATION PAGE
   ================================================================ */
.register-body {
  background: linear-gradient(135deg, #12022a 0%, #220a4a 35%, #1a0838 70%, #100224 100%);
  min-height: 100vh; overflow-x: hidden;
}

.reg-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

.reg-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: glowPulse 5s ease-in-out infinite alternate;
}
.reg-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(100,30,180,0.3) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.reg-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(194,24,91,0.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: 2s;
}
.reg-glow-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,93,244,0.15) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation-delay: 1s;
}

/* Layout */
.registration-section {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; position: relative; width: 100%;
}

.registration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2%;
  right: 2%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(213,0,249, 0.8), transparent);
  box-shadow: 0 0 30px rgba(213,0,249, 0.8), 0 0 60px rgba(213,0,249, 0.4);
  border-radius: 50%;
  z-index: 25;
  pointer-events: none;
}

.reg-layout {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  width: 100%; max-width: 1600px; margin: 0 auto;
}

.reg-layout::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(213,0,249, 0.8), transparent);
  box-shadow: 0 0 30px rgba(213,0,249, 0.8), 0 0 60px rgba(213,0,249, 0.4);
  border-radius: 50%;
  z-index: 25;
  pointer-events: none;
  bottom: -40px;
}

/* Left Panel */
.reg-left {
  width: 45%;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 0px 20px 0 60px;
  gap: 10px;
  position: relative;
}

.reg-bb-logo { margin-top: 0px; }
.reg-bb-img { width: 350px; max-width: 100%; height: auto; object-fit: contain; }

.brand-logos {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px;
}
.brand-divider {
  width: 1px; height: 28px; background: rgba(255, 255, 255, 0.4);
}

.reg-host-container {
  position: absolute;
  bottom: -40px; left: 0;
  width: 100%; display: flex; 
  align-items: flex-end; justify-content: flex-end;
  z-index: 20; pointer-events: none;
}

.reg-host-img { 
  width: 100%; max-width: 750px; max-height: 70vh;
  height: auto; object-fit: contain; object-position: bottom right;
  transform: translateX(60px);
}
.reg-host-svg { width: 260px; height: auto; }

/* Right Panel */
.reg-right {
  width: 55%; position: relative; z-index: 10;
  display: flex; align-items: center;
  justify-content: flex-start; padding: 0px 40px 0px 20px;
}

.ghost-text {
  position: absolute; top: 16px; left: 0; right: 0; text-align: center;
  font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.03);
  pointer-events: none; z-index: 0; letter-spacing: 10px;
}

/* Form Card */
.form-card {
  width: 100%; max-width: 680px;
  background: rgba(45, 0, 75, 0.6);
  border: 1px solid rgba(213, 0, 249, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px 40px 100px 40px;
  box-shadow: none;
  position: relative;
}

/* Form Groups */
.form-group { margin-bottom: 12px; }

.form-label {
  display: block; margin-bottom: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
}

.required { 
  display: inline; color: #fff; background: none; width: auto; height: auto; 
  text-indent: 0; font-size: inherit; margin-left: 2px;
}

/* Input Wrapper */
.input-wrap {
  position: relative; display: flex; align-items: center;
}

.input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--white-40); font-size: 14px; pointer-events: none;
  display: flex; align-items: center;
}

.textarea-wrap .input-icon { top: 14px; transform: none; }

.form-input {
  width: 100%; padding: 10px 10px 10px 36px;
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); color: var(--white);
  font-size: 13px; font-family: var(--font-main);
  transition: var(--transition); outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: #d81b60;
  background: rgba(0,0,0,0.4);
}
.form-input.input-error { border-color: var(--error-color); }

.form-select {
  -webkit-appearance: none; appearance: none;
  padding-right: 32px; cursor: pointer;
}
.form-select option { background: #2d1454; color: var(--white); }

.select-wrap::after {
  content: '▾'; position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%); color: var(--white-70); pointer-events: none;
  font-size: 12px;
}

.form-textarea {
  resize: vertical; min-height: 70px; padding-top: 10px;
}

/* OTP Row */
.otp-row {
  display: flex; gap: 10px;
}

.otp-row .input-wrap { flex: 1; }

.otp-btn {
  padding: 0 18px; border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid #d81b60; color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  white-space: nowrap; transition: var(--transition);
}
.otp-btn:hover {
  transform: translateY(-1px);
  background: rgba(216,27,96,0.2);
}
.otp-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.verify-btn { background: linear-gradient(135deg, #1565c0, #1976d2); }

.otp-verify-row {
  display: flex; gap: 10px; margin-top: 10px;
}
.otp-verify-row .input-wrap { flex: 1; }

.otp-status {
  margin-top: 6px; font-size: 12px; padding: 6px 10px;
  border-radius: var(--radius-sm); font-weight: 600;
}
.otp-status.success { background: rgba(74,222,128,0.15); color: var(--success-color); }
.otp-status.error   { background: rgba(255,107,107,0.15); color: var(--error-color); }
.otp-status.info    { background: rgba(232,93,244,0.15); color: var(--pink-hot); }

/* 2-column row */
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 0;
}
.form-row-2 .form-group { margin-bottom: 8px; }

/* Video Upload */
.video-upload-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.25); border: 1px dashed rgba(255,255,255,0.2);
  gap: 12px; transition: var(--transition);
}
.video-upload-box:hover { border-color: var(--pink-hot); }

.video-upload-info {
  display: flex; align-items: center; gap: 12px;
}
.video-icon { font-size: 22px; }
.video-upload-hint { font-size: 12px; color: var(--white-70); font-weight: 500; }
.video-upload-sub  { font-size: 11px; color: var(--white-40); margin-top: 2px; }

.upload-video-btn {
  padding: 8px 16px; border-radius: var(--radius-sm);
  background: #e65c00;
  color: var(--white); font-size: 12px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: var(--transition);
}
.upload-video-btn:hover { background: #d500f9; transform: scale(1.02); }

.hidden-file-input { display: none; }

.video-selected {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
  font-size: 12px; color: var(--success-color);
}
.remove-video {
  background: none; border: none; color: var(--error-color);
  font-size: 14px; cursor: pointer; padding: 2px 6px;
}

/* Consent */
.consent-block {
  margin-bottom: 8px; padding: 0; border-radius: 0;
  background: transparent; border: none;
}

.consent-text {
  font-size: 10px; color: var(--white-70); line-height: 1.3; margin-bottom: 4px;
}
.consent-link { color: var(--pink-hot); text-decoration: underline; }

.consent-options { display: flex; flex-wrap: wrap; gap: 16px; }

.radio-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--white-70); cursor: pointer;
  transition: var(--transition);
}
.radio-label:hover { color: var(--white); }

.radio-input { display: none; }

.radio-custom {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); flex-shrink: 0;
  transition: var(--transition); position: relative;
}
.radio-input:checked + .radio-custom {
  border-color: #fff;
  background: #fff;
}
.radio-input:checked + .radio-custom::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px; border-radius: 50%; background: #d81b60;
}

/* Error Messages */
.error-msg {
  font-size: 11px; color: var(--error-color); margin-top: 5px;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,107,107,0.1);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: translateY(0); } }

/* Submit Button */
.submit-wrap { margin-top: 24px; text-align: center; }

.submit-btn {
  position: relative; overflow: hidden;
  width: 100%; padding: 10px 16px; border-radius: 8px;
  background: #2a1100;
  border: 1px solid #d500f9; color: var(--white);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--transition);
  box-shadow: none;
}
.submit-btn:hover:not(:disabled) {
  background: rgba(213,0,249,0.3);
  box-shadow: none;
  transform: translateY(-2px);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-error-global {
  margin-top: 12px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(255,107,107,0.12); border: 1px solid rgba(255,107,107,0.3);
  color: var(--error-color); font-size: 13px; text-align: center;
}

/* Success Screen */
.success-screen {
  text-align: center; padding: 48px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #22c55e);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: white;
  box-shadow: 0 0 40px rgba(74,222,128,0.5);
  animation: successBounce 0.5s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes successBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--white);
}
.success-msg {
  font-size: 15px; color: var(--white-70); line-height: 1.7;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; padding: 80px 24px 40px; }
  .hero-right { justify-content: center; }
  .host-svg { width: 240px; }

  .reg-layout { flex-direction: column; }
  .reg-left { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 80px 20px 20px; min-height: auto; }
  .reg-host-container { display: none; }
  .reg-right { padding: 20px; }
  .form-card { padding: 20px; }
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .otp-row { flex-direction: column; }
  .otp-btn { width: 100%; padding: 11px; }
  .video-upload-box { flex-direction: column; align-items: flex-start; }
  .consent-options { flex-direction: column; }
  .hero-left { align-items: center; text-align: center; }
}

/* ================================================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   ================================================================ */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    padding-top: 40px;
    align-items: center;
  }
  .hero-left {
    padding-left: 0;
    margin-bottom: 40px;
  }
  
  .reg-layout {
    flex-direction: column;
    padding-top: 80px;
  }
  .reg-left, .reg-right {
    width: 100%;
    padding: 20px;
  }
  .reg-host-container {
    position: static;
    transform: none;
    justify-content: center;
    margin-bottom: -60px;
    z-index: 0;
  }
  .reg-host-img {
    max-height: 400px;
    transform: none;
  }
  .ghost-text {
    font-size: 50px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .top-nav {
    padding: 0 15px;
    height: 60px;
  }
  .myg-logo, .hotstar-logo {
    height: 40px;
    margin-right: 15px;
  }
  .nav-social-icons {
    gap: 10px;
  }
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .outline-wrap { margin-left: 0; }
  .solid-wrap { margin-right: 0; }
  
  .hero-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .hero-tagline {
    font-size: clamp(18px, 4vw, 24px);
  }
  
  .bb-logo-img {
    transform: scale(1);
    margin: 10px 0;
  }
  
  .form-card {
    padding: 20px 20px 60px 20px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-glow-1 {
    width: 300px; height: 300px;
  }
  .hero-glow-2 {
    width: 250px; height: 250px;
  }
  
  /* Make sure video upload button doesn't overflow */
  .video-upload-box {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .upload-video-btn {
    width: 100%;
  }

  /* Make Mohanlal image smaller in hero section on mobile */
  .host-img {
    height: 55vh;
    max-height: 500px;
  }
  
  /* Center the host image on mobile */
  .hero-right {
    justify-content: center;
    padding-right: 0;
  }
  .host-container {
    justify-content: center;
  }
}

/* Very Small Phones */
@media (max-width: 480px) {
  .top-nav {
    padding: 0 10px;
  }
  .asianet-logo, .myg-logo, .hotstar-logo {
    height: 25px;
  }
  .nav-social-icons {
    display: none; /* Hide social icons on very small screens to save space */
  }
  .form-card {
    padding: 15px 15px 50px 15px;
  }
  .reg-host-img {
    max-height: 250px;
  }
  .ghost-text {
    font-size: 30px;
    letter-spacing: 5px;
  }
}

/* ================================================================
   MOBILE TWEAKS FROM USER FEEDBACK
   ================================================================ */

@media (max-width: 768px) {
  /* Hide the top-nav svg shapes and outline so logos don't get pushed out */
  .nav-social-wrap { display: none !important; }
  
  /* Make the nav full width for the two logos */
  .top-nav { justify-content: space-between; }
  
  /* Hide the duplicate logo in the registration section */
  .reg-bb-img { display: none !important; }
  
  /* Hide the giant host image on mobile so the form is immediately accessible */
  .reg-host-container { display: none !important; }
  
  /* Reduce the padding on the form card to fit nicely */
  .form-card { padding: 20px 15px 40px 15px; margin-top: -30px; }
  
  /* The hero section title */
  .hero-left {
     padding-top: 20px;
  }
}

/* ================================================================
   MOBILE TWEAKS - SHOW SOCIAL ICONS
   ================================================================ */

@media (max-width: 768px) {
  /* Restore the social wrap, but remove its fixed width and background shape */
  .nav-social-wrap {
    display: flex !important;
    width: auto;
    flex: 1;
    align-items: center;
  }
  .nav-shape-svg {
    display: none !important; /* Hide the background SVG */
  }
  .nav-social-icons {
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
  }
  
  /* Hide youtube icon to save space, user requested Instagram and Facebook */
  #nav-yt-left {
    display: none !important;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin: 0 5px;
  }
}
