:root {
  --bg: #0c0e13;
  --bg-2: #13151d;
  --bg-3: #1a1d27;
  --accent: #8b0000;
  --accent-hot: #a81010;
  --border: #252836;
  --text: #d4d4d4;
  --muted: #6b6b84;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, sans-serif;
}

a {
  color: inherit;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(139, 0, 0, 0.35);
  background: rgba(12, 14, 19, 0.9);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

/* Top row: social | brand | actions */

.site-header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  gap: 1rem;
}

/* ---- Social icons (left) ---- */

.header-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-icon-link {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 18px rgba(6, 8, 14, 0.28);
  color: #f4f7ff;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.social-icon-link svg {
  width: 1.18rem;
  height: 1.18rem;
}

.social-icon-link:hover {
  color: #fff;
  background: rgba(139, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.34);
}

/* ---- Brand (centre) ---- */

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.95rem;
  min-width: 0;
  color: #f1f1f1;
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  min-width: 0;
  white-space: normal;
}

.header-brand img {
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(139, 0, 0, 0.55));
}

.brand-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  color: #bcc3d6;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* ---- Actions (right) ---- */

.header-mobile-menu,
.header-mobile-search,
.header-mobile-login {
  display: none;
}

.header-mobile-toggle,
.header-mobile-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(214, 218, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d6dbea;
  cursor: pointer;
  line-height: 0;
  vertical-align: middle;
  list-style: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.header-mobile-login {
  display: none;
  align-self: center;
  text-decoration: none;
}

.header-mobile-toggle svg,
.header-mobile-icon svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
}

.header-mobile-toggle::-webkit-details-marker,
.header-mobile-icon::-webkit-details-marker {
  display: none;
}

.header-mobile-panel,
.header-mobile-search-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  border: 1px solid rgba(139, 0, 0, 0.38);
  border-radius: 1rem;
  background: rgba(13, 15, 22, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}

.header-mobile-panel {
  left: 0;
  width: min(20rem, calc(100vw - 2rem));
  padding: 1rem;
}

.header-mobile-search-panel {
  right: 0;
  display: flex;
  align-items: center;
  width: min(16rem, calc(100vw - 2rem));
  height: 3rem;
  padding: 0 0 0 0.7rem;
  overflow: hidden;
}

.header-mobile-nav {
  display: grid;
  gap: 0.3rem;
}

