:root {
  --bg-1: #05060b;
  --bg-2: #0c0f1a;
  --panel: rgba(17, 19, 31, 0.92);
  --panel-strong: rgba(25, 28, 43, 0.98);
  --accent: #e63946;
  --accent-2: #f7a31b;
  --text: #f5f6fb;
  --muted: #a6accd;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(230, 57, 70, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(247, 163, 27, 0.07), transparent 22%),
    linear-gradient(140deg, var(--bg-1) 0%, var(--bg-2) 60%, #07080f 100%);
  font-family: "Barlow", "Helvetica Neue", sans-serif;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Staatliches", "Barlow", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  color: #ffd079;
}

.ga-body {
  min-height: 100vh;
}

.ga-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ga-nav {
  background: linear-gradient(120deg, rgba(17, 19, 31, 0.82), rgba(17, 19, 31, 0.92));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 10px 0;
  position: relative;
  z-index: 5;
}

.ga-nav.w3-bar {
  display: flex;
  align-items: center;
}

.ga-nav.w3-bar .w3-bar-item {
  display: flex;
  align-items: center;
  height: 56px;
}

.ga-nav .w3-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding-right: 10px;
}

.ga-nav .w3-button {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.ga-nav .w3-button:hover,
.ga-nav .w3-button.active {
  color: var(--text);
  background: transparent;
}

.ga-nav .fa {
  color: var(--muted);
  transition: color 0.2s ease;
  font-size: 24px;
  width: 34px;
}

.ga-nav .fa:hover {
  color: var(--accent);
}

.ga-nav img {
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.ga-hero {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(6, 7, 12, 0.55), rgba(6, 7, 12, 0.95)),
    radial-gradient(circle at 20% 10%, rgba(247, 163, 27, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.16), transparent 32%),
    #06070c;
}

.ga-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(1.2);
  z-index: 0;
}

.ga-hero.large::after {
  background-image: url("../images/ga-banner-2023.jpeg");
}

.ga-hero.small::after {
  background-image: url("../images/ga-banner-2023.jpeg");
  opacity: 0.2;
}

.ga-hero .ga-shell {
  position: relative;
  z-index: 1;
  padding: 64px 24px;
}

.ga-hero.large .ga-shell {
  padding: 64px 24px;
}

.hero-logo {
  display: inline-block;
  transform: translateY(-4px);
}

.hero-logo img {
  width: 320px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
  image-rendering: -webkit-optimize-contrast;
}

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

.w3-top {
  z-index: 5000;
}

#navDemo {
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  margin-top: 0 !important;
  z-index: 4000;
}

.ga-hero .kicker {
  display: none;
}

.ga-hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  color: #fff;
  margin-bottom: 12px;
}

.ga-hero p {
  max-width: 760px;
  font-size: 18px;
}

.ga-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(230, 57, 70, 0.92), rgba(247, 163, 27, 0.85));
  color: #0a0b11;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.ga-btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .ga-nav .w3-bar-item {
    width: 100%;
    text-align: left;
  }

  .ga-hero.large .ga-shell {
    padding: 84px 20px 96px;
  }

  .ga-section {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .ga-shell {
    padding: 0 14px;
  }

  .ga-panel {
    padding: 18px;
  }

  .ga-hero.large .ga-shell {
    padding: 90px 14px 70px;
  }

  .ga-grid.two,
  .ga-grid.three,
  .merch-grid {
    grid-template-columns: 1fr;
  }
}

.ga-section {
  padding: 64px 0;
}

.ga-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ga-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ga-panel h3 {
  margin-top: 0;
}

.feed-panel .fb-embed {
  max-width: 460px;
  margin: 0 auto;
  padding-top: 6px;
  flex: 1;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.feed-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.shows-table {
  width: 100%;
  table-layout: fixed;
}

.shows-table td {
  border-bottom: 1px solid var(--border);
}

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

.ga-grid {
  display: grid;
  gap: 20px;
}

.ga-grid.three {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.merch-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ga-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  align-items: flex-start;
}

.feed-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.release-card {
  overflow: hidden;
  position: relative;
  background: var(--panel-strong);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.6);
}

.release-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.release-card .release-meta {
  padding: 18px;
}

.release-card .release-meta h4 {
  margin: 0 0 6px;
}

.release-card .release-meta span {
  color: var(--muted);
  font-size: 14px;
}

.ga-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.ga-tile {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.ga-tile strong {
  color: var(--text);
}

.ga-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

.ga-table th,
.ga-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}

.ga-table th {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.ga-table tr:hover {
  background: rgba(230, 57, 70, 0.04);
}

input,
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  width: 100%;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(230, 57, 70, 0.5);
}

.ga-footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(17, 19, 31, 0.85), rgba(17, 19, 31, 0.95));
}

.ga-footer .social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ga-footer .social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.w3-table,
.w3-table-all {
  color: var(--text);
  background: transparent;
}

.w3-table tr:nth-child(even),
.w3-table-all tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.w3-table tr:hover,
.w3-table-all tr:hover {
  background: rgba(230, 57, 70, 0.08);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0c0f1a;
}

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

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
}

.w3-card,
.w3-card-4 {
  background: var(--panel);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.w3-modal-content {
  background: var(--panel-strong);
}

.w3-light-grey,
.w3-white,
.w3-black {
  color: var(--text);
  background: transparent;
}

@media (max-width: 768px) {
  .ga-nav .w3-bar-item {
    width: 100%;
    text-align: left;
  }

  .ga-hero.large .ga-shell {
    padding: 84px 20px 96px;
  }

  .ga-section {
    padding: 48px 0;
  }
}
