/* ==========================================================================
   C-Super Sinema - Under Construction (Light Theme)
   Futuristic Cybernetic Cinema & Energetic Orange Aesthetics
   ========================================================================== */

:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);

  --orange-100: #fff7ed;
  --orange-200: #ffedd5;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --tech-glow: rgba(249, 115, 22, 0.22);
  --orange-gradient: linear-gradient(135deg, #ff851b 0%, #ff5500 50%, #d64700 100%);
  --orange-border: linear-gradient(135deg, rgba(249, 115, 22, 0.6) 0%, rgba(234, 88, 12, 0.2) 50%, rgba(249, 115, 22, 0.5) 100%);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --font-tech: 'Orbitron', 'Plus Jakarta Sans', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-full: 9999px;

  --shadow-orange: 0 10px 30px -8px rgba(249, 115, 22, 0.35);
  --shadow-orange-sm: 0 4px 18px rgba(249, 115, 22, 0.2);
  --shadow-card: 0 20px 40px -15px rgba(15, 23, 42, 0.08);

  --glow-beam: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Cyber Atmosphere & Light Tech Grid */
.ambient-lighting {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-lighting::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1100px;
  height: 90vh;
  background: var(--glow-beam);
  filter: blur(60px);
  animation: beamPulse 7s ease-in-out infinite alternate;
}

/* Crisp Light Cyber Tech Grid Pattern */
.ambient-lighting::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(249, 115, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

#sparkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Futuristic Tech Strips on Top and Bottom (Light Theme) */
.tech-strip-top,
.tech-strip-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 10;
  background: #f1f5f9;
  background-image: repeating-linear-gradient(
    90deg,
    #f1f5f9,
    #f1f5f9 16px,
    rgba(249, 115, 22, 0.5) 16px,
    rgba(249, 115, 22, 0.5) 22px
  );
  box-shadow: 0 0 10px rgba(15, 23, 42, 0.08);
  opacity: 0.85;
}

.tech-strip-top {
  top: 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
}

.tech-strip-bottom {
  bottom: 0;
  border-top: 1px solid rgba(249, 115, 22, 0.35);
}

/* Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  width: 100%;
  min-height: 100vh;
}

/* Navigation Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 20px;
}

.brand-network {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(249, 115, 22, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.network-bullet {
  color: var(--orange-500);
  font-size: 0.75rem;
  animation: pulseDot 2s infinite ease-in-out;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-700);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.12);
}

.link-btn:hover {
  color: #ffffff;
  background: var(--orange-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

/* Main Hero Content (Centered vertically) */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
}

/* Bouncing Cyber Logo & Status Underneath */
.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-container {
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
  perspective: 1000px;
  user-select: none;
}

.logo-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--tech-glow) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowRing 5s infinite alternate ease-in-out;
}

.logo-img {
  width: 460px;
  height: auto;
  max-width: 88vw;
  filter: drop-shadow(0 16px 28px rgba(249, 115, 22, 0.2)) drop-shadow(0 4px 12px rgba(15, 23, 42, 0.08));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  animation: floatLogo 4.2s ease-in-out infinite;
}

.logo-container:hover .logo-img {
  transform: scale(1.03) rotateY(3deg);
  filter: drop-shadow(0 22px 35px rgba(249, 115, 22, 0.32)) drop-shadow(0 6px 16px rgba(15, 23, 42, 0.12));
}

/* Text directly under the bouncing logo (Light Theme) */
.under-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(249, 115, 22, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--orange-700);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.16), 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.under-logo-badge:hover {
  border-color: rgba(234, 88, 12, 0.7);
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25), 0 4px 12px rgba(15, 23, 42, 0.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange-500);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--orange-500);
  animation: pulseDot 1.8s infinite ease-in-out;
}

/* Footer & Socials */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-mini-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--orange-600);
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.social-icon-btn:hover {
  background: var(--orange-gradient);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Keyframe Animations */
@keyframes beamPulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes glowRing {
  0% { transform: translate(-50%, -50%) scale(0.88); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.75; }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

/* ==========================================================================
   Mobile View & Responsiveness Optimizations
   ========================================================================== */
@media (max-width: 768px) {
  .page-wrapper {
    padding: 24px 16px 20px;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 16px;
    gap: 12px;
  }

  .brand-network {
    font-size: 0.76rem;
    padding: 5px 12px;
    letter-spacing: 0.05em;
  }

  .link-btn {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  .logo-img {
    width: 360px;
    max-width: 90vw;
  }

  .logo-glow-ring {
    width: 310px;
    height: 190px;
  }

  .under-logo-badge {
    font-size: 0.8rem;
    padding: 7px 18px;
    margin-top: 6px;
    letter-spacing: 0.05em;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .social-links {
    gap: 12px;
  }

  .social-icon-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 18px 12px 16px;
  }

  .logo-img {
    width: 300px;
    max-width: 92vw;
  }

  .under-logo-badge {
    font-size: 0.74rem;
    padding: 5px 14px;
    gap: 7px;
  }

  .status-dot {
    width: 7px;
    height: 7px;
  }
}
