/**
 * KarmaTube Theatre Styles
 * Cinematic lobby experience with DailyGood warmth
 */

/* ========================================
   CSS Variables - Theatre Palette
   ======================================== */
:root {
  /* KarmaTube base (inherited) */
  --kt-terracotta: #c67b5c;
  --kt-gold: #c9a86c;
  --kt-sage: #7cb798;
  --kt-brown: #5d4e37;
  
  /* Theatre additions */
  --theatre-dark: #1a1a1a;
  --theatre-curtain: #6d2c35;
  --theatre-velvet: #3d1f23;
  --theatre-spotlight: #ffd700;
  --theatre-gold: #d4af37;
}

/* ========================================
   Main Lobby Container
   ======================================== */
.theatre-lobby {
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f5f0 50%, #f5f0e8 100%);
  padding: 40px 0 60px;
  min-height: 100vh;
}

/* ========================================
   Theatre Banner
   ======================================== */
.theatre-banner {
  background: linear-gradient(135deg, var(--theatre-velvet) 0%, var(--theatre-dark) 100%);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.theatre-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.theatre-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theatre-gold);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.theatre-badge i {
  font-size: 1.3rem;
}

.theatre-preview-tag {
  background: rgba(255, 215, 0, 0.2);
  color: var(--theatre-gold);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-left: 8px;
}

.theatre-dates {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ========================================
   Main Theatre Card
   ======================================== */
.theatre-main-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 90, 43, 0.06);
}

/* ========================================
   Poster Section (Cinematic)
   ======================================== */
.theatre-poster-section {
  position: relative;
  background: var(--theatre-dark);
  padding: 32px;
}

.theatre-poster-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
}

.theatre-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Overlay */
.theatre-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.theatre-play-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theatre-play-icon i {
  font-size: 2.5rem;
  color: var(--theatre-curtain);
  margin-left: 6px; /* Visual centering for play icon */
}

.theatre-poster-wrapper:hover .theatre-play-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.theatre-coming-soon {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* Viewing Window Badge */
.theatre-window-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

/* ========================================
   Info Section
   ======================================== */
.theatre-info-section {
  padding: 36px 40px 40px;
}

.theatre-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--kt-brown);
  margin-bottom: 16px;
  line-height: 1.25;
}

.theatre-filmmaker {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.theatre-filmmaker a {
  color: #8b5a2b;
  text-decoration: none;
  font-weight: 500;
}

.theatre-filmmaker a:hover {
  text-decoration: underline;
}

/* Social Proof */
.theatre-social-proof {
  margin-bottom: 28px;
}

.theatre-viewers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.viewer-avatars {
  display: flex;
}

.viewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid white;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: white;
}

.viewer-avatar i {
  font-size: 12px;
}

.viewer-avatar:first-child {
  margin-left: 0;
}

.viewer-text {
  color: #666;
  font-size: 0.95rem;
}

.viewer-text strong {
  color: var(--kt-sage);
  font-weight: 600;
}

/* ========================================
   The Invitation Box
   ======================================== */
.theatre-invitation {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(139, 90, 43, 0.1);
}

.invitation-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--kt-brown);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.invitation-icon {
  font-size: 1.5rem;
}

.invitation-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Journey Steps */
.theatre-journey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.journey-step:nth-child(1) { border-left-color: var(--kt-sage); }
.journey-step:nth-child(2) { border-left-color: var(--kt-gold); }
.journey-step:nth-child(3) { border-left-color: var(--kt-terracotta); }
.journey-step:nth-child(4) { border-left-color: var(--kt-brown); }

.journey-step:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.step-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 90, 43, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.step-icon i {
  color: #8b5a2b;
}

.step-text {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

/* ========================================
   CTA Button
   ======================================== */
.theatre-cta {
  text-align: center;
  padding-top: 8px;
}

.theatre-enter-btn {
  background: linear-gradient(135deg, var(--theatre-curtain) 0%, #5a2329 100%);
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(109, 44, 53, 0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theatre-enter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(109, 44, 53, 0.45);
  background: linear-gradient(135deg, #7d3440 0%, #6a2a30 100%);
  color: white;
}

.theatre-enter-btn .btn-icon {
  font-size: 1.3rem;
}

.theatre-cta-subtext {
  color: #888;
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ========================================
   Synopsis Section
   ======================================== */
.theatre-synopsis-section {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(139, 90, 43, 0.06);
}

.synopsis-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--kt-brown);
  margin-bottom: 16px;
}

.synopsis-header i {
  color: var(--kt-gold);
}

.synopsis-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
}

.synopsis-content a {
  color: #8b5a2b;
}

/* ========================================
   What to Expect Section
   ======================================== */
.theatre-expect-section {
  margin-top: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #fdfcfa 0%, #f8f5f0 100%);
  border-radius: 20px;
  border: 1px solid rgba(139, 90, 43, 0.08);
}

.expect-header {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--kt-brown);
  margin-bottom: 24px;
  text-align: center;
}

.expect-header i {
  color: var(--kt-gold);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expect-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 90, 43, 0.06);
}

