@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   RESET & GLOBAL VARIABLES
   ========================================================================== */
:root {
  --color-bg-dark: #0a0b0a;
  --color-bg-card: #1b1e21;
  --color-bg-card-hover: #141619;
  --color-bg-prefooter: #1b1b1b;
  --color-accent-red: #f20f2b;
  --color-accent-gold: #d4b11c;
  --color-accent-gold-dark: #aa932f;
  --color-nav-orange: #d4b11c;
  --color-text-white: #ffffff;
  --color-text-muted: #7f817f;
  --color-text-dim: #999a99;
  
  --font-heading: 'Oswald', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Lora', Georgia, serif;
}

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

html {
  font-size: 16px;
  background-color: #0a0b0a;
}

body {
  background-color: #0a0b0a;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #f6cd1d;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
}

.center {
  text-align: center;
}

/* ==========================================================================
   BUTTONS & ACCENTS
   ========================================================================== */
.b {
  display: inline-block;
  border: 2px solid var(--color-accent-red);
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.8rem 2.6rem;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.25s ease;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  text-shadow: none;
  backdrop-filter: blur(4px);
}

.b:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent-gold);
  color: var(--color-text-white);
  box-shadow: 0 0 18px rgba(212, 177, 28, 0.5);
}

.b-small {
  font-size: 1rem;
  padding: 0.55rem 1.8rem;
}

.b-gold {
  border-color: var(--color-accent-gold);
  background-color: var(--color-accent-gold);
  color: #101820;
}

.b-gold:hover {
  background-color: #f6cd1d;
  border-color: #f6cd1d;
  color: #000;
}

/* Red underline decorative accents */
.h-deco-center, .h-deco-left, .h-deco-around {
  position: relative;
}

.h-deco-center::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-accent-red);
  margin: 0.8rem auto 0;
}

.h-deco-left::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent-red);
  margin: 0.75rem 0 0;
}

.h-deco-around {
  text-align: center;
  overflow: hidden;
}

.h-deco-around span {
  display: inline-block;
  position: relative;
}

.h-deco-around span::before,
.h-deco-around span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 500px;
  height: 2px;
  background-color: var(--color-accent-red);
}

.h-deco-around span::before {
  right: 100%;
  margin-right: 1.5rem;
}

.h-deco-around span::after {
  left: 100%;
  margin-left: 1.5rem;
}

/* ==========================================================================
   SEARCH BAR OVERLAY (SPACIOUS HEIGHT & SEAMLESS WITH LOGO OVERLAP)
   ========================================================================== */
.form-search {
  background: linear-gradient(to bottom, #d4b11c 0%, #aa932f 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px; /* GENEROUS HEIGHT MATCHING ORIGINAL */
  z-index: 1500; /* BELOW HEADER SO LOGO SITS ON TOP */
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  padding: 0;
}

body.search-active .form-search {
  transform: translateY(0);
}

/* When search is active, header shifts down to 75px so zero gap exists */
body.search-active #header {
  top: 75px;
}

body.search-active #header.scrolled {
  top: 75px;
}

.form-search .search-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 100%;
}

.form-search .search-icon-svg {
  width: 38px;
  height: 38px;
  stroke: #101820;
  flex-shrink: 0;
}

.form-search input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #101820;
  outline: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-search input[type="text"]::placeholder {
  color: rgba(16, 24, 32, 0.75);
}

.form-search .search-close-btn {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: #101820;
  cursor: pointer;
  line-height: 1;
  padding: 0 8px;
  font-weight: bold;
}

/* ==========================================================================
   1. FLOATING HEADER NAVIGATION (SYMMETRICAL, BALANCED, PROPER SCROLL POSITION)
   ========================================================================== */
#header {
  background-color: rgba(0, 0, 0, 0.88);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  position: fixed;
  top: 55px; /* FLOATING NGAMBANG DARI ATAS */
  left: 0;
  width: 100%;
  z-index: 2000; /* HIGHER THAN SEARCH OVERLAY */
  transition: top 0.3s ease, background-color 0.3s ease, height 0.3s ease;
  backdrop-filter: blur(6px);
  height: 54px;
}

#header.scrolled {
  top: 0; /* MENEMPEL KE ATAS SAAT SCROLL */
  background-color: #000000;
  height: 50px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  position: relative;
}

