/* ============================================================
   style.css — shared across homepage / content / team pages
   ============================================================ */

/* ===== Reset & base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Noto Sans HK", sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.5;
}

.zh_CN body {
  font-family: "Inter", "Noto Sans SC", sans-serif;  
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== Header ===== */
/* NOTE: homepage originally had no padding; unified to 25px 0 0 (see question 1) */
header {
  background: radial-gradient(circle at 50% 0%, #2b2620 0%, #100f0d 70%);
  position: relative;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/*
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons a {
  color: #FFE1A4;
  font-size: 22px;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.social-icons a:hover { color: #fff; }

.social-icons img.brand-icon {
  height: 40px;
  width: auto;
  display: block;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
}
*/

.logo {
  text-align: center;
}

.logo img {
  height: 180px;
  width: auto;
  padding: 20px;
  display: block;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.lang {
  font-size: 16px;
  color: #FFE1A4;
}

.lang ul {
  list-style: none;
}
.lang ul,
.lang li {
  display: flex;
}

.lang a {
  display: block;
  padding: 0 4px;
  color: #FFE1A4;
}

.lang a:hover { color: #fff; }

.btn-ticket {
  display: inline-block;
  background: white;
  /* background: linear-gradient(135deg, #FDD675 0%, #ffffff 100%); */
  color: #1a1a1a;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .2s;
}

.btn-ticket:hover { filter: brightness(1.05); }

/* ===== Nav ===== */
nav { margin-top: 10px; }

nav .menu {
  display: flex;
  justify-content: center;
  gap: 75px;
  list-style: none;
  padding: 0 0 22px 0;
  border-bottom: 2px solid #FFE1A4;
}

nav .menu li {
  font-size: 20px;
  cursor: pointer;
  color: #FFE1A4;
  transition: color .2s;
}

nav .menu li:hover,
nav .menu li.active { color: #fff; }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ===== Hero ===== */
.hero {
  padding: 50px 0 30px 0;
  background: #0a0a0a;
}

/* scoped to .hero so it does not collide with content-page .hero-banner */
.hero .hero-banner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(120deg, #3a2f1f, #5a3d2a, #2a2a3a) padding-box,
    linear-gradient(120deg, #FDD675, #fff7da, #FDD675, #9c7a28, #FDD675) border-box;
  background-size: 100% 100%, 300% 100%;
  animation: heroBorderFlow 4s linear infinite;
  display: flex;
  align-items: stretch;
}

@keyframes heroBorderFlow {
  0%   { background-position: 0 0, 0% 50%; }
  100% { background-position: 0 0, 300% 50%; }
}

.hero .hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  top: 0;
  padding: 50px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-title img {
  height: 150px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.hero-button {
  display: inline-block;
  background: linear-gradient(135deg, #FDD675 0%, #ffffff 100%);
  color: #2a2a2a;
  border: 1px solid #FFE1A4;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: transform .2s, filter .2s;
}

.hero-buttons button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* ===== Section titles ===== */
.section-title {
  font-size: 33px;
  font-weight: 350;
  color: #e9d9b0;
  margin: 50px 0 35px;
}

/* ===== About cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cards-grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #FFE1A4;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.cards-grid.three .card { aspect-ratio: 16/10; }

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.card:hover img { transform: scale(1.07); }

.card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 30px 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

.cards-grid.three .card-label { font-size: 22px; }

/* ===== News ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #2a3a35;
  border: 1px solid #FFE1A4;
  cursor: pointer;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  display: block;
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  font-size: 20px;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.news-label {
  display: block;
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.stay-tuned {
  background: linear-gradient(135deg, #3a4a44, #2a3530);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Comic Sans MS", cursive;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #e8e8e0;
}

/* ===== Newsletter ===== */
.newsletter {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
  border: 2px solid transparent;
  background:
    linear-gradient(to top right, #6D5D3B, #53472C) padding-box,
    linear-gradient(90deg, #B6A783, #f3ead0, #B6A783, #6f6238, #B6A783) border-box;
  background-size: 100% 100%, 200% 100%;
  animation: newsletterBorderFlow 4s linear infinite;
}

@keyframes newsletterBorderFlow {
  0%   { background-position: 0 0, 0% 0; }
  100% { background-position: 0 0, 200% 0; }
}

.newsletter h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
}

.newsletter p {
  color: #f5efe0;
  margin-bottom: 30px;
  font-size: 15px;
}

.btn-subscribe {
  background: #f0ead8;
  color: #3a3320;
  border: none;
  padding: 16px 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-subscribe:hover { background: #fff; }

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  padding: 15px 0 30px;
}

/*
.social-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 5px;
}
header .social-icons a {
  color: #FFE1A4;
  transition: color .2s;
}
header .social-icons a:hover { color: #fff; }
footer .social-icons a:hover { color: #FFE1A4; }

.social-icons .icon { width: auto; }

.social-icons .brand-icon { height: 35px; width: auto; }
.social-icons .icon-fb { height: 30px; }
.social-icons .icon-ig { height: 30px; }
.social-icons .icon-yt { height: 23px; }

*/

.social-icons {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 5px;
}

.social-icons .icon {
  width: auto;
  transition: fill 0.2s ease;
}
header .social-icons .icon {
  fill: #FFE1A4;
}
footer .social-icons .icon {
  fill: white;
}

header .social-icons a:hover .icon {
  fill: white;
}
footer .social-icons a:hover .icon {
  fill: #FFE1A4;
}

.social-icons .brand-icon { height: 35px; width: auto; }

.social-icons .brand-hover   { display: none; }
.social-icons .brand-default { display: inline-block; }

.social-icons .brand-link:hover .brand-default { display: none; }
.social-icons .brand-link:hover .brand-hover   { display: inline-block; }

.social-icons .icon-fb { height: 30px; }
.social-icons .icon-ig { height: 30px; }
.social-icons .icon-yt { height: 23px; }


.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px;
}

.partner-block h4 {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
}

.partner-logos {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.copyright {
  margin-top: 35px;
  font-size: 13px;
  color: #fff;
}

/* ============================================================
   CONTENT PAGE
   ============================================================ */

/* ===== Hero ===== */
.hero-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(120deg, #3a2f1f, #5a3d2a, #2a2a3a);
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.9; */
}

/*
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%),
              linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%);
}
*/

.hero-info {
  position: relative;
  z-index: 3;
  padding: 0 60px 60px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-text h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

.hero-text p {
  font-size: 19px;
  color: #eee;
  margin-bottom: 28px;
}

.hero-buy {
  background: #e9dcc0;
  color: #2a2a2a;
  border: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.hero-buy:hover { background: #d4b572; transform: translateY(-2px); }

/* ===== Gold intro strip ===== */
.intro-strip {
  background: linear-gradient(135deg, #6F6037, #000000);
  padding: 45px 20px;
  text-align: center;
}

.intro-strip p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  color: #fff;
  line-height: 2;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 35px 0 0;
  margin-bottom: 25px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #FFE1A4, #ffffff) 1;
}

.tab {
  padding: 14px 38px;
  font-size: 17px;
  font-weight: 600;
  color: #ccc;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  transition: all .2s;
}

.tab.active, .tab:hover {
  background: rgba(212,181,114,0.18);
  color: #e9d9b0;
}

/* ===== Overview ===== */
.overview {
  text-align: center;
  padding: 60px 20px 70px;
  border: 2px solid;
  border-image: linear-gradient(to right, #FFE1A4, #3a2f15) 1;
}

.overview h2 {
  font-size: 30px;
  color: #e9d9b0;
  margin-bottom: 35px;
}

.overview p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 2;
  color: #ddd;
}

/* ===== Story section ===== */
.story-section {
  padding: 70px 0 90px;
  background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #0a0a0a 70%);
  border-bottom: 0.5px solid #FFE1A4;
}

.story-section h2 {
  text-align: center;
  font-size: 46px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 70px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.story-row .story-text h3 {
  font-size: 26px;
  color: #d4b572;
  margin-bottom: 22px;
}

.story-row .story-text p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid transparent;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) padding-box,
    linear-gradient(135deg, #FFE1A4, #3a2f15) border-box;
}

.story-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.story-row:nth-child(odd) .story-img { order: -1; }

/* ===== Ticketing ===== */
.ticketing {
  padding: 70px 0 90px;
  background: radial-gradient(circle at 50% 0%, #161512 0%, #0a0a0a 60%);
}

.ticketing h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 55px;
  background: linear-gradient(to right, #FDD675, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
}

.ticket-left { display: flex; flex-direction: column; }

.ticket-info-box {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 28px;
  background:
    linear-gradient(#121110, #121110) padding-box,
    linear-gradient(135deg, #FFE1A4, #3a2f15) border-box;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.info-item:last-child { margin-bottom: 0; }
.info-item .ico { display: none; font-size: 22px; color: #FFE1A4; flex-shrink: 0; }

.info-item h4 {
  font-size: 16px;
  color: #FFE1A4;
  margin-bottom: 6px;
}

.info-item p { font-size: 13px; color: #fff; line-height: 1.6; }
.info-item a { color: #fff; text-decoration: underline; }

.important { margin-top: 30px; }

.important .imp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #FFE1A4;
  font-size: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #FFE1A4, #3a2f15) 1;
}

.imp-arrow {
  color: #FFE1A4;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  transform: scaleX(1.8);
  transform-origin: center;
}

.important ul {
  list-style: none;
  font-size: 11px;
  color: #fff;
  line-height: 1.9;
  margin-top: 16px;
}

.schedule .sched-block { margin-bottom: 35px; }

.schedule .sched-date {
  font-size: 28px;
  color: #d4b572;
  font-weight: 700;
  margin-bottom: 16px;
}

.schedule .sched-time {
  font-size: 19px;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 10px;
  cursor: pointer;
}

.schedule .sched-time:hover { color: #d4b572; }

.price-legend { margin-top: 40px; }
.price-legend .pl-title { font-size: 16px; color: #fff; margin-bottom: 16px; }
.price-row { display: flex; gap: 30px; }
.price-item { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.swatch { width: 22px; height: 22px; border-radius: 4px; }

/* ============================================================
   TEAM PAGE
   ============================================================ */

/* ===== Page title ===== */
.page-title {
  text-align: center;
  padding: 80px 20px 70px;
  position: relative;
}

.page-title h1,
.page-title h2 {
  font-size: 60px;
  font-weight: 700;
  color: #e9d9b0;
  letter-spacing: 8px;
  position: relative;
  display: inline-block;
}

/*
.page-title h1::before,
.page-title h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4b572);
}

.page-title h1::before { right: 100%; margin-right: 30px; background: linear-gradient(90deg, transparent, #d4b572); }
.page-title h1::after  { left: 100%; margin-left: 30px; background: linear-gradient(90deg, #d4b572, transparent); }
*/

/* ===== Category tabs ===== */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  padding: 0 20px 90px;
  cursor: pointer;
}

.cat-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #f2e4bd, #cda85a);
  color: #3a2f15;
  font-size: 19px;
  font-weight: 700;
  padding: 22px 40px;
  border-radius: 12px;
  min-width: 230px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: transform .2s, box-shadow .2s;
  line-height: 1.4;
}

.cat-tab:hover, .cat-tab.active {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(212,181,114,0.4);
}

/* ===== Team group ===== */
.team-group {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(180,150,60,0.35) 0%, transparent 35%),
    radial-gradient(circle at 50% 40%, #1a1a17 0%, #0a0a0a 70%);
  padding: 70px 0 120px;
  transition: background .3s ease;
}

#rowsWrap {
  opacity: 1;
  transition: opacity .25s ease;
}

#rowsWrap.fading {
  opacity: 0;
}

.group-title {
  font-size: 46px;
  font-weight: 700;
  color: #e9d9b0;
  margin-bottom: 70px;
}

.members-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px 90px;
  margin-bottom: 70px;
}

.members-row:last-child { margin-bottom: 0; }

.member {
  width: 260px;
  text-align: center;
  cursor: pointer;
}

.member .avatar {
  width: 230px;
  height: 230px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#1a1a17, #1a1a17),
    linear-gradient(135deg, #d4af37, #ffe600);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  transition: transform .3s, box-shadow .3s;
}

.member.ring-red-orange .avatar,
.member:nth-child(6n+1) .avatar,
.member:nth-child(6n+6) .avatar {
  background-image: linear-gradient(#1a1a17, #1a1a17), linear-gradient(135deg, #e63946, #f6a23c);
}

.member.ring-blue-light .avatar,
.member:nth-child(6n+2) .avatar,
.member:nth-child(6n+5) .avatar {
  background-image: linear-gradient(#1a1a17, #1a1a17), linear-gradient(135deg, #1d4ed8, #6bc3ff);
}

.member.ring-gold-yellow .avatar,
.member:nth-child(6n+3) .avatar,
.member:nth-child(6n+4) .avatar {
  background-image: linear-gradient(#1a1a17, #1a1a17), linear-gradient(135deg, #d4af37, #ffe600);
}

.member:hover .avatar {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212,181,114,0.45);
}

.member.active .avatar {
  transform: scale(1.05);
  box-shadow: 0 10px 34px rgba(212,181,114,0.6);
}

.member .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.member .name {
  font-size: 30px;
  font-weight: 700;
  color: #f0e6c8;
  margin-bottom: 8px;
}

.member:hover .name,
.member.active .name { color: #d4b572; }

.member .role { font-size: 14px; color: #cfc09a; font-weight: 600; }

/* ===== Inline bio panel ===== */
.bio-panel {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.4,0,.2,1),
              margin-bottom .55s cubic-bezier(.4,0,.2,1),
              margin-top .55s cubic-bezier(.4,0,.2,1);
}

.bio-panel.open {
  margin-top: 0;
  margin-bottom: 70px;
}

.bio-inner {
  position: relative;
  background: transparent;
  border: 1px solid rgba(212,181,114,0.35);
  border-radius: 14px;
  padding: 60px 70px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 55px;
  align-items: start;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s ease .12s, transform .4s ease .12s;
}

.bio-panel.open .bio-inner {
  opacity: 1;
  transform: translateY(0);
}

.bio-close {
  position: absolute;
  top: 28px;
  right: 34px;
  font-size: 34px;
  color: #d4b572;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: transform .2s;
}

.bio-close:hover { transform: rotate(90deg); }

.bio-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,181,114,0.5);
}

.bio-photo img { width: 100%; height: 100%; object-fit: cover; }

.bio-body h2 {
  font-size: 50px;
  color: #f0e6c8;
  font-weight: 700;
  margin-bottom: 14px;
}

.bio-body .m-role {
  font-size: 22px;
  color: #e9d9b0;
  margin-bottom: 30px;
}

.bio-body .m-sub {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 24px;
  font-weight: 600;
}

.bio-body .m-bio {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 2;
}

.bio-body .m-bio p { margin-bottom: 14px; }

/* ============================================================
   SHARED — Audio float button & icon helper
   ============================================================ */
.audio-btn {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0a82e;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  z-index: 50;
}

.icon { width: 22px; height: 22px; fill: currentColor; }

/* ============================================================
   Responsive (merged from all three pages)
   ============================================================ */
@media (max-width: 900px) {
  .top-bar { flex-direction: column; gap: 20px; }
  nav .menu { flex-wrap: wrap; gap: 25px; }

  /* homepage */
  .cards-grid, .cards-grid.three, .news-grid { grid-template-columns: 1fr; }
  .hero-title img { height: 90px; }
  .hero .hero-banner { height: 360px; }

  /* content page */
  .hero-info { flex-direction: column; align-items: flex-start; gap: 25px; padding: 0 25px 40px; }
  .hero-text h1 { font-size: 32px; }
  .story-row, .ticket-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-row.reverse .story-img { order: 0; }
  .story-section h2 { font-size: 32px; }

  /* team page */
  .page-title h1 { font-size: 38px; letter-spacing: 4px; }
  .page-title h1::before, .page-title h1::after { display: none; }
  .group-title { font-size: 30px; }
  .bio-inner { grid-template-columns: 1fr; gap: 30px; padding: 50px 30px; justify-items: center; text-align: center; }
  .bio-body h2 { font-size: 34px; }
}

body.admin-bar {
  margin-top: 32px;
}
@media screen and (max-width: 782px) { 
  body.admin-bar {
    margin-top: 46px;
  }
}

/* ============================================================
   SUBSCRIBE MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 1160px;
  background: radial-gradient(circle at 50% 0%, #1a1814 0%, #000 80%);
  border: 1px solid #c9a85a;
  border-radius: 26px;
  padding: 70px 70px 80px;
}

.modal-close {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.modal-close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c9a85a;
  stroke-width: 2;
  transition: stroke .2s, transform .2s;
}

.modal-close:hover svg { stroke: #fff; transform: scale(1.05); }

.modal-title {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.modal-subtitle {
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 45px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.modal-row {
  display: flex;
  gap: 28px;
  width: 100%;
}

.modal-form input {
  flex: 1;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 22px 28px;
  font-size: 18px;
  color: #333;
}

.modal-form input::placeholder { color: #8a8a8a; }

.modal-form input:focus {
  outline: 2px solid #c9a85a;
}

.modal-submit {
  background: #fff;
  color: #1a1a1a;
  border: none;
  border-radius: 12px;
  padding: 20px 60px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  transition: filter .2s, transform .2s;
}

.modal-submit:hover { filter: brightness(0.92); transform: translateY(-2px); }

@media (max-width: 900px) {
  .modal-box { padding: 50px 25px 55px; border-radius: 18px; }
  .modal-title { font-size: 32px; }
  .modal-close { top: 22px; right: 22px; width: 40px; height: 40px; }
  .modal-row { flex-direction: column; gap: 20px; }
}

.news-details-container {
  max-width: 960px;
  padding: 60px;
  border: 2px solid #443e2f;
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
}
.nd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nd-title {
  width: 50%;
  padding-right: 30px;
}
.nd-title h1 { 
  font-size: 40px;
  font-weight: 700;
}
.nd-date {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0;
}
.nd-cover {
  widtH: 50%;
}
.nd-cover img {
  width: 100%;
}
.nd-main {
  padding-top: 50px;
}
.nd-main p {
  font-size: 22px;
  text-align: left;
}
.nd-gallery {
  padding-top: 50px;
}
.nd-gallery-entries {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%;
}
.nd-gallery-entry {
  display: block;
  width: 32%;
  margin-bottom: 2%;
  border-radius: 22px;
  overflow: hidden;
}
.nd-gallery-entry-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.nd-gallery-entry img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.nd-more-container {
  max-width: 960px;
  padding: 60px 0;
}
.nd-more-container h3 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  color: rgb(255, 225, 164);
}
.news-cards {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2%;
  flex-wrap: wrap;
}
.nd-more-container .news-card {
  width: 32%;
}
.nd-more-container .news-date {
  display: none;
}


.news-list-container {
  max-width: 960px;
}
.news-list-container .news-card {
  width: 32%;
  margin-bottom: 7%;
  border-radius: 22px;
}
.news-list-container .news-card-large {
  width: 100%;
  aspect-ratio: 10/4;
}
.news-card-large .news-label,
.news-card-large .news-date {
  font-size: 36px;
  font-weight: 700;
}
.news-card-large .news-date {
  left: auto;
  right: 14px;
}
.hero-content-new {
  top: -20px;
}
.hero-content-new .hero-buttons {
  justify-content: flex-end;
}