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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTBook.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTDemi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTHeavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
body.admin {
  margin: 0;
  background: #0b0c14;
  color: #f4f5f7;
  font-family: "FuturaPT", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #14121f;
  border-right: 1px solid #2a2438;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  margin-bottom: 40px;
}

.sidebar__roundel {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fdd355;
  color: #0b0c14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "FuturaPT", sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.sidebar__brand-text {
  font-family: "FuturaPT", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
}
.sidebar__brand-text em {
  font-style: normal;
  font-weight: 400;
  color: #9c93ab;
}

.sidebar__nav {
  flex: 1;
  position: relative;
  padding-left: 24px;
}

.sidebar__nav::before {
  content: "";
  position: absolute;
  left: calc(24px + 5px);
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #2a2438;
}

.sidebar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 0;
  color: #9c93ab;
  font-weight: 500;
  transition: color 0.15s;
}

.sidebar__stop {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #14121f;
  border: 2px solid #2a2438;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.15s;
}

.sidebar__link:hover {
  color: #f4f5f7;
}

.sidebar__link.is-active {
  color: #f4f5f7;
  font-weight: 700;
}

.sidebar__link.is-active .sidebar__stop {
  background: #fdd355;
  border-color: #fdd355;
  box-shadow: 0 0 0 4px rgba(253, 211, 85, 0.2);
}

.sidebar__user {
  padding: 16px 24px 0;
  border-top: 1px solid #2a2438;
  margin-top: 16px;
}

.sidebar__user-name {
  font-size: 12px;
  color: #9c93ab;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sidebar__logout {
  font-size: 13px;
  color: #ff3b30;
  font-weight: 600;
}

.admin-shell__main {
  flex: 1;
  min-width: 0;
}

.topbar__toggle {
  display: none;
  background: none;
  border: none;
  color: #f4f5f7;
  font-size: 22px;
  padding: 16px;
}

.admin-content {
  padding: 40px;
  max-width: 1200px;
}

@media screen and (max-width: 991px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.2s;
    z-index: 10;
  }
  .admin-shell.is-sidebar-open .sidebar {
    transform: translateX(0);
  }
  .topbar__toggle {
    display: block;
  }
  .admin-content {
    padding: 24px;
  }
}
.genre-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--genre-color, #fdd355);
  color: #fff;
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  background: #1b1829;
  color: #f4f5f7;
  transition: filter 0.15s, background-color 0.15s;
}

.btn:hover {
  filter: brightness(1.2);
}

.btn--primary {
  background: #fdd355;
  color: #0b0c14;
}

.btn--danger {
  background: transparent;
  border-color: #ff3b30;
  color: #ff3b30;
}

.btn--danger:hover {
  background: #ff3b30;
  color: #fff;
  filter: none;
}

.btn--ghost {
  background: transparent;
  border-color: #2a2438;
}

.btn--icon {
  padding: 8px;
  width: 36px;
  height: 36px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.form-card {
  background: #14121f;
  border: 1px solid #2a2438;
  border-radius: 12px;
  padding: 24px;
  max-width: 640px;
}

.form__field {
  margin-bottom: 16px;
}

.form__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #9c93ab;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field input[type=text],
.form__field input[type=date],
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 10px 8px;
  background: #0b0c14;
  border: 1px solid #2a2438;
  border-radius: 6px;
  color: #f4f5f7;
  font-family: "FuturaPT", sans-serif;
  font-size: 14px;
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: #fdd355;
}

.form__field textarea {
  min-height: 100px;
  resize: vertical;
}

.form__hint {
  font-size: 13px;
  color: #9c93ab;
}

.form__hint a {
  color: #fdd355;
  text-decoration: underline;
}