.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.expect-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--kt-gold);
}

.expect-icon i {
  color: var(--kt-gold);
}

/* Video player in success modal */
.theatre-video-player {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.theatre-video-player iframe {
  border: none;
}

.expect-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--kt-brown);
  margin-bottom: 8px;
}

.expect-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   Alternative Link
   ======================================== */
.theatre-alternative {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.theatre-alternative p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.theatre-alternative a {
  color: var(--kt-sage);
  text-decoration: none;
  font-weight: 500;
}

.theatre-alternative a:hover {
  text-decoration: underline;
}

/* ========================================
   About Box
   ======================================== */
.theatre-about-box {
  background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid rgba(139, 90, 43, 0.1);
}

.theatre-about-logo {
  width: 60px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.theatre-about-box p {
  font-size: 0.9rem;
}

.theatre-about-box a {
  color: var(--kt-sage);
  text-decoration: none;
}

.theatre-about-box a:hover {
  text-decoration: underline;
}

/* ========================================
   RSVP Modal
   ======================================== */
.theatre-modal .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.theatre-modal .modal-header {
  background: linear-gradient(135deg, var(--theatre-curtain) 0%, var(--theatre-velvet) 100%);
  padding: 24px 28px;
  border-bottom: none;
}

.theatre-modal .modal-title {
  color: white;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.theatre-modal .modal-body {
  padding: 32px;
}

.rsvp-intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* Form Styles */
.theatre-modal .form-label {
  font-weight: 600;
  color: var(--kt-brown);
  margin-bottom: 8px;
}

.theatre-modal .form-control {
  border-radius: 12px;
  border: 1px solid #e0dbd4;
  padding: 14px 18px;
  transition: all 0.2s ease;
}

.theatre-modal .form-control:focus {
  border-color: var(--theatre-curtain);
  box-shadow: 0 0 0 4px rgba(109, 44, 53, 0.1);
}

.theatre-modal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Consent Checkboxes */
.rsvp-consents {
  margin-top: 24px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #faf8f5;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: background 0.2s ease;
}

.consent-item:hover {
  background: #f5f0e8;
}

.consent-item.primary-consent {
  background: linear-gradient(135deg, #f0f9f3 0%, #e8f5ed 100%);
  border: 1px solid rgba(124, 183, 152, 0.3);
}

.consent-item .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-item .form-check-input:checked {
  background-color: var(--kt-sage);
  border-color: var(--kt-sage);
}

.consent-item .form-check-label {
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
}

.consent-item .form-check-label small {
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Submit Button */
.btn-theatre-submit {
  background: linear-gradient(135deg, var(--kt-sage) 0%, #5fa37e 100%);
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(124, 183, 152, 0.35);
}

.btn-theatre-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 183, 152, 0.45);
  background: linear-gradient(135deg, #6aa889 0%, #4f936e 100%);
  color: white;
}

.btn-theatre-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success State */
#rsvpSuccessContainer .success-icon {
  font-size: 5rem;
  color: var(--kt-sage);
}

#rsvpSuccessContainer h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--kt-brown);
}

.success-next-steps {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}

.success-next-steps h5 {
  color: var(--kt-brown);
}

.success-tip {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--kt-gold);
}

/* ========================================
   Loading States
   ======================================== */
.theatre-loading {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: theatre-spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
  .theatre-title {
    font-size: 1.9rem;
  }
  
  .theatre-info-section {
    padding: 28px 24px 32px;
  }
}

@media (max-width: 768px) {
  .theatre-lobby {
    padding: 24px 0 40px;
  }
  
  .theatre-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .theatre-poster-section {
    padding: 20px;
  }
  
  .theatre-play-icon {
    width: 70px;
    height: 70px;
  }
  
  .theatre-play-icon i {
    font-size: 2rem;
  }
  
  .theatre-title {
    font-size: 1.6rem;
  }
  
  .theatre-journey-steps {
    grid-template-columns: 1fr;
  }
  
  .theatre-enter-btn {
    padding: 16px 36px;
    font-size: 1rem;
  }
  
  .expect-grid {
    grid-template-columns: 1fr;
  }
  
  .theatre-modal .modal-body {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .theatre-main-card {
    border-radius: 16px;
  }
  
  .theatre-info-section {
    padding: 24px 20px 28px;
  }
  
  .theatre-invitation {
    padding: 20px;
  }
  
  .journey-step {
    padding: 12px 14px;
  }
  
  .theatre-synopsis-section,
  .theatre-expect-section {
    padding: 24px 20px;
  }
}

/* ========================================
   Theatre Pages (Ticket, View, Reflect)
   ======================================== */
.theatre-page {
  padding: 40px 0 60px;
  min-height: 70vh;
}

.theatre-breadcrumb {
  margin-bottom: 24px;
}

.theatre-breadcrumb a {
  color: var(--kt-brown);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

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

.theatre-page-header {
  margin-bottom: 32px;
}

.theatre-badge-inline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--theatre-curtain) 0%, var(--theatre-velvet) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.theatre-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--kt-brown);
  margin-bottom: 8px;
}

.theatre-page-subtitle {
  color: #666;
  font-size: 1.1rem;
}

/* Form Card */
.theatre-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 90, 43, 0.08);
}