/* Nav Menu Lists - EQUAL WIDTH & BALANCED PADDING */
.nav-menu-left,
.nav-menu-right {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1 1 0; /* EXACT EQUAL HALF WIDTHS */
}

.nav-menu-left {
  justify-content: space-between;
  padding-right: 120px; /* Ample breathing room around center logo */
}

.nav-menu-right {
  justify-content: space-between;
  padding-left: 120px; /* Identical symmetrical room around center logo */
}

/* ORANGE / GOLD NAVIGATION LINKS */
.nav-link {
  color: var(--color-nav-orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(212, 177, 28, 0.6);
}

/* BRAND LOGO (100% TRANSPARENT PNG & VISIBLE OVER SEARCH AND NOT CUT OFF ON SCROLL) */
.l-brand,
.l-rush {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100; /* ALWAYS ON TOP, OVERLAPS ORANGE SEARCH BAR ELEGANTLY */
  transition: all 0.3s ease;
  width: 185px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.l-brand a,
.l-rush a {
  display: block;
  width: 100%;
  height: 100%;
}

.l-brand img,
.l-rush img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.95));
}

/* SCROLLED STATE: VERTICALLY CENTERED SO IT IS NEVER CUT OFF AT TOP SCREEN EDGE */
#header.scrolled .l-brand,
#header.scrolled .l-rush {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 125px;
  height: 44px;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(10, 12, 15, 0.98);
  border-top: 3px solid var(--color-accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  list-style: none;
  min-width: 190px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 110;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--color-nav-orange);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 20;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-accent-gold);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ==========================================================================
   HERO BANNER & CURTAIN EFFECT (TALLER HERO & PROMINENT TICKETS BUTTON)
   ========================================================================== */
.hero {
  position: relative;
}

.hero-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  z-index: 0;
  display: flex;
  align-items: center; /* CENTERED VERTICALLY IN HERO VIEWPORT */
  justify-content: center;
  background-image: url(/assets/images/hero-bg.jpg);
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  padding: 80px 20px 80px;
}

.hero-fixed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, #0a0b0a 100%);
  z-index: 1;
  pointer-events: none;
}

