/* =============================================================================
   FUNNY BADGES: COUNTDOWN - INFRARED NOIR THEME
   Dark sci-fi police atmosphere with glowing effects
   ============================================================================= */

/* CSS Variables - Infrared Noir Palette */
:root {
  --color-primary: #0D0D0D;      /* Black/Charcoal */
  --color-secondary: #8A1C1C;    /* Dark Red/Infra */
  --color-accent-red: #FF003C;   /* Neon Red */
  --color-accent-purple: #8F00FF; /* Neon Purple */
  --color-accent-blue: #00E5FF;  /* Neon Blue */
  --color-light: #E0E0E0;        /* Light Gray */
  
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-glow: linear-gradient(45deg, var(--color-accent-red), var(--color-accent-purple), var(--color-accent-blue));
  
  --shadow-glow: 0 0 20px rgba(255, 0, 60, 0.5);
  --shadow-glow-strong: 0 0 30px rgba(255, 0, 60, 0.8);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.8);
  
  --font-primary: 'Russo One', monospace;
  --font-secondary: 'Exo 2', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.15s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background: var(--color-primary);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes glow-pulse {
  0%, 100% { 
    text-shadow: 0 0 1px currentColor, 0 0 5px currentColor, 0 0 5px currentColor;
    filter: brightness(1);
  }
  50% { 
    text-shadow: 0 0 5px currentColor, 0 0 5px currentColor, 0 0 5px currentColor;
    filter: brightness(1.2);
  }
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stars {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-2000px); }
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

/* Utility Classes */
.glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

.pulse {
  animation: glow-pulse 1.5s ease-in-out infinite;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.fade-in {
  animation: slideInUp 0.8s ease-out;
}

/* Background Effects */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="20" cy="20" r="1" fill="%23FF003C" opacity="0.8"/><circle cx="80" cy="50" r="0.5" fill="%2300E5FF" opacity="0.6"/><circle cx="150" cy="30" r="1" fill="%238F00FF" opacity="0.7"/><circle cx="40" cy="80" r="0.5" fill="%23E0E0E0" opacity="0.5"/><circle cx="120" cy="90" r="1" fill="%23FF003C" opacity="0.6"/><circle cx="180" cy="70" r="0.5" fill="%2300E5FF" opacity="0.8"/><circle cx="60" cy="140" r="1" fill="%238F00FF" opacity="0.5"/><circle cx="30" cy="170" r="0.5" fill="%23E0E0E0" opacity="0.7"/><circle cx="140" cy="160" r="1" fill="%23FF003C" opacity="0.6"/><circle cx="100" cy="180" r="0.5" fill="%2300E5FF" opacity="0.5"/></svg>') repeat;
  animation: stars 100s linear infinite;
  pointer-events: none;
  z-index: -2;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(255, 0, 60, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 60, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Header/Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-secondary);
  z-index: 1000;
  transition: var(--transition);
}

.navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-light);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-icon {
  color: var(--color-accent-red);
  margin-right: 0.5rem;
  font-size: 2rem;
}

.brand-text {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent-red);
  text-shadow: 0 0 10px var(--color-accent-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-glow);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--color-accent-red);
  margin: 3px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-glow);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-accent-red);
}

.btn-secondary:hover {
  background: var(--color-accent-red);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.title-line1 {
  display: block;
  color: var(--color-light);
}

.title-line2 {
  display: block;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 5rem;
}

.title-line3 {
  display: block;
  color: var(--color-accent-red);
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--color-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-container {
  width: 300px;
  height: 300px;
  border: 3px solid var(--color-accent-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 0, 60, 0.1) 0%, transparent 70%);
  position: relative;
}

.badge-icon {
  font-size: 4rem;
  color: var(--color-accent-red);
  margin-bottom: 1rem;
}

.badge-text {
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
}

.badge-text span {
  display: block;
  font-size: 1rem;
  color: var(--color-light);
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title i {
  color: var(--color-accent-red);
}

/* About Section */
.about {
  background: rgba(138, 28, 28, 0.1);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--color-accent-blue);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent-red);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-light);
  opacity: 0.8;
}

/* Characters Section */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.character-file {
  background: linear-gradient(145deg, rgba(138, 28, 28, 0.2) 0%, rgba(13, 13, 13, 0.8) 100%);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.character-file::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-glow);
}

.character-file:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-accent-red);
}

.file-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--color-accent-red);
}

.character-image {
  text-align: center;
  margin-bottom: 1rem;
}

.character-icon {
  font-size: 3rem;
  color: var(--color-accent-blue);
  background: rgba(0, 229, 255, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.character-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.character-rank {
  color: var(--color-accent-purple);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.character-description {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.character-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat-badge {
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid var(--color-accent-red);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--color-light);
}

/* Episodes Section */
.episodes {
  background: rgba(138, 28, 28, 0.05);
}

.episodes-list {
  max-width: 800px;
  margin: 0 auto;
}

.episode-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(143, 0, 255, 0.1) 0%, rgba(13, 13, 13, 0.8) 100%);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  transition: var(--transition);
}

.episode-item:hover {
  border-color: var(--color-accent-purple);
  transform: translateX(10px);
}

.episode-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent-purple);
  min-width: 80px;
}