.header-mobile-nav a {
  padding: 0.65rem 0.7rem;
  border-radius: 0.7rem;
  color: #d8dcea;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.header-mobile-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.header-mobile-language {
  margin-top: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.header-search {
  display: inline-flex;
  align-items: center;
  min-width: min(21rem, 37vw);
  height: 2.5rem;
  border: 1px solid rgba(214, 218, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.header-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-search-prefix {
  padding-left: 0.9rem;
  color: #c3cada;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 0.85rem 0 0.55rem;
  border: 0;
  background: transparent;
  color: #f0f3fb;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  outline: none;
}

.header-search-input::-moz-placeholder {
  color: #7f879b;
}

.header-search-input::placeholder {
  color: #7f879b;
}

.header-search-btn {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 100%;
  border: 0;
  border-left: 1px solid rgba(214, 218, 230, 0.1);
  background: transparent;
  color: #c6cbda;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.header-search-btn:hover,
.header-search:focus-within .header-search-btn {
  color: #fff;
  background: rgba(139, 0, 0, 0.14);
}

.header-search:focus-within {
  border-color: rgba(139, 0, 0, 0.42);
  box-shadow: 0 0 0 1px rgba(139, 0, 0, 0.14);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.language-switch form {
  margin: 0;
}

.language-switch-btn {
  min-width: 2.05rem;
  min-height: 1.8rem;
  padding: 0.28rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9ea6bb;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}

.language-switch-btn.is-active,
.language-switch-btn:hover {
  background: linear-gradient(180deg, rgba(139, 0, 0, 0.52), rgba(95, 0, 0, 0.52));
  color: #f7f8fb;
}

.header-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.42rem 1rem;
  border: 1px solid rgba(214, 218, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d6dbea;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.header-login-btn svg {
  width: 1rem;
  height: 1rem;
  color: #b8bfd1;
}

.header-login-btn:hover,
.header-login-btn:focus-visible {
  background: rgba(139, 0, 0, 0.22);
  color: #fff;
  border-color: rgba(139, 0, 0, 0.52);
}

.header-login-btn:hover svg,
.header-login-btn:focus-visible svg {
  color: currentColor;
}

.header-icon-btn {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(214, 218, 230, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: #c6cbda;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.header-icon-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.header-icon-btn:hover {
  color: #fff;
  background: rgba(139, 0, 0, 0.16);
  border-color: rgba(139, 0, 0, 0.6);
}

.header-user-chip {
  font-size: 0.78rem;
  font-weight: 700;
  color: #b0b5c6;
  letter-spacing: 0.06em;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- Nav row (bottom of header) ---- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav a {
  color: #a9a9bd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: #fff;
}

/* ============================================================
   MAIN SHELL (home + inner pages)
   ============================================================ */

.site-shell {
  min-height: 100vh;
  padding-top: 8.4rem;
  /* header height */
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.94), rgba(5, 6, 10, 0.62)),
    url("../assets/background.jpg") center / cover fixed;
}

/* ============================================================
   HOME HERO
   ============================================================ */

.home-hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 4rem clamp(1rem, 7vw, 6rem) 5rem;
}

.hero-copy {
  width: min(100%, 49rem);
}

.hero-kicker {
  margin: 0 0 1rem;
  color: #cc4a4a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(3rem, 9vw, 7.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy p:not(.hero-kicker) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #c8c8d8;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-link {
  background: #8b0000;
  color: #fff;
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.35);
}

.secondary-link {
  border: 1px solid rgba(212, 212, 212, 0.2);
  background: rgba(19, 21, 29, 0.72);
  color: #dedee8;
}

/* ============================================================
   HOME BAND
   ============================================================ */

.home-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(139, 0, 0, 0.32);
  background: rgba(139, 0, 0, 0.32);
}

.home-band article {
  min-height: 16rem;
  padding: clamp(1.3rem, 4vw, 2.3rem);
  background: rgba(12, 14, 19, 0.92);
}

.home-band span {
  color: #8b0000;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.home-band h2 {
  margin: 0.8rem 0 0;
  color: #ededed;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.home-band p {
  margin: 1rem 0 0;
  color: #a8a8bb;
  line-height: 1.65;
}

.home-band a {
  color: #ededed;
  font-weight: 800;
}

/* ============================================================
   CONTENT PAGES
   ============================================================ */

.content-page {
  padding: 11rem 1rem 5rem;
}

.content-page-inner {
  width: min(100%, 56rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(139, 0, 0, 0.28);
  border-radius: 8px;
  background: rgba(13, 15, 22, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.section-kicker {
  margin: 0 0 0.9rem;
  color: #cc4a4a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-page-title {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.content-page-lead {
  margin: 1.1rem 0 0;
  color: #d0d2dd;
  font-size: 1.08rem;
  line-height: 1.7;
}

.content-page-body {
  margin-top: 1.8rem;
}

.content-page-body p {
  margin: 0 0 1rem;
  color: #aeb3c2;
  line-height: 1.75;
}

.rich-page-body {
  color: #aeb3c2;
  line-height: 1.75;
}

.rich-page-body p {
  margin: 0 0 1rem;
}

.content-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.content-contact-form {
  margin-top: 1.8rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid rgba(139, 0, 0, 0.25);
  background: rgba(8, 9, 13, 0.98);
  padding: 3rem clamp(1rem, 5vw, 4rem);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #c0c0cc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 1.8rem;
  height: 1.8rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-legal {
  max-width: 54rem;
  margin: 0;
  color: #3c3c52;
  font-size: 0.65rem;
  line-height: 1.6;
}

.footer-copy {
  margin: 0;
  color: #2e2e40;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    border-bottom-width: 2px;
  }

  .site-header-top {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
  }

  .header-mobile-menu,
  .header-mobile-search {
    display: block;
  }

  .header-mobile-login {
    display: grid;
  }

  .header-mobile-menu {
    position: relative;
    justify-self: start;
  }

  .header-social,
  .site-nav,
  .header-search,
  .language-switch,
  .header-login-btn,
  .header-user-chip {
    display: none;
  }

  .header-actions {
    position: relative;
    justify-self: end;
    gap: 0.55rem;
  }

  .header-brand {
    justify-self: center;
    gap: 0.7rem;
  }

  .site-shell {
    padding-top: 7.2rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-brand {
    gap: 0.6rem;
  }

  .header-brand img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .brand-lockup {
    align-items: flex-start;
    white-space: normal;
  }

  .brand-title {
    font-size: 0.78rem;
  }

  .brand-subtitle {
    font-size: 0.54rem;
  }

  .site-shell {
    padding-top: 6.9rem;
  }
}

/* ============================================================
   AUTH PAGES
   ============================================================ */

.auth-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(rgba(5, 6, 10, 0.88), rgba(5, 6, 10, 0.94)),
    url("../assets/background.jpg") center / cover fixed;
}

.auth-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(139, 0, 0, 0.18), transparent 32rem);
}

.auth-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: clamp(1.6rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
  border: 1px solid rgba(139, 0, 0, 0.4);
  border-radius: 8px;
  background: rgba(18, 20, 30, 0.97);
  box-shadow: 0 0 60px rgba(139, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.auth-brand {
  display: block;
  margin: 0 auto 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.auth-brand img {
  width: 3.2rem;
  height: 3.2rem;
  filter: drop-shadow(0 0 14px rgba(139, 0, 0, 0.5));
}

.auth-title {
  margin: 0;
  color: #eaeaea;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-error {
  margin: 1rem 0 0;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(220, 38, 38, 0.5);
  border-radius: 6px;
  background: rgba(139, 0, 0, 0.12);
  color: #f87171;
  font-size: 0.8rem;
  text-align: left;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.4rem;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  color: #8888a4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(12, 14, 19, 0.9);
  color: #e0e0ec;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(12, 14, 19, 0.9);
  color: #e0e0ec;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-field input:focus {
  border-color: rgba(139, 0, 0, 0.7);
}

.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(139, 0, 0, 0.7);
}

.form-field ul.errorlist {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: #f87171;
  font-size: 0.74rem;
}

.contact-success {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  min-height: 2.8rem;
  border: none;
  border-radius: 8px;
  background: #8b0000;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.auth-submit:hover {
  background: #a81010;
}

.auth-submit-outline {
  background: transparent;
  border: 1px solid rgba(139, 0, 0, 0.5);
  color: #e8c0c0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.2rem 0;
  color: #3a3a52;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-sso-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 2.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(18, 20, 30, 0.7);
  color: #c0c0d8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.15s, background 0.15s;
}

.auth-sso-button:hover {
  border-color: rgba(139, 0, 0, 0.5);
  background: rgba(139, 0, 0, 0.1);
}

/* ============================================================
   PROMO QR PAGE
   ============================================================ */

.promo-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5rem 1rem 2rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 6, 10, 0.84), rgba(5, 6, 10, 0.9)),
    url("../assets/background.jpg") center / cover fixed;
}

.promo-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 0, 0, 0.22), transparent 32rem),
    linear-gradient(180deg, rgba(12, 14, 19, 0.1), rgba(12, 14, 19, 0.78));
}

