/* =============================================
   FRONTSTYLES.CSS - Extracted from index.php
   Airali Quiz Landing Page Styles
   ============================================= */

/* =============================================
   CAROUSEL / HERO SECTION
   ============================================= */
.carousel-item {
  position: relative;
  height: 100vh;
  min-height: 500px;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

/* =============================================
   NAVBAR - MYSTIC GLOWING STYLES
   ============================================= */
.navbar-custom {
  min-height: 120px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color 0.3s ease;
}

.navbar-custom:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 70px;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  margin-right: 1rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #00ffff;
  animation: glowLogo 2s infinite alternate;
}

@keyframes glowLogo {
  from { text-shadow: 0 0 5px #00ffff; }
  to { text-shadow: 0 0 20px #00ffff; }
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-custom .nav-link {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-custom .nav-link:hover {
  color: #ccc;
  text-decoration: underline;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(88,88,88,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

/* =============================================
   HERO CAROUSEL - SPECIFIC OVERRIDES
   ============================================= */
#heroCarousel .carousel-item {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

#heroCarousel .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Semi-transparent overlay */
#heroCarousel .hero-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Star overlay for glowing effects */
.star-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #fff;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

/* Caption styling */
.carousel-caption.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
}

.carousel-caption.hero-overlay-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.carousel-caption.hero-overlay-content p {
  font-size: 1.5rem;
  color: #f0f0f0;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Fade-in effect */
.fade-in-text {
  animation: fadeIn 2s ease-in-out;
}

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

/* Hero button styling */
.btn.btn-hero {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #fff;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-hero:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* =============================================
   CHAT SECTION
   ============================================= */
.chat-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.chat-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.chat-container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Camera Window */
#airali-camera-window {
  position: fixed;
  right: 20px;
  top: 100px;
  width: 240px;
  height: 180px;
  background-color: #000;
  border: 2px solid #00ffff;
  border-radius: 8px;
  overflow: hidden;
  display: none;
  z-index: 2;
}

/* Minimal Chat Interface */
.chat-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.chat-minimal input[type="text"] {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
}

.ask-airali-btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: none;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #fff;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ask-airali-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,255,255,0.7);
}

/* Full Chat Interface */
.chat-full {
  border: 2px solid #00ffff;
  border-radius: 10px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
  animation: fadeIn 1s ease-in-out, pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(0,255,255,0.5); }
  50% { box-shadow: 0 0 30px rgba(0,255,255,1); }
  100% { box-shadow: 0 0 20px rgba(0,255,255,0.5); }
}

.chat-header {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffff;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #00ffff;
}

.chat-messages {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.chat-messages-content {
  max-height: 360px;
  overflow-y: auto;
  padding: 1rem;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.message-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.chat-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid #00ffff;
}

.sender-name {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0,255,255,0.8);
}

.message-content {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #00ffff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 0 5px #00ffff;
  max-width: 75%;
}

.chat-footer {
  margin-top: 1rem;
}

.chat-input-container {
  display: flex;
  align-items: center;
}

.chat-input-container textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  outline: none;
  resize: none;
}

.chat-input-container button {
  margin-left: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.chat-input-container button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,255,255,0.7);
}

/* Image upload and camera buttons */
#airali-upload-btn,
#airali-camera-btn {
  margin-left: 10px;
}

/* Attached image thumbnails */
#airali-attached-images div.thumb-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#airali-attached-images div.thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#airali-attached-images div.thumb-wrapper button {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 0 0 0 4px;
}

/* =============================================
   AUDIOBOOK SECTION
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

#audiobook {
  background: linear-gradient(to bottom, #0a1526, #1a2639);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.cosmic-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/cosmic-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

#audiobook .section-title {
  font-family: 'Cinzel', serif;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

#audiobook .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ffd700, transparent);
  margin-top: 10px;
}

.mystic-text {
  color: #e0e0e0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  text-shadow: 0 0 2px rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.img-placeholder {
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Audio player styling */
.audio-player {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 43, 62, 0.8), rgba(10, 20, 30, 0.9));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 2;
}

.audio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('img/ancient-symbols.png');
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.player-controls {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}

.play-button {
  background: linear-gradient(145deg, #ffd700, #b8860b);
  border: none;
  color: #111;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(0, 255, 255, 0.4);
}

#audio-title {
  color: #e0e0e0;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  position: relative;
}

.progress-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  height: 8px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

#progress-bar {
  background: linear-gradient(to right, #ffd700, #00ffff);
  height: 100%;
  width: 0%;
  border-radius: 10px;
  transition: width 0.1s linear;
  position: relative;
}

#progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 5px #fff, 0 0 10px rgba(255, 215, 0, 0.8);
  opacity: 0.8;
  transform: scale(1.5);
}

.visualizer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
  opacity: 0.7;
}