.episode-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-light);
}

.episode-description {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.episode-status {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-light);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Countdown Section */
.countdown-container {
  position: relative;
  background: var(--gradient-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.countdown-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.countdown-content {
  text-align: center;
}

.countdown-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.time-unit {
  text-align: center;
}

.time-value {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-accent-red);
  display: block;
  background: rgba(255, 0, 60, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid var(--color-accent-red);
  min-width: 120px;
}

.time-label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-light);
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.time-separator {
  font-family: var(--font-primary);
  font-size: 4rem;
  color: var(--color-accent-red);
  display: flex;
  align-items: center;
}

.countdown-message {
  font-size: 1.2rem;
  color: var(--color-light);
  opacity: 0.9;
}

.countdown-finished {
  text-align: center;
}

.finished-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--color-accent-red);
  margin-bottom: 1rem;
}

.finished-text {
  font-size: 1.5rem;
  color: var(--color-light);
}

/* Media Section */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.media-item {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(13, 13, 13, 0.8) 100%);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.media-item:hover {
  border-color: var(--color-accent-blue);
  transform: scale(1.05);
}

.media-placeholder i {
  font-size: 3rem;
  color: var(--color-accent-blue);
  margin-bottom: 1rem;
}

.media-placeholder p {
  font-family: var(--font-primary);
  color: var(--color-light);
}

/* News Section */
.news {
  background: rgba(138, 28, 28, 0.05);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-item {
  background: linear-gradient(135deg, rgba(138, 28, 28, 0.2) 0%, rgba(13, 13, 13, 0.8) 100%);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition);
}

.news-item:hover {
  border-color: var(--color-accent-red);
  transform: translateY(-5px);
}

.news-date {
  color: var(--color-accent-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.news-title a {
  color: var(--color-light);
  text-decoration: none;
  transition: var(--transition);
}

.news-title a:hover {
  color: var(--color-accent-red);
}

.news-excerpt {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-link {
  color: var(--color-accent-red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--color-accent-blue);
}

/* Community Section */
.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.social-section h3,
.newsletter-section h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-card {
  background: linear-gradient(135deg, rgba(143, 0, 255, 0.2) 0%, rgba(13, 13, 13, 0.8) 100%);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-light);
  text-align: center;
  transition: var(--transition);
  display: block;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.social-card.youtube:hover { border-color: #FF0000; }
.social-card.instagram:hover { border-color: #E4405F; }
.social-card.tiktok:hover { border-color: #000000; }
.social-card.discord:hover { border-color: #7289DA; }

.social-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.social-card span {
  font-family: var(--font-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.social-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.newsletter-section p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 400px;
}

.form-group {
  display: flex;
  gap: 0.5rem;
}

.email-input {
  flex: 1;
  padding: 12px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
  color: var(--color-light);
  font-family: var(--font-secondary);
}

.email-input:focus {
  outline: none;
  border-color: var(--color-accent-red);
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-badge {
  display: flex;
  justify-content: center;
}

.badge-shape {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border: 3px solid var(--color-accent-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.badge-shape:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.badge-shape .badge-icon {
  font-size: 2.5rem;
  color: var(--color-accent-red);
  margin-bottom: 0.5rem;
}

.badge-content h4 {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-light);
  margin-bottom: 0.25rem;
}

.badge-content p {
  font-size: 0.8rem;
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

.badge-number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: var(--color-accent-red);
  opacity: 0.7;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--color-secondary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-accent-red);
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: 1rem;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-text a {
  color: var(--color-accent-red);
  text-decoration: none;
}

.footer-text a:hover {
  color: var(--color-accent-blue);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--color-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-red);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 0, 60, 0.1);
  border: 1px solid var(--color-accent-red);
  border-radius: 50%;
  color: var(--color-accent-red);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-accent-red);
  color: var(--color-primary);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-secondary);
  color: var(--color-light);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-list {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .title-line2 {
    font-size: 3rem;
  }
  
  .countdown-timer {
    gap: 1rem;
  }
  
  .time-value {
    font-size: 2.5rem;
    min-width: 80px;
    padding: 0.5rem;
  }
  
  .time-separator {
    font-size: 2.5rem;
  }
  
  .community-content {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .episode-item {
    flex-direction: column;
    text-align: center;
  }
  
  .episode-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .title-line2 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .badge-container {
    width: 200px;
    height: 200px;
  }
  
  .badge-icon {
    font-size: 2.5rem;
  }
}

/* =============================================================================
   ADDITIONAL PAGES - Episodes, Character Concepts, Gallery, Trailer
   ============================================================================= */

/* Episodes Page */
.episodes-page .hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0D0D0D, #8A1C1C);
}

.episodes-page .subtitle {
  font-size: 1.2rem;
  color: #00E5FF;
  margin-top: 1rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.episode-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid #8A1C1C;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-5px);
  border-color: #FF003C;
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.episode-number {
  font-size: 2rem;
  font-weight: bold;
  color: #FF003C;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.episode-content h3 {
  color: #E0E0E0;
  margin-bottom: 0.5rem;
}

.episode-content h3 a {
  color: inherit;
  text-decoration: none;
}

.episode-content h3 a:hover {
  color: #00E5FF;
}

.episode-description {
  color: #B0B0B0;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.episode-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.duration {
  color: #8F00FF;
  font-size: 0.9rem;
}

.status {
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}

.status.coming-soon {
  background: #FF003C;
  color: white;
}

.status.in-production {
  background: #8F00FF;
  color: white;
}

.status.available {
  background: #00E5FF;
  color: #0D0D0D;
}

/* Episode Single Page */
.episode-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.episode-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #8A1C1C;
}

.episode-number-large {
  font-size: 3rem;
  color: #FF003C;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
}

.trailer-embed {
  margin: 2rem 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.trailer-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.synopsis h3 {
  color: #00E5FF;
  margin-bottom: 1rem;
}

.episode-characters {
  margin-top: 2rem;
}

.episode-characters h3 {
  color: #8F00FF;
  margin-bottom: 1rem;
}

.character-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.character-tag {
  background: #8A1C1C;
  color: #E0E0E0;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

/* Character Concepts Page */
.concepts-page .hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0D0D0D, #8F00FF);
}

.concepts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid #8F00FF;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-5px);
  border-color: #FF003C;
  box-shadow: 0 10px 30px rgba(143, 0, 255, 0.3);
}

.concept-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-content {
  padding: 1.5rem;
}

.concept-content h3 {
  color: #E0E0E0;
  margin-bottom: 0.5rem;
}

.concept-content h3 a {
  color: inherit;
  text-decoration: none;
}

.concept-content h3 a:hover {
  color: #00E5FF;
}

.concept-type {
  color: #8F00FF;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.concept-description {
  color: #B0B0B0;
  line-height: 1.4;
}

/* Concept Single Page */
.concept-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.concept-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #8F00FF;
}

.concept-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.concept-image-large img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #8F00FF;
}

.concept-credits {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #8A1C1C;
}

.concept-credits h3 {
  color: #00E5FF;
  margin-bottom: 0.5rem;
}

/* Gallery Page */
.gallery-page .hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0D0D0D, #00E5FF);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  margin-bottom: 1rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid #8A1C1C;
  color: #E0E0E0;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #FF003C;
  border-color: #FF003C;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
}

.responsive-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  color: #E0E0E0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gallery-info p {
  color: #00E5FF;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.view-details {
  color: #FF003C;
  text-decoration: none;
  padding: 0.3rem 1rem;
  border: 1px solid #FF003C;
  border-radius: 15px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.view-details:hover {
  background: #FF003C;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from { transform: scale(0) }
  to { transform: scale(1) }
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #E0E0E0;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #FF003C;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #E0E0E0;
  padding: 10px 0;
  height: 150px;
}

/* Gallery Single Page */
.gallery-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #00E5FF;
}

.gallery-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.category {
  color: #FF003C;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.artist {
  color: #8F00FF;
  font-style: italic;
}

.gallery-main-image {
  text-align: center;
  margin: 2rem 0;
}

.gallery-main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #00E5FF;
}

.gallery-details {
  margin: 1.5rem 0;
}

.gallery-details h3 {
  color: #00E5FF;
  margin-bottom: 0.5rem;
}

/* Trailer Page */
.trailer-page .hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0D0D0D, #FF003C);
}

.main-trailer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 2rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #FF003C;
}

.trailer-info {
  text-align: center;
}

.trailer-info h2 {
  color: #E0E0E0;
  margin-bottom: 1rem;
}

.trailer-info p {
  color: #B0B0B0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trailer-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trailer-stats span {
  color: #00E5FF;
  font-size: 0.9rem;
}

.additional-videos {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2rem;
}

.additional-videos h2 {
  text-align: center;
  color: #E0E0E0;
  margin-bottom: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-item {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid #8A1C1C;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  border-color: #FF003C;
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.video-item h3 {
  color: #E0E0E0;
  margin-bottom: 0.5rem;
}

.video-item p {
  color: #B0B0B0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .episodes-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .episode-card {
    flex-direction: column;
    text-align: center;
  }
  
  .concepts-grid,
  .video-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .responsive-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 0 1rem;
  }
  
  .gallery-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .trailer-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-filters {
    padding: 1rem;
  }
  
  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .glow,
  .pulse {
    animation: none;
  }
}