.block-hero {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.button-fifty-fix {
  display: inline-block;
  margin: 200px auto 0;
  position: relative;
  z-index: 5;
}

/* Space placeholder that allows scrolling past tall hero */
.after-fixed-hero-space {
  display: block;
  height: 650px;
}

/* The solid curtain container that scrolls OVER the hero */
.after-fixed-hero {
  position: relative;
  z-index: 10;
  background-color: #0a0b0a;
  box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   FEATURED POSTER & ANNOUNCEMENT SECTION
   ========================================================================== */
.main-texture {
  padding: 4rem 0 3rem;
  background-color: #0a0b0a;
}

.content-row {
  margin-bottom: 4rem;
}

.block-news-featured {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.featured-poster-frame {
  margin: 0 auto 3rem;
  max-width: 820px;
  border: 1px solid rgba(212, 177, 28, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  background-color: #071322;
  border-radius: 4px;
}

.featured-poster-frame img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.featured-poster-frame:hover img {
  transform: scale(1.02);
}

.block-news-featured time {
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.block-news-featured h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-accent-gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.block-news-featured p.large {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #d8dad8;
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-body);
}

/* ==========================================================================
   3-COLUMN NEWS GRID (USING LOCAL UNSPLASH DUMMY ASSETS)
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3.5rem;
}

.block-news {
  background-color: var(--color-bg-card);
  color: var(--color-text-white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.block-news:hover {
  background-color: var(--color-bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  border-color: rgba(212, 177, 28, 0.3);
}

.thumb-cover {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #0b0f14;
}

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

.block-news:hover .thumb-cover img {
  transform: scale(1.06);
}

.news-card-content {
  padding: 24px 22px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card-content::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid var(--color-bg-card);
  transition: border-bottom-color 0.3s ease;
}

.block-news:hover .news-card-content::before {
  border-bottom-color: var(--color-bg-card-hover);
}

.news-card-content time {
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.news-card-content h3 {
  font-size: 1.45rem;
  color: var(--color-accent-gold);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.news-card-content h3 a {
  color: var(--color-accent-gold);
}

.news-card-content h3 a:hover {
  color: #fff;
}

.news-card-content p {
  color: #b0b4b0;
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

/* ==========================================================================
   THE FREQUENCY TIDBITS SECTION
   ========================================================================== */
.main-prefooter {
  background-color: #1b1b1b;
  padding: 4.5rem 0 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-prefooter h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 3.5rem;
  color: var(--color-text-white);
}

.main-prefooter h2 small {
  display: block;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 0.4rem;
  letter-spacing: 0.15em;
}

.frequency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 3.5rem;
}

.block-news-small {
  text-align: center;
  padding: 0 15px;
}

.block-news-small time {
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.block-news-small h3 {
  font-size: 1.35rem;
  color: var(--color-accent-gold);
  line-height: 1.35;
}

.block-news-small h3 a {
  color: var(--color-accent-gold);
}

.block-news-small h3 a:hover {
  color: #fff;
}

/* ==========================================================================
   2. FOOTER SECTION (SPACIOUS & DIVIDED)
   ========================================================================== */
.footer {
  clear: both;
  position: relative;
  z-index: 100;
  background-color: #0a0b0a;
}

/* Golden Newsletter Banner */
.form-subscribe-bar {
  background: linear-gradient(to bottom, #d4b11c 0%, #aa932f 100%);
  padding: 40px 0 45px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 20;
}

.form-subscribe-bar .wrap {
  text-align: left;
}

.form-subscribe-bar h6 {
  color: #101820;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.b-newsletter-signup {
  display: inline-block;
  border: 2px solid #101820;
  color: #101820;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 12px 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.b-newsletter-signup:hover {
  background-color: #101820;
  color: var(--color-accent-gold);
}

/* Dark Bottom Footer Bar with Generous Spacing */
.footer-nav {
  background-color: #1b1b1b;
  min-height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 20;
}

.footer-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 52px;
  gap: 30px;
}

.footer-copyright-text {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  padding: 14px 0;
  flex-shrink: 0;
}

.footer-copyright-text span {
  color: var(--color-accent-gold);
}

.footer-right-cluster {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 52px;
  flex-wrap: nowrap;
}

/* Social icons & vertical borders with spacious padding */
.footer-right-cluster li {
  height: 52px;
  display: flex;
  align-items: center;
  border-left: 1px solid #474747;
}

.footer-right-cluster li:last-child {
  border-right: 1px solid #474747;
}

.footer-right-cluster a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  height: 100%;
  color: var(--color-accent-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.footer-right-cluster a:hover {
  background-color: var(--color-accent-gold);
  color: #101820;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-accent-gold);
  transition: fill 0.2s ease;
}

.footer-right-cluster a:hover .footer-social-icon {
  fill: #101820;
}

/* ==========================================================================
   SUBPAGES: COMMON ELEMENTS & FORM CONTROLS
   ========================================================================== */
.title-subtle {
  margin-bottom: 2.5rem;
}

.title-subtle h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-text-white);
  margin-bottom: 0.75rem;
}

.subtitle-text {
  font-size: 1.15rem;
  color: var(--color-text-dim);
  font-family: var(--font-body);
}

.styled-select {
  width: 100%;
  background-color: var(--color-bg-card);
  color: var(--color-accent-gold);
  border: 1px solid rgba(212, 177, 28, 0.35);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.styled-select:focus,
.styled-select:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 12px rgba(212, 177, 28, 0.25);
}

.styled-select option {
  background-color: var(--color-bg-card);
  color: var(--color-accent-gold);
  padding: 8px;
}

/* ==========================================================================
   1. NEWS PAGE SPECIFIC STYLING
   ========================================================================== */
.news-hero-banner {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 177, 28, 0.25);
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 11, 10, 0.4) 0%, rgba(10, 11, 10, 0.95) 100%);
}

.main-news-section {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding-bottom: 5rem;
}

.news-layout-columns {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
}

.news-main-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block-news-large {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.block-news-large:hover {
  border-color: rgba(212, 177, 28, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(-4px);
}

.news-thumb-link {
  display: block;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: #0c0f13;
}

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.block-news-large:hover .news-thumb-img {
  transform: scale(1.04);
}

.news-article-meta {
  padding: 30px 28px 25px;
}

.news-article-meta time {
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.news-article-meta h2 {
  font-size: 1.85rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.news-article-meta h2 a {
  color: var(--color-accent-gold);
}

.news-article-meta h2 a:hover {
  color: #ffffff;
}

.news-excerpt p {
  color: #b4b8b4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-divider {
  height: 2px;
  width: 50px;
  background-color: var(--color-accent-red);
  margin-top: 1.8rem;
}

.news-pagination {
  margin-top: 20px;
  text-align: center;
}

.news-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.sidebar-widget {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  border-radius: 2px;
}

.widget-title {
  font-size: 1.35rem;
  color: var(--color-text-white);
  margin-bottom: 1.25rem;
}

.sidebar-category-links {
  list-style: none;
}

.sidebar-category-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-category-links li:last-child {
  border-bottom: none;
}

.sidebar-category-links a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #b0b4b0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.sidebar-category-links a:hover {
  color: var(--color-accent-gold);
}

.sidebar-category-links small {
  color: var(--color-text-dim);
}

.promo-widget .promo-box h4 {
  font-size: 1.2rem;
  color: var(--color-accent-gold);
  margin-bottom: 6px;
}

.promo-widget .promo-box p {
  font-size: 0.92rem;
  color: #a0a4a0;
  line-height: 1.5;
}

/* ==========================================================================
   2. TOUR PAGE SPECIFIC STYLING
   ========================================================================== */
.tour-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.tour-table th {
  background-color: #121417;
  color: var(--color-accent-gold);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-accent-gold);
}

.tour-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #e4e6e4;
  font-size: 1.05rem;
}

.tour-table tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.015);
}

.tour-table tr:hover td {
  background-color: rgba(212, 177, 28, 0.08);
}

.tag-status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  text-transform: uppercase;
}

.tag-status.sold-out {
  background-color: rgba(242, 15, 43, 0.2);
  color: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
}

.tag-status.na {
  color: var(--color-text-dim);
}

.b-ticket-btn {
  display: inline-block;
  padding: 6px 14px;
  background-color: transparent;
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.b-ticket-btn:hover {
  background-color: var(--color-accent-gold);
  color: #101820;
}

.b-vip-btn {
  display: inline-block;
  padding: 6px 14px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.b-vip-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* ==========================================================================
   3. BAND PAGE SPECIFIC STYLING
   ========================================================================== */
.artist-photo-card {
  position: relative;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.artist-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 28, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.artist-thumb-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: #0b0e12;
}

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

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

.artist-label-overlay {
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(10, 12, 15, 0.98) 0%, rgba(27, 30, 33, 0.9) 100%);
  border-top: 1px solid rgba(212, 177, 28, 0.2);
}

.artist-label-overlay h3 {
  font-size: 1.65rem;
  color: var(--color-accent-gold);
  margin-bottom: 4px;
}

.artist-label-overlay h6 {
  font-size: 0.95rem;
  color: #a0a4a0;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: none;
  font-family: var(--font-heading);
}

/* ==========================================================================
   4. DISCOGRAPHY PAGE SPECIFIC STYLING
   ========================================================================== */
.album-item-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.album-item-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 28, 0.4);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
}

.album-cover-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #0b0e12;
}

.album-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-item-card:hover .album-art-img {
  transform: scale(1.06);
}

.album-info-overlay {
  padding: 16px 18px;
  background-color: var(--color-bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.album-info-overlay h5 {
  font-size: 1.25rem;
  color: var(--color-accent-gold);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-info-overlay h6 {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   5. SHOP PAGE SPECIFIC STYLING
   ========================================================================== */
.shop-product-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.shop-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 28, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #121519;
}

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

.shop-product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--color-accent-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-info-wrap {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 6px;
  flex: 1;
}

.product-title a {
  color: #ffffff;
}

.product-title a:hover {
  color: var(--color-accent-gold);
}

.product-stars {
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.product-stars span {
  color: var(--color-text-dim);
  font-size: 0.8rem;
}

.product-price-row {
  margin-bottom: 14px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-gold);
}

.b-shop-action {
  width: 100%;
  padding: 9px 0;
  background-color: transparent;
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.b-shop-action:hover {
  background-color: var(--color-accent-gold);
  color: #101820;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1100px) {
  .news-layout-columns {
    grid-template-columns: 1fr 280px;
    gap: 30px;
  }

  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-copyright-text {
    font-size: 0.75rem;
  }
  
  .footer-right-cluster a {
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .nav-menu-left {
    padding-right: 80px;
  }

  .nav-menu-right {
    padding-left: 80px;
  }
}

@media (max-width: 900px) {
  .news-layout-columns {
    grid-template-columns: 1fr;
  }

  .bio-two-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .band-artists-grid,
  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav {
    height: auto;
    padding: 15px 0;
  }

  .footer-nav-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-right-cluster {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }

  .footer-right-cluster li {
    border: none;
    height: 40px;
  }
}

@media (max-width: 768px) {
  #header {
    top: 0;
    height: 55px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu-left,
  .nav-menu-right {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
  }

  #header.nav-open .nav-menu-left,
  #header.nav-open .nav-menu-right {
    display: flex;
  }

  #header.nav-open {
    background-color: #0b0c0e;
    height: 100vh;
  }

  #header.nav-open .header-container {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding-top: 20px;
  }

  .l-rush {
    position: static;
    transform: none;
    margin-bottom: 20px;
    width: 140px;
    height: 55px;
  }

  .nav-link {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.03);
    pointer-events: auto;
    box-shadow: none;
  }

  .band-artists-grid,
  .discography-grid,
  .shop-product-grid,
  .news-grid,
  .frequency-grid {
    grid-template-columns: 1fr;
  }

  .button-fifty-fix {
    margin-left: 0;
    margin-top: 150px;
  }
}

/* ==========================================================================
   STANDARD CONTENT PAGES (CREDITS, CONTACT, PRIVACY POLICY, TERMS OF USE)
   ========================================================================== */
.page.main-texture {
  padding: 140px 0 90px;
  min-height: 70vh;
  background-color: var(--color-bg-dark);
}

.page.main-texture h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--color-text-white);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l0-content {
  color: #cfd2d6;
  font-size: 1.05rem;
  line-height: 1.75;
}

