:root {
  --bg: #050505;
  --surface: rgba(18, 18, 18, 0.84);
  --surface-strong: rgba(10, 10, 10, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --gold: #d4af37;
  --gold-soft: #f2dd8f;
  --white: #f8f7f3;
  --muted: #d8d2c4;
  --border: rgba(212, 175, 55, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 32%), linear-gradient(180deg, #070707 0%, #040404 52%, #090909 100%);
  color: var(--white);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 35%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 28%);
}

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

.page-shell {
  position: relative;
  z-index: 1;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(242, 221, 143, 0.3);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.92);
  color: var(--gold-soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(242, 221, 143, 0.55);
  color: var(--white);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
/* Cinzel font */
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/Cinzel-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/Cinzel-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../fonts/Cinzel-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 600;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 3vw, 6.4rem);
  line-height: 0.98;
  max-width: 10ch;
}

.section-kicker,
.eyebrow,
.hero-card-label {
  text-transform: uppercase;
}

.main-nav a,
.language-toggle,
.language-option,
.button,
.section-kicker,
.eyebrow,
.hero-card-label {
  letter-spacing: 0.08em;
}

.eyebrow,
.section-kicker,
.hero-card-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.hero-description,
.section-copy p,
.feature-card p,
.cta-text,
.site-footer p,
.countdown-text,
.countdown-date-line,
.countdown-ended {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.section-title,
.section-grid h2,
.cta-box h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #b89128, #f0dd9b);
  color: #111;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.24);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.center-actions {
  justify-content: center;
}

@media (max-width: 720px) {
  .hero-actions {
    justify-content: center;
  }
}
input,
select,
textarea,
.form-control,
.form-select {
  width: 100%;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.92);
  color: var(--white);
  box-shadow: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color-scheme: dark;
}

select option {
  background: #121212;
  color: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--muted);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(242, 221, 143, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(242, 221, 143, 0.45);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.06));
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-links {
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .social-link {
    width: 40px;
    height: 40px;
  }
}
.hero-panel,
.feature-card,
.cta-box,
.hero-card,
.stat-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
}

.hero-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.stat-card {
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1.9rem;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
}

.feature-card h3 {
  color: var(--gold-soft);
  font-size: 1.35rem;
  line-height: 1.35;
}

.feature-card p {
  margin-top: 14px;
}

.cta-box {
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.03));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-at-top {
  background: rgba(5, 5, 5, 0.72);
}

.navbar {
  --bs-navbar-color: rgba(248, 247, 243, 0.82);
  --bs-navbar-hover-color: var(--gold-soft);
  --bs-navbar-active-color: var(--gold-soft);
  --bs-navbar-brand-color: var(--white);
  --bs-navbar-brand-hover-color: var(--white);
  --bs-navbar-toggler-border-color: transparent;
}

.navbar-nav {
  padding-left: 0;
  list-style: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 106px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.18));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.main-nav a {
  color: rgba(248, 247, 243, 0.82);
  font-size: 0.84rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-soft);
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-dropdown {
  position: relative;
  min-width: 88px;
}

.language-toggle,
.language-option {
  width: 100%;
  border: 0;
  color: var(--white);
  text-align: left;
}

.language-toggle {
  position: relative;
  min-height: 46px;
  padding: 0.75rem 2.75rem 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(242, 221, 143, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.language-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-soft);
  border-bottom: 2px solid var(--gold-soft);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
}

.language-dropdown.is-open .language-toggle::after {
  transform: translateY(-35%) rotate(-135deg);
}

.language-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 221, 143, 0.55);
}

.language-current {
  display: block;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  min-width: 88px;
  padding: 8px;
  border: 1px solid rgba(242, 221, 143, 0.22);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-dropdown.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(242, 221, 143, 0.14);
  color: var(--gold-soft);
}

.header-actions {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 14px 22px;
    grid-column: 1/-1;
    margin: 0;
  }
  .language-switcher {
    justify-content: flex-end;
  }
  .header-actions {
    width: auto;
    justify-content: flex-end !important;
  }
}
@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  .header-inner {
    display: flex;
    gap: 14px;
    min-height: 88px;
  }
  .brand-logo {
    width: 72px;
    height: 72px;
  }
  .header-actions {
    margin-left: auto;
    gap: 12px !important;
  }
  .social-links {
    gap: 8px;
  }
  .language-dropdown {
    min-width: 76px;
  }
  .language-toggle {
    min-height: 42px;
    padding: 0.65rem 2.4rem 0.65rem 0.9rem;
  }
  .language-menu {
    right: 0;
    min-width: 76px;
  }
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 40px;
}

.footer-inner {
  text-align: center;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.52) 42%, rgba(5, 5, 5, 0.2) 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background picture,
.hero-background img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  min-height: 100vh;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 640px;
}

.hero-description {
  max-width: 62ch;
  margin: 24px 0 0;
}

@media (max-width: 720px) {
  .hero-section {
    min-height: 100svh;
  }
  .hero-section::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.82) 100%);
  }
  .hero-container {
    padding-top: 120px;
    padding-bottom: 40px;
    align-items: flex-end;
  }
}
.countdown-section {
  padding-top: 12px;
}

.countdown-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.countdown-date-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 1rem;
}

.countdown-date-line strong {
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.countdown-card {
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.countdown-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.countdown-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-ended {
  margin: 18px 0 0;
  text-align: center;
}

@media (max-width: 1080px) {
  .countdown-box {
    grid-template-columns: 1fr;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .countdown-box,
  .countdown-card {
    border-radius: 20px;
  }
  .countdown-grid {
    grid-template-columns: 1fr;
  }
}
.content-section {
  padding: 42px 0 42px;
}

.section-grid {
  margin-top: 0;
}

.section-copy p:first-child,
.cta-text {
  margin-top: 0;
}

.accent-section {
  padding-top: 68px;
}

.feature-grid {
  margin-top: 34px;
}

.cta-section {
  padding: 68px 0 96px;
}

.cta-section .cta-box {
  text-align: left;
}

.cta-poster-wrap {
  max-width: 360px;
  margin: 0 auto;
}

.cta-poster {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.cta-details {
  margin-top: 24px;
}

.cta-detail-card {
  background: rgba(255, 255, 255, 0.04);
}

.cta-meta-list,
.cta-info-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cta-meta-list li,
.cta-info-list li {
  color: var(--muted);
  line-height: 1.7;
}

.cta-meta-list li + li,
.cta-info-list li + li {
  margin-top: 14px;
}

.cta-meta-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-info-list li {
  position: relative;
  padding-left: 24px;
}

.cta-info-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b89128, #f0dd9b);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

.cta-box .hero-actions {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .feature-card,
  .cta-box {
    border-radius: 20px;
  }
  .cta-box {
    padding: 30px 20px;
    text-align: center;
  }
  .cta-meta-list strong {
    margin-bottom: 6px;
  }
  .cta-info-list li {
    padding-left: 22px;
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */