/* CSS Variables & Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #0A0D14;
  --bg-card: #121722;
  --bg-input: #1B2130;
  --accent: #E2A228;
  --accent-hover: #F5B83F;
  --accent-rgb: 226, 162, 40;
  --text-light: #FAF6F0;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;
  --glass-bg: rgba(18, 23, 34, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 2px solid var(--bg-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 13, 20, 0.95);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.logo span {
  color: var(--text-light);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(18, 23, 34, 0.5) 0%, rgba(10, 13, 20, 1) 100%);
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  opacity: 0.65; /* Lebih terang/kurang gelap dari sebelumnya (0.35) */
  z-index: -1;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(10, 13, 20, 0.25) 50%, rgba(10, 13, 20, 0.5) 100%);
  z-index: -1;
}

.synopsis-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  z-index: -1;
  will-change: transform;
}

.synopsis-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 13, 20, 0.45) 50%, var(--bg-dark) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 850px;
  z-index: 10;
  padding: 0 1.5rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-premis {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.7s;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.9s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-dark);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 20px rgba(226, 162, 40, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 30px rgba(226, 162, 40, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interactive Synopsis (Timeline) */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--bg-card);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 2rem 3rem;
  position: relative;
  background-color: transparent;
  width: 50%;
}

.timeline-item::after {
  content: '🌻';
  font-size: 1.2rem;
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  background-color: var(--bg-dark);
  border: 2px solid var(--accent);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -20px;
}

.timeline-content {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.timeline-act {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Video Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Cast Grid Section */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
}

.cast-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  height: 380px;
}

.cast-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.cast-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cast-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 13, 20, 0.95) 0%, rgba(10, 13, 20, 0.6) 60%, transparent 100%);
  z-index: 5;
  transition: var(--transition);
}

.cast-char {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.cast-actor {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  opacity: 0.8;
  transform: translateY(10px);
  transition: var(--transition);
}

.cast-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

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

.cast-card:hover .cast-char,
.cast-card:hover .cast-actor {
  transform: translateY(0);
}

.cast-card:hover .cast-bio {
  opacity: 1;
  max-height: 80px;
}

/* Gallery Section (Asymmetric Grid) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 20, 0.4);
  opacity: 0;
  transition: var(--transition);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(10, 13, 20, 0.9));
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

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

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

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Grid Spanning for Asymmetry */
.gallery-item:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5n+4) {
  grid-column: span 2;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 8, 12, 0.98);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  max-width: 600px;
}

/* Articles Section */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.article-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.article-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-card:hover .article-thumb img {
  transform: scale(1.05);
}

.article-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.read-more:hover {
  color: var(--accent-hover);
}

/* Article Detail Page */
.article-header {
  padding: 10rem 0 4rem 0;
  text-align: center;
}

.article-header-meta {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.article-main-title {
  font-size: 3.5rem;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.article-hero-img {
  width: 100%;
  max-width: 1000px;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin: 0 auto 4rem auto;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(250, 246, 240, 0.85);
}

.article-content p {
  margin-bottom: 2rem;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.share-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  border-color: var(--accent);
  background-color: rgba(226, 162, 40, 0.05);
  color: var(--accent);
}

/* Footer */
footer {
  background-color: #06080C;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info .footer-logo {
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Admin Portal CSS */
.admin-body {
  background-color: #080B11;
  min-height: 100vh;
}

.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--glass-border);
}

.admin-container {
  display: flex;
  padding: 3rem;
  gap: 3rem;
}

.admin-sidebar {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-menu-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: left;
}

.admin-menu-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-light);
}

.admin-menu-btn.active {
  background: rgba(226, 162, 40, 0.1);
  color: var(--accent);
  border-color: rgba(226, 162, 40, 0.2);
}

.admin-content {
  flex-grow: 1;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  min-height: 500px;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(226, 162, 40, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Admin Dashboard Table */
.admin-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.admin-table th, .admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.admin-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-weight: 600;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-danger {
  background-color: #EF4444;
  color: #fff;
  border: 1px solid #EF4444;
}

.btn-danger:hover {
  background-color: #DC2626;
  border-color: #DC2626;
}

.admin-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

/* Login Card */
.login-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(circle at center, #111827 0%, #0A0D14 100%);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.login-title {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Modal Popup Form (General Add/Edit Modal) */
.admin-modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.admin-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow-y: auto;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-modal-title {
  font-size: 1.8rem;
}

/* Notifications */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 1rem 2rem;
  background-color: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  box-shadow: var(--shadow);
  z-index: 4000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.success {
  border-left-color: #10B981;
}

.notification.error {
  border-left-color: #EF4444;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .article-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .article-sidebar {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 13, 20, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-premis {
    font-size: 1rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 2rem;
  }
  
  .timeline-item::after {
    left: 11px;
    right: auto;
  }
  
  .right {
    left: 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(5n+1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-item:nth-child(5n+4) {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .admin-container {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .admin-sidebar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* ========================================== */
/* HOME PAGE NEW SECTIONS STYLING             */
/* ========================================== */

/* Silhouette Cast Section */
.home-cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.cast-silhouette-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: var(--transition);
  position: relative;
}

.cast-silhouette-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.silhouette-img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  background: radial-gradient(circle, rgba(226, 162, 40, 0.25) 0%, rgba(18, 23, 34, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 162, 40, 0.3);
  color: var(--accent);
  transition: var(--transition);
}

.cast-silhouette-card:hover .silhouette-img-container {
  background: radial-gradient(circle, rgba(226, 162, 40, 0.4) 0%, rgba(18, 23, 34, 0.9) 100%);
  transform: scale(1.05);
}

.silhouette-char {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.silhouette-actor {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Glassmorphism Gallery Section */
.home-gallery-grid-glass {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-glass-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  cursor: pointer;
}

.gallery-glass-box:hover {
  background: rgba(226, 162, 40, 0.04);
  border-color: rgba(226, 162, 40, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-glass-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.gallery-glass-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.gallery-glass-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sponsor Section */
.home-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.sponsor-box {
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.sponsor-box:hover {
  border-style: solid;
  border-color: var(--accent);
  background: rgba(226, 162, 40, 0.02);
  color: var(--accent);
}

/* Media queries for home sections */
@media (max-width: 992px) {
  .home-cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-gallery-grid-glass {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .home-cast-grid {
    grid-template-columns: 1fr;
  }
  .home-gallery-grid-glass {
    grid-template-columns: 1fr;
  }
  .home-sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