/* Inactive audio player pulse */
.audio-player.inactive {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Responsive audio player */
@media (max-width: 768px) {
  .audio-player {
    padding: 15px;
  }
  
  .play-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  #audio-title {
    font-size: 14px;
  }
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
#reviews .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.review-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.review-card {
  background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
  border: 1px solid #444;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  overflow: hidden;
  max-width: 400px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00ffff;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.review-meta {
  font-size: 1rem;
  color: #bbb;
}

.review-text {
  font-size: 1.1rem;
  color: #ccc;
  text-shadow: 0 0 5px rgba(0,255,255,0.5);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.section {
  padding: 4rem 0;
  background: #000;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

#blog .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

/* Blog Grid & Cards */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.blog-post {
  background: linear-gradient(145deg,#1a1a1a,#2b2b2b);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.8);
}

/* Active card state */
.blog-post.active {
  box-shadow: 0 0 30px rgba(0,255,255,0.6);
  border: 2px solid #00ffff;
  transform: scale(1.05);
}

/* Inactive cards state when panel is visible */
body.panel-open .blog-post:not(.active) {
  opacity: 0.6;
  filter: blur(1px);
  transform: scale(0.95);
}

.card-image {
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post:hover .card-image img {
  transform: scale(1.1);
}

.blog-post h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 1rem 0.75rem 0.5rem;
}

.blog-post p {
  color: #ccc;
  font-size: 1rem;
  margin: 0 0.75rem 1rem;
  line-height: 1.4;
}

.btn-card {
  display: inline-block;
  margin: 0.5rem 0.75rem 1rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(45deg,#00ffff,#0077ff);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

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

/* Slide Panel */
#content-panel {
  position: fixed;
  top: 0;
  right: -800px;
  width: 100%;
  max-width: 800px;
  height: 100vh;
  background: linear-gradient(145deg,#1a1a1a,#2b2b2b);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  border-left: 2px solid #00ffff;
}

#content-panel.active {
  transform: translateX(-800px);
}

.panel-inner {
  padding: 2rem;
  position: relative;
}

/* Panel content styling */
.panel-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.panel-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-content h2 {
  color: #00ffff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-top: 1rem;
}

.panel-content p {
  color: #eee;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 10;
  width: 44px;
  height: 44px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Semi-transparent overlay */
#panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Blog Adjustments */
@media (max-width: 992px) {
  #content-panel {
    max-width: 100%;
    right: -100%;
  }
  
  #content-panel.active {
    transform: translateX(-100%);
  }
  
  .panel-inner {
    padding: 1.5rem;
  }
  
  .panel-content h2 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .blog-post {
    width: 100%;
    max-width: 320px;
  }
  
  .panel-inner {
    padding: 1rem;
  }
  
  .panel-content h2 {
    font-size: 1.5rem;
  }
  
  .panel-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

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

/* =============================================
   FAQ SECTION - MYSTIC STYLE
   ============================================= */
.mystic-faq-section {
  width: 100%;
  background: #000;
  padding: 3rem 0;
}

.mystic-faq-section .section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px #0ff;
}

.mystic-faq-column {
  margin-bottom: 2rem;
}

.accordion .card {
  margin-bottom: 1rem;
  border: none;
}

.mystic-faq-card {
  background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
  border: 1px solid #444;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInFaq 0.7s ease forwards;
}

.mystic-faq-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

/* Card Header (FAQ Question) */
.mystic-faq-card .card-header {
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid #555;
  cursor: pointer;
}

.mystic-faq-question {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
  padding: 0.5rem;
  text-shadow: 0 0 5px #00ffff;
  transition: color 0.3s;
}

.mystic-faq-card .card-header:hover .mystic-faq-question {
  color: #0ff;
  text-decoration: underline;
}

/* Card Body (FAQ Answer) */
.mystic-faq-card .card-body {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid #333;
  color: #ccc;
  padding: 1rem;
}

.mystic-faq-card .card-body p {
  margin: 0;
}

/* FAQ Fade-In Animation */
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

/* Video fills entire section */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay for readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Form wrapper above video & overlay */
.form-wrapper {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

/* Title & description */
.section-title.epic-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
  animation: glowTitle 2s infinite alternate;
  margin-bottom: 1rem;
}

@keyframes glowTitle {
  0% { text-shadow: 0 0 10px #00ffff; }
  100% { text-shadow: 0 0 30px #00ffff; }
}

.epic-description {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Form styling */
.epic-form {
  background: rgba(0,0,0,0.7);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
  animation: formPulse 3s infinite;
}

@keyframes formPulse {
  0% { box-shadow: 0 0 10px rgba(0,255,255,0.4); }
  50% { box-shadow: 0 0 30px rgba(0,255,255,0.8); }
  100% { box-shadow: 0 0 10px rgba(0,255,255,0.4); }
}

.epic-input {
  background: rgba(0,0,0,0.8);
  border: 1px solid #00ffff;
  color: #fff;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: border 0.3s, box-shadow 0.3s;
}

.epic-input:focus {
  border-color: #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.epic-btn {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.epic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,0,255,0.7);
}

/* =============================================
   FOOTER - MYSTIC GLOWING STYLE
   ============================================= */
.mystic-footer {
  width: 100%;
  background: linear-gradient(135deg, #000 0%, #111 100%);
  padding: 2rem 0;
  border-top: 3px solid #00ffff;
  box-shadow: 0 -2px 10px rgba(0,255,255,0.5);
}

.mystic-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mystic-footer .footer-column {
  flex: 1 1 200px;
  margin: 1rem;
}

.mystic-footer h4 {
  font-size: 1.5rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 1rem;
  animation: glowFooter 2s infinite alternate;
  cursor: pointer;
}

@keyframes glowFooter {
  from { text-shadow: 0 0 5px #00ffff; }
  to { text-shadow: 0 0 20px #00ffff; }
}

.mystic-footer ul {
  list-style: none;
  padding: 0;
}

.mystic-footer ul li {
  margin-bottom: 0.5rem;
}

.mystic-footer ul li a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.mystic-footer ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.mystic-footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 1rem;
}