.theatre-form-card .form-label {
  font-weight: 600;
  color: var(--kt-brown);
  margin-bottom: 8px;
}

.theatre-form-card .form-control {
  border-radius: 12px;
  border: 1px solid #e0dbd4;
  padding: 14px 18px;
  transition: all 0.2s ease;
}

.theatre-form-card .form-control:focus {
  border-color: var(--theatre-curtain);
  box-shadow: 0 0 0 4px rgba(109, 44, 53, 0.1);
}

.theatre-form-card textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Mini Info Card */
.theatre-mini-info {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(139, 90, 43, 0.08);
}

.theatre-mini-thumb {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
}

.theatre-mini-info h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--kt-brown);
  margin-bottom: 4px;
}

/* ========================================
   View Page (Theatre)
   ======================================== */
.theatre-view {
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2420 50%, var(--theatre-cream) 50%);
}

.theatre-view-header {
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  border-radius: 20px;
  margin-bottom: 24px;
}

.theatre-view-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 4px;
}

.theatre-view-credits {
  color: rgba(255, 255, 255, 0.7);
}

.bg-theatre-curtain {
  background: var(--theatre-curtain);
}

.theatre-video-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.theatre-video-container iframe {
  border: none;
}

/* Vimeo embed fallback (privacy/cookie block) */
.theatre-vimeo-wrap {
  position: relative;
}
.theatre-embed-fallback {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theatre-velvet) 0%, var(--theatre-dark) 100%);
  z-index: 10;
}
.theatre-embed-fallback .fallback-content {
  text-align: center;
  color: #e8e0d8;
  max-width: 440px;
  padding: 24px;
}
.theatre-embed-fallback h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #f5f0e8;
}
.theatre-embed-fallback .fallback-actions {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
}
.theatre-embed-fallback .fallback-actions p {
  color: #d4cfc8;
}

.theatre-view-cta {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.theatre-view-cta h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--kt-brown);
}

.text-theatre-gold {
  color: var(--kt-gold) !important;
}

.theatre-view-synopsis {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.theatre-view-tips {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(139, 90, 43, 0.08);
}

.theatre-view-tips h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--kt-brown);
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
}

.tip-item i {
  font-size: 1.3rem;
  color: var(--kt-gold);
}

/* ========================================
   Reflect Page
   ======================================== */
.reflect-intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.reflect-questions {
  margin-top: 20px;
}

.reflect-question label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.reflect-question label i {
  font-size: 1.2rem;
}

/* Rating Scale */
.reflect-rating {
  padding: 24px;
  background: #faf8f5;
  border-radius: 16px;
}

.rating-scale .btn-group {
  display: flex;
}

.btn-outline-theatre {
  border-color: #e0dbd4;
  color: #666;
  flex: 1;
  padding: 12px 8px;
  font-weight: 600;
}

.btn-outline-theatre:hover {
  background: #f5f0e8;
  border-color: #d0cbc4;
  color: var(--kt-brown);
}

.btn-check:checked + .btn-outline-theatre {
  background: linear-gradient(135deg, var(--kt-gold) 0%, #b8956a 100%);
  border-color: var(--kt-gold);
  color: white;
}

/* Reflect Success */
#reflectSuccessContainer .success-icon {
  font-size: 5rem;
  color: var(--kt-sage);
}

#reflectSuccessContainer h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--kt-brown);
}

.success-message-box {
  background: linear-gradient(135deg, #f0f9f3 0%, #e8f5ed 100%);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  border: 1px solid rgba(124, 183, 152, 0.2);
}

.success-message-box h5 {
  color: var(--kt-brown);
}

/* ========================================
   Responsive - New Pages
   ======================================== */
@media (max-width: 768px) {
  .theatre-page {
    padding: 24px 0 40px;
  }
  
  .theatre-page-title {
    font-size: 1.8rem;
  }
  
  .theatre-form-card {
    padding: 28px 24px;
    border-radius: 20px;
  }
  
  .theatre-view-header {
    padding: 20px;
    border-radius: 16px;
  }
  
  .theatre-view-title {
    font-size: 1.5rem;
  }
  
  .theatre-view-cta {
    padding: 24px;
  }
  
  .theatre-view-cta .row > div {
    text-align: center !important;
    margin-bottom: 16px;
  }
  
  .rating-scale .btn-outline-theatre {
    padding: 10px 4px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .theatre-mini-thumb {
    width: 60px;
    height: 34px;
  }
  
  .theatre-view-header {
    text-align: center;
  }
  
  .theatre-view-meta {
    text-align: center !important;
    margin-top: 12px;
  }
}
