:root {
  --bg: #060606;
  --surface: #111111;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --accent-red: #b30f1f;
  --accent-red-soft: #d43a4a;
  --accent-blue: #5077a8;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top right, rgba(80, 119, 168, 0.15), transparent 30%),
    radial-gradient(circle at top left, rgba(179, 15, 31, 0.2), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(4px);
  --menu-space: 0px;
  padding-bottom: var(--menu-space);
}

.site-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
  margin-top: 3rem;
}

.header-inner,
.footer-inner,
.page {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.main-nav ul,
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.menu-toggle {
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--accent-blue);
  background: rgba(80, 119, 168, 0.12);
  border-radius: 6px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--accent-red-soft);
  background: rgba(179, 15, 31, 0.2);
}

.menu-toggle .bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
  margin: 0;
}

.main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: none;
}

.main-nav.open {
  display: block;
}

.main-nav a {
  display: inline-block;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.main-nav ul {
  gap: 0;
  width: 100%;
  justify-content: space-between;
}

.main-nav li {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--text);
  border-color: var(--accent-blue);
  background: rgba(80, 119, 168, 0.12);
}

.logo-wrap {
  text-align: center;
}

.logo-wrap img {
  max-height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.social-area {
  display: flex;
  justify-content: flex-end;
}

.social-links a {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(179, 15, 31, 0.2);
}

.social-links img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  display: block;
}

.page {
  padding: 2rem 0 1rem;
}

.page.home-page {
  width: 100%;
  margin: 0;
  padding: 2rem 0 1rem;
}

.home-page .content-wrap {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.panel {
  background: rgba(17, 17, 17, 0.86);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1,
h2 {
  color: #ffffff;
}

.release p {
  margin-bottom: 0;
}

.review-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.review-list li {
  margin-bottom: 0.45rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.full-width-photo {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 1.35rem;
  margin-bottom: 1.35rem;
}

.full-width-photo img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #0d0d0d;
}

.gallery img {
  display: block;
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.events-list {
  display: grid;
  gap: 0.9rem;
}

.event-item {
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-red-soft);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  background: rgba(17, 17, 17, 0.9);
}

.event-item h3 {
  margin-bottom: 0.3rem;
}

.event-meta {
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.ticket-link {
  color: #ffffff;
  text-underline-offset: 3px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.85rem;
}

.member-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem;
  background: rgba(80, 119, 168, 0.09);
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 0.8rem;
}

.member-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #111;
}

.member-card h3 {
  margin-bottom: 0.2rem;
}

.member-role {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-inner {
  padding: 1.3rem 0 1.6rem;
  text-align: center;
}

.footer-inner .social-links {
  justify-content: center;
  margin-bottom: 0.8rem;
}

.contact-email {
  color: var(--muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-email a {
  color: #fff;
}

.contact-email img {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  display: block;
}

.footer-badge {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 4px;
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    text-align: initial;
  }

  .social-area {
    justify-content: flex-end;
  }

  .member-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .member-photo {
    margin: 0 auto;
  }
}