.language-controls {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.language-button {
  min-width: 2.9rem;
  min-height: 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(18, 20, 30, 0.92);
  color: #8c8ca4;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-button.active,
.language-button:hover {
  border-color: var(--accent);
  background: rgba(139, 0, 0, 0.18);
  color: #f0c0c0;
}

.promo-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: clamp(1.6rem, 5vw, 2.75rem) clamp(1.25rem, 5vw, 2.25rem);
  border: 1px solid rgba(139, 0, 0, 0.45);
  border-radius: 8px;
  background: rgba(18, 20, 30, 0.96);
  box-shadow:
    0 0 70px rgba(139, 0, 0, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.65);
  text-align: center;
}

.promo-logo {
  display: block;
  width: clamp(4.5rem, 18vw, 5.5rem);
  height: clamp(4.5rem, 18vw, 5.5rem);
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 0 18px rgba(139, 0, 0, 0.5));
}

.promo-title {
  margin: 0;
  color: #eaeaea;
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.imperial-rule {
  height: 2px;
  margin: 1.6rem 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.promo-copy {
  margin: 0 0 1.75rem;
  color: #8f8faa;
  font-size: 0.86rem;
  line-height: 1.7;
}

.promo-copy strong {
  color: #c4c4dc;
  font-weight: 700;
}

.promo-actions {
  display: grid;
  gap: 0.85rem;
}

.action-button {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.55rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.action-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.action-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.action-button-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 0 22px rgba(88, 101, 242, 0.34);
}

.action-button-instagram {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 0 22px rgba(224, 80, 90, 0.32);
}

.action-button-website {
  border-color: rgba(139, 0, 0, 0.5);
  background: rgba(139, 0, 0, 0.14);
  color: #e8c0c0;
}

.action-button-register {
  border-color: rgba(90, 90, 114, 0.5);
  background: rgba(26, 29, 39, 0.9);
  color: #a8a8c8;
}

.action-button-discord:hover,
.action-button-instagram:hover,
.action-button-website:hover,
.action-button-register:hover {
  transform: translateY(-1px);
}

.action-button-muted {
  border-color: #2a2d3e;
  background: #1a1d27;
  color: #a0a0b8;
  cursor: default;
}

.wip-badge {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(139, 0, 0, 0.5);
  border-radius: 4px;
  background: rgba(10, 10, 16, 0.85);
  color: #d24a4a;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.promo-footer {
  margin: 1.75rem 0 0;
  color: #45455a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   EMMY LINK PAGE
   ============================================================ */

.emmy-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(38, 88, 97, 0.18), rgba(14, 30, 39, 0.78)),
    radial-gradient(circle at top, rgba(255, 240, 205, 0.32), transparent 24rem),
    url("../assets/emmy-background.jpg") center / cover no-repeat fixed,
    linear-gradient(180deg, #4f8e92 0%, #17313a 100%);
}

.emmy-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(227, 248, 246, 0.06), rgba(5, 18, 26, 0.66)),
    radial-gradient(circle at 15% 25%, rgba(255, 211, 177, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(226, 251, 255, 0.18), transparent 26rem);
}

.emmy-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.32;
}