.form__actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.page-head h1 {
  font-family: "FuturaPT", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input[type=search],
.search-box input[type=text] {
  padding: 8px 8px;
  background: #14121f;
  border: 1px solid #2a2438;
  border-radius: 6px;
  color: #f4f5f7;
  font-size: 14px;
  min-width: 220px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #2a2438;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9c93ab;
}

.filter-chip.is-active {
  background: #fdd355;
  border-color: #fdd355;
  color: #0b0c14;
}

.data-table-wrap {
  background: #14121f;
  border: 1px solid #2a2438;
  border-radius: 12px;
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9c93ab;
  padding: 16px;
  border-bottom: 1px solid #2a2438;
  white-space: nowrap;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid #2a2438;
  font-size: 14px;
  vertical-align: middle;
}

.data-table tbody tr {
  border-left: 3px solid var(--row-color, transparent);
}

.data-table tbody tr:nth-child(even) {
  background: #1b1829;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.data-table time,
.data-table .mono {
  font-family: ui-monospace, "SF Mono", "Courier New", monospace;
}

.data-table__actions {
  display: flex;
  gap: 8px;
}

.data-table__actions form {
  display: inline-block;
}

.data-table__empty {
  padding: 40px;
  text-align: center;
  color: #9c93ab;
}

.alert {
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.alert--success {
  background: rgba(0, 229, 176, 0.15);
  color: #4fe8c8;
  border: 1px solid rgba(0, 229, 176, 0.4);
}

.alert--error {
  background: rgba(255, 59, 48, 0.15);
  color: #ff7a72;
  border: 1px solid rgba(255, 59, 48, 0.4);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0c14;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: #14121f;
  border: 1px solid #2a2438;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.login-card__roundel {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdd355;
  color: #0b0c14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "FuturaPT", sans-serif;
  font-weight: 800;
  font-size: 26px;
  margin: 0 auto 16px;
}

.login-card h1 {
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.login-card__subtitle {
  color: #9c93ab;
  font-size: 13px;
  margin-bottom: 24px;
}

.login-card .form__field {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: #14121f;
  border: 1px solid #2a2438;
  border-top: 3px solid var(--stat-color, #fdd355);
  border-radius: 12px;
  padding: 24px;
}

.stat-card__value {
  font-family: "FuturaPT", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.stat-card__label {
  margin-top: 8px;
  color: #9c93ab;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fdd355;
}

.concert-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.concert-tour {
  color: #9c93ab;
  font-size: 13px;
}

body {
  margin: 0;
  background: #0b0c14;
  color: #f4f5f7;
  font-family: "FuturaPT", sans-serif;
  line-height: 1.6;
}

/* ---------------------------------- header ---------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: linear-gradient(rgba(11, 12, 20, 0.92), rgba(11, 12, 20, 0.7));
  backdrop-filter: blur(6px);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand__logo {
  display: block;
  width: auto;
}

.mobile-menu .brand__logo {
  height: 30px;
  margin-bottom: 24px;
}

.site-footer .brand__logo {
  height: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links li a {
  font-weight: 600;
  font-size: 14px;
  color: #9c93ab;
  transition: color 0.15s;
}

.nav-links li a:hover {
  color: #f4f5f7;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f4f5f7;
  transition: all 0.25s;
}

.nav-toggle span {
  top: 9px;
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
  background: #fdd355;
}

.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fdd355;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2900;
  background: #0b0c14;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.opened {
  display: flex;
}

.mobile-menu li a {
  font-family: "FuturaPT", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f4f5f7;
}

@media screen and (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
/* ---------------------------------- hero (section-1) ---------------------------------- */
.section-1 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-1 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section-1__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.55) 0%, rgba(11, 12, 20, 0.9) 100%);
  z-index: 1;
}

.section-1__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-1__content h1 {
  font-family: "FuturaPT", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #f4f5f7;
}

.section-1__content p {
  color: #9c93ab;
  font-size: 17px;
  margin-bottom: 24px;
}

/* ---------------------------------- section 2 (concept) ---------------------------------- */
.section-2 {
  padding: 60px 24px;
}

.section-2__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-2__media img {
  border-radius: 12px;
  border: 1px solid #2a2438;
  display: block;
}

.section-2__content h2 {
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 16px;
}

.section-2__content p {
  color: #9c93ab;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .section-2__inner {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------- shared section head ---------------------------------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 8px;
}

.section-head p {
  color: #9c93ab;
  font-size: 16px;
}

/* ---------------------------------- section 3 (genres) ---------------------------------- */
.section-3 {
  padding: 60px 24px;
  background: #14121f;
}

.genre-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.genre-card {
  position: relative;
  display: block;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2438;
  border-top: 3px solid var(--genre-color, #fdd355);
}

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

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

.genre-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.1) 0%, rgba(11, 12, 20, 0.85) 100%);
}

.genre-card__label {
  position: absolute;
  left: 16px;
  bottom: 8px;
  z-index: 2;
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #f4f5f7;
}

@media screen and (max-width: 991px) {
  .genre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .genre-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ---------------------------------- section 4 (concerts) ---------------------------------- */
.section-4 {
  padding: 60px 24px;
}

.concert-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.concert-card {
  background: #14121f;
  border: 1px solid #2a2438;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.concert-card:hover {
  transform: translateY(-4px);
}

.concert-card__media {
  position: relative;
  aspect-ratio: 4/5;
}

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

.concert-card .genre-badge {
  position: absolute;
  top: 8px;
  left: 8px;
}

.concert-card__info {
  padding: 16px;
  border-top: 3px solid var(--genre-color, #fdd355);
}

.concert-card__info h3 {
  font-family: "FuturaPT", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 2px;
}

.concert-card__tour {
  display: block;
  color: #9c93ab;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 8px;
}

.concert-card__meta {
  color: #9c93ab;
  font-size: 12px;
}

@media screen and (max-width: 991px) {
  .concert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------------------------------- footer ---------------------------------- */
.site-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid #2a2438;
}

.site-footer .brand {
  justify-content: center;
  margin-bottom: 16px;
}

.site-footer p {
  color: #9c93ab;
  font-size: 14px;
  margin-bottom: 16px;
}

.site-footer__admin {
  font-size: 13px;
  font-weight: 600;
  color: #fdd355;
}

@media screen and (max-width: 480px) {
  .section-1__content h1 {
    font-size: 30px;
  }
  .concert-grid {
    grid-template-columns: 1fr 1fr;
  }
}
