:root {
  --bg: #05070c;
  --bg2: #0c1422;
  --panel: rgba(10, 18, 32, 0.76);
  --panel-strong: rgba(6, 13, 24, 0.9);
  --line: rgba(141, 190, 255, 0.28);
  --text: #dce8ff;
  --muted: #9cb2d6;
  --blue: #5eb6ff;
  --blue-strong: #2f8fff;
  --blue-soft: rgba(94, 182, 255, 0.18);
  --shadow: 0 0 30px rgba(70, 150, 255, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1240px;
  --nav-h: 84px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(60, 120, 220, 0.12), transparent 35%),
    linear-gradient(180deg, #03050a 0%, #07101d 45%, #04070d 100%);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2px, var(--max)); margin-inline: auto; }
.page-glow {
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 149, 255, 0.09), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(74, 149, 255, 0.07), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(74, 149, 255, 0.05), transparent 30%);
  pointer-events: none; z-index: 0;
}
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.65; }
.topbar, main, .site-footer { position: relative; z-index: 1; }
.topbar {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.88), rgba(8, 14, 24, 0.62));
  border-bottom: 1px solid var(--line); transition: 0.35s ease;
}
.topbar.scrolled { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.nav-wrap {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-logo {
  height: 60px; width: auto;
  filter: drop-shadow(0 0 10px rgba(94, 182, 255, 0.35));
}
.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-family: "Cinzel", serif; font-size: 0.95rem; letter-spacing: 0.06em;
  color: #d9e5fa; position: relative; transition: color 0.25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transition: width 0.3s ease; box-shadow: 0 0 12px var(--blue);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { width: 28px; height: 2px; background: #dce8ff; display: block; }
.hero {
  min-height: 100vh; display: grid; place-items: center; position: relative;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(3, 7, 14, 0.35), rgba(3, 7, 14, 0.7)),
    url("../images/bg-main.png") center/cover no-repeat;
  transform: scale(1.05); filter: saturate(1.05) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(102, 176, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.15), rgba(3, 5, 10, 0.8));
}
.hero-content { text-align: center; position: relative; z-index: 2; padding: 60px 0 80px; }
.hero-logo {
  width: min(760px, 88vw); margin-inline: auto;
  filter: drop-shadow(0 0 25px rgba(94, 182, 255, 0.4));
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero-tag {
  margin: 12px 0 28px; font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.8vw, 1.7rem); letter-spacing: 0.12em; color: #d7e3f8;
}
.hero-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.divider {
  width: min(760px, 95%); margin: 36px auto 0; opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(94, 182, 255, 0.2));
}
.hero-divider { display: block; }
.section-frame, .cards-section, .site-footer { position: relative; padding: 76px 0; }
.section-frame::before, .cards-section::before, .site-footer::before {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(130, 170, 230, 0.12); border-radius: 28px; pointer-events: none;
}
.section-title {
  margin: 0 0 28px; font-family: "Cinzel", serif; font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 0 20px rgba(94, 182, 255, 0.15);
}
.featured-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.84), rgba(5, 9, 18, 0.92));
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden;
}
.featured-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.featured-copy { padding: 36px; }
.kicker {
  display: inline-block; margin-bottom: 10px; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
}
.featured-copy h3, .spotlight-content h3, .card-content h3, .event-info h3, .mini-card h3, .site-footer h3 {
  margin: 0 0 14px; font-family: "Cinzel", serif;
}
.featured-copy p, .mini-card p, .spotlight-content p, .event-info p, .site-footer p {
  color: var(--muted); line-height: 1.6;
}
.section-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.card-grid.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.release-card {
  position: relative; min-height: 360px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #08101d; box-shadow: var(--shadow); transform-style: preserve-3d;
  transition: transform 0.2s ease;
}
.release-card img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 4, 9, 0.9) 100%),
    radial-gradient(circle at top, rgba(94, 182, 255, 0.14), transparent 45%);
}
.card-content { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; }
.card-content p { margin: 0; color: #b7caea; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stack-list { display: grid; gap: 18px; }
.mini-card, .spotlight-box, .event-row, .media-box {
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.88), rgba(6, 10, 20, 0.95));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.mini-card { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 14px; align-items: center; }
.mini-card img { width: 100%; height: 110px; object-fit: cover; border-radius: 10px; }
.spotlight-box { overflow: hidden; }
.spotlight-box img { width: 100%; height: 320px; object-fit: cover; }
.spotlight-content { padding: 24px; }
.event-list { display: grid; gap: 18px; }
.event-row {
  display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 22px; padding: 18px 20px;
}
.event-date { text-align: center; border-right: 1px solid rgba(130, 170, 230, 0.18); padding-right: 14px; }
.event-date .day { display: block; font-size: 2.3rem; font-weight: 700; color: #f4f8ff; }
.event-date .month { letter-spacing: 0.18em; color: var(--blue); }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.media-box {
  min-height: 200px; display: grid; place-items: center; text-align: center;
  font-family: "Cinzel", serif; font-size: 1.2rem; position: relative; overflow: hidden;
}
.media-box::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at center, rgba(94, 182, 255, 0.12), transparent 45%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}
.media-box span { position: relative; z-index: 1; }
.metal-btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 170px; padding: 14px 26px;
  border-radius: 12px; border: 1px solid rgba(131, 187, 255, 0.5);
  background: linear-gradient(180deg, rgba(23, 44, 78, 0.95), rgba(7, 15, 28, 0.95));
  color: #eef5ff; font-family: "Cinzel", serif; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(115, 185, 255, 0.14), 0 0 18px rgba(68, 145, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.metal-btn:hover {
  transform: translateY(-3px); border-color: rgba(144, 202, 255, 0.8);
  box-shadow: inset 0 0 12px rgba(115, 185, 255, 0.18), 0 0 25px rgba(68, 145, 255, 0.28);
}
.metal-btn.alt { background: linear-gradient(180deg, rgba(18, 31, 55, 0.9), rgba(5, 10, 20, 0.96)); }
.metal-btn.small { min-width: 140px; padding: 11px 18px; font-size: 0.9rem; }
.site-footer {
  padding-bottom: 32px; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.65), rgba(4, 7, 14, 0.95));
}
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(10, 17, 30, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.socials a:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 18px rgba(94, 182, 255, 0.25); }
.socials img { width: 22px; height: 22px; }
.footer-copy { text-align: center; margin-top: 26px; color: #9fb1cf; letter-spacing: 0.08em; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.glow-hover { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.glow-hover:hover {
  transform: translateY(-4px); border-color: rgba(145, 200, 255, 0.45); box-shadow: 0 0 30px rgba(94, 182, 255, 0.22);
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(94, 182, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(94, 182, 255, 0.55)); }
}
@media (max-width: 1100px) {
  .card-grid.four, .media-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid, .split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .menu-toggle { display: flex; }
  .nav {
    position: absolute; top: var(--nav-h); right: 16px; left: 16px; flex-direction: column; align-items: flex-start;
    gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(6, 12, 22, 0.96);
    box-shadow: var(--shadow); display: none;
  }
  .nav.open { display: flex; }
  .mini-card, .event-row { grid-template-columns: 1fr; }
  .event-date { border-right: 0; border-bottom: 1px solid rgba(130, 170, 230, 0.18); padding-right: 0; padding-bottom: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .hero { min-height: 90vh; }
  .hero-actions { flex-direction: column; align-items: center; }
  .card-grid.four, .media-grid { grid-template-columns: 1fr; }
  .section-frame, .cards-section, .site-footer { padding: 58px 0; }
  .featured-copy { padding: 22px; }
}