.emmy-glow-left {
  left: -7rem;
  bottom: -8rem;
  background: rgba(255, 195, 152, 0.7);
}

.emmy-glow-right {
  top: -8rem;
  right: -8rem;
  background: rgba(175, 232, 240, 0.55);
}

.emmy-card {
  position: relative;
  z-index: 1;
  width: min(100%, 68rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(16rem, 30vw, 27rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(236, 245, 244, 0.22);
  border-radius: 2rem;
  background: rgba(27, 49, 58, 0.42);
  box-shadow:
    0 2rem 4rem rgba(5, 20, 27, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  overflow: hidden;
}

.emmy-portrait {
  position: relative;
  min-height: clamp(24rem, 42vw, 36rem);
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 236, 222, 0.04), rgba(5, 12, 18, 0.48)),
    radial-gradient(circle at top, rgba(255, 231, 198, 0.4), transparent 50%),
    rgba(18, 28, 33, 0.72);
}

.emmy-portrait::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 179, 120, 0.24), transparent 70%);
  filter: blur(18px);
}

.emmy-portrait-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 12, 18, 0.34)),
    url("../assets/emmy-card-photo.png") center top / cover no-repeat,
    linear-gradient(180deg, rgba(225, 230, 232, 0.85), rgba(76, 83, 97, 0.65));
  transform: scale(1.02);
}