.l0-content h3 {
  font-size: 1.6rem;
  color: var(--color-accent-gold);
  margin: 2.2rem 0 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.l0-content h5 {
  font-size: 1.2rem;
  color: var(--color-text-white);
  margin: 1.5rem 0 0.4rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.l0-content p {
  margin-bottom: 1.2rem;
}

.l0-content ul, .l0-content ol {
  margin: 1rem 0 1.8rem 1.8rem;
}

.l0-content li {
  margin-bottom: 0.6rem;
}

.l0-content a {
  color: var(--color-accent-gold);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.l0-content a:hover {
  color: #ffffff;
}

.l0-content hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

/* Tour Archive Grid */
.tour-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0 70px;
}

.tour-block {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-block:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 28, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.tour-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-block:hover .tour-img img {
  transform: scale(1.06);
}

.tour-block-info {
  padding: 16px 18px;
}

.tour-block-info h3 {
  font-size: 1.35rem;
  color: var(--color-accent-gold);
  margin-bottom: 4px;
}

.tour-block-info p {
  color: var(--color-text-dim);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .tour-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tour-list {
    grid-template-columns: 1fr;
  }
}

/* Band Member Biography Column Layout */
.bio-layout-columns {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
  padding: 40px 0 80px;
}

.bio-main-col img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 25px;
}

.bio-main-col h4 {
  font-size: 1.8rem;
  color: var(--color-accent-gold);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.bio-main-col p {
  color: #cfd2d6;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.bio-sidebar-col section {
  background-color: #171a1f;
  padding: 24px;
  border-radius: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bio-sidebar-col h4 {
  font-size: 1.3rem;
  color: var(--color-accent-gold);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.bio-news-item {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bio-news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bio-news-item time {
  font-size: 0.8rem;
  color: var(--color-accent-gold);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.bio-news-item a {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

.bio-news-item a:hover {
  color: var(--color-accent-gold);
}

@media (max-width: 950px) {
  .bio-layout-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   UNIVERSAL SUBPAGE HERO & SEAMLESS SOFT GRADIENT BLEND
   ========================================================================== */
.subpage-hero,
.news-hero-banner,
.news-hero-fullpage {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 45px;
  overflow: hidden;
}

/* Vignette Dark Overlay */
.subpage-hero-overlay,
.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 12, 15, 0.25) 0%, rgba(10, 12, 15, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Soft Blurred Dark Gradient Transition to Dark Background (Zero Hard Borders) */
.subpage-hero::after,
.news-hero-banner::after,
.news-hero-fullpage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 11, 10, 0.6) 45%, rgba(10, 11, 10, 0.95) 85%, #0a0b0a 100%);
  pointer-events: none;
  z-index: 2;
}

.subpage-hero .wrap,
.news-hero-banner .wrap,
.news-hero-fullpage .wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.subpage-main,
.main-news-section {
  background-color: #0a0b0a;
  position: relative;
  z-index: 5;
  padding: 35px 0 90px;
}