.emmy-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  padding: clamp(0.3rem, 1vw, 0.7rem) clamp(0.1rem, 0.8vw, 0.5rem);
}

.emmy-kicker {
  margin: 0;
  color: rgba(233, 245, 246, 0.82);
  font-size: clamp(0.72rem, 0.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.emmy-title {
  width: 100%;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: clamp(0.02em, 0.25vw, 0.05em);
  color: #fff2dd;
  text-align: left;
  white-space: nowrap;
  text-shadow: 0 0.35rem 1.5rem rgba(23, 42, 49, 0.35);
  background: linear-gradient(90deg, #e6a443 0%, #cf6f78 32%, #ab4da6 60%, #f0b64a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emmy-intro {
  width: 100%;
  max-width: 18em;
  margin: 0;
  color: #f5f8f8;
  font-family: "Lobster Two", cursive;
  font-size: clamp(1.2rem, 2.1vw, 2.05rem);
  line-height: 1.18;
  text-align: left;
  text-shadow:
    0 0 0.16em rgba(255, 255, 255, 0.85),
    0 0.2rem 0.8rem rgba(15, 34, 42, 0.45);
}

.emmy-links {
  display: grid;
  gap: 0.8rem;
}

.emmy-link {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.25rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 1.1rem 2rem rgba(10, 23, 30, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.emmy-link-copy {
  min-width: 0;
}

.emmy-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.5rem 2.2rem rgba(10, 23, 30, 0.3);
  border-color: rgba(255, 255, 255, 0.34);
}

.emmy-link-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
}

.emmy-link-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.emmy-link-label,
.emmy-link-handle {
  display: block;
  min-width: 0;
}

.emmy-link-label {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emmy-link-handle {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.96);
}

.emmy-link-instagram {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.92), rgba(188, 24, 136, 0.92));
}

.emmy-link-tiktok {
  background: linear-gradient(135deg, rgba(15, 16, 18, 0.94), rgba(54, 212, 209, 0.6));
}

.emmy-credit {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(16, 34, 41, 0.46);
  border: 1px solid rgba(240, 246, 246, 0.15);
  color: rgba(245, 249, 249, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.emmy-credit img {
  width: 1.6rem;
  height: 1.6rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 48rem) {
  .site-header-top {
    grid-template-columns: auto 1fr auto;
  }

  .header-brand {
    flex-direction: row;
    font-size: 0.62rem;
  }

  .header-brand img {
    width: 2rem;
    height: 2rem;
  }

  .home-hero {
    min-height: 78vh;
    padding-top: 2rem;
  }

  .home-band {
    grid-template-columns: 1fr;
  }

  .promo-shell {
    align-items: start;
    padding-top: 4.5rem;
  }

  .emmy-shell {
    padding: 1rem 1rem 1.5rem;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(38, 88, 97, 0.18), rgba(14, 30, 39, 0.78)),
      radial-gradient(circle at top, rgba(255, 240, 205, 0.32), transparent 24rem),
      url("../assets/emmy-background.jpg") center / cover no-repeat,
      linear-gradient(180deg, #4f8e92 0%, #17313a 100%);
  }

  .emmy-card {
    grid-template-columns: 1fr;
    width: min(100%, 34rem);
    border-radius: 1.6rem;
    padding: 1rem;
  }

  .emmy-portrait {
    min-height: 23rem;
  }

  .emmy-copy {
    gap: 0.9rem;
    padding: 0.25rem 0.15rem 0;
  }

  .emmy-kicker {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .emmy-title {
    width: 100%;
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    letter-spacing: 0.02em;
    text-align: center;
    white-space: nowrap;
  }

  .emmy-intro {
    max-width: none;
    font-size: clamp(1.05rem, 5.3vw, 1.5rem);
    line-height: 1.16;
    text-align: center;
  }

  .emmy-link {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    row-gap: 0.15rem;
  }

  .emmy-link-copy {
    display: grid;
    gap: 0.15rem;
  }

  .emmy-link-handle {
    grid-column: 2;
    justify-self: start;
  }

  .language-controls {
    top: 1rem;
    right: 1rem;
  }

  .action-button {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 30rem) {
  .site-header-top {
    padding: 0.65rem 0.85rem;
  }

  .emmy-title {
    font-size: clamp(1.3rem, 8vw, 1.75rem);
    line-height: 1;
    white-space: nowrap;
  }

  .emmy-intro {
    font-size: clamp(0.96rem, 6.4vw, 1.2rem);
    line-height: 1.14;
  }

  .emmy-portrait {
    min-height: 15rem;
  }

  .emmy-link {
    min-height: 4.35rem;
    padding: 0.75rem 0.8rem;
    gap: 0.7rem;
  }

  .emmy-link-icon {
    width: 3rem;
    height: 3rem;
  }

  .emmy-link-icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .emmy-link-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .emmy-link-handle {
    font-size: 0.82rem;
  }

  .emmy-credit {
    max-width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .site-nav {
    gap: 0.5rem 0.8rem;
    padding: 0.5rem 0.85rem;
  }
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 5vw, 4rem) 6rem;
}

.blog-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.blog-header-inner {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.blog-header-inner h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  color: #f0f0f0;
  letter-spacing: 0.04em;
}

.section-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  width: 100%;
  order: -1;
}

/* Language toggle (blog + article) */

.lang-toggle {
  display: flex;
  gap: 0.3rem;
  margin-left: auto;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.12s, border-color 0.12s;
}

.lang-btn.active,
.lang-btn:hover {
  color: #fff;
  border-color: rgba(139, 0, 0, 0.6);
}

/* Category filter chips */

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-chip {
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}

.cat-chip.active,
.cat-chip:hover {
  color: #f0f0f0;
  border-color: rgba(139, 0, 0, 0.55);
  background: rgba(139, 0, 0, 0.12);
}

/* Post grid */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color 0.15s;
}

.blog-card:hover {
  border-color: rgba(139, 0, 0, 0.45);
}

.blog-card-img img {
  width: 100%;
  height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.2rem 1.4rem 1.4rem;
  gap: 0.5rem;
}

.blog-card-cat {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: #eee;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #fff;
  text-decoration: underline;
}

.blog-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.7rem;
  color: #666680;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

/* Pagination */

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2.5rem;
}

.pager-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.12s, border-color 0.12s;
}

.pager-btn:hover {
  color: #fff;
  border-color: rgba(139, 0, 0, 0.5);
}

.pager-info {
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-empty {
  padding-top: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

/* ---- Blog article (detail) ---- */

.blog-article {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 5vw, 3rem) 6rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text);
}

.blog-article-title {
  margin: 0.6rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  color: #f2f2f2;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: #666680;
}

.blog-article-header {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.tag-chip {
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
}

.edit-post-link {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(139, 0, 0, 0.4);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0a0a0;
  text-decoration: none;
  transition: background 0.15s;
}

.edit-post-link:hover {
  background: rgba(139, 0, 0, 0.18);
}

.blog-article-cover img {
  width: 100%;
  max-height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: block;
}

.blog-article-body {
  color: #cccce0;
  font-size: 1rem;
  line-height: 1.8;
}

.blog-article-body p {
  margin: 0 0 1.4em;
}

.blog-article-body h2,
.blog-article-body h3 {
  color: #f0f0f0;
  margin: 2em 0 0.6em;
}

.blog-article-body a {
  color: #e08080;
  text-decoration: underline;
}

/* Blog comments */

.blog-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comments-title {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: #ddd;
}

.comment-card {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-2);
  margin-bottom: 0.8rem;
}

.comment-author {
  display: flex;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.comment-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #bbbbd0;
}

/* Blog form extras */

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 36rem) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .lang-toggle {
    margin-left: 0;
  }
}
