/* ==========================================================================
   AIRBORN HIGH FIVE x20 — OFFICIAL WEBSITE STYLESHEET
   Style: Dark Fantasy / Lineage II Epic Modern UI
   ========================================================================== */

:root {
  --bg-main: #0a0c12;
  --bg-secondary: #0f131c;
  --bg-card: rgba(18, 23, 36, 0.75);
  --bg-card-hover: rgba(26, 33, 50, 0.85);
  --bg-glass: rgba(13, 17, 27, 0.65);
  
  --gold-primary: #e5b869;
  --gold-light: #fbe3a1;
  --gold-dark: #b88632;
  --gold-glow: rgba(229, 184, 105, 0.35);
  --gold-gradient: linear-gradient(135deg, #fbe3a1 0%, #e5b869 50%, #b88632 100%);
  
  --blue-neon: #38bdf8;
  --blue-glow: rgba(56, 189, 248, 0.25);
  --red-accent: #f43f5e;
  --green-online: #10b981;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-card: 1px solid rgba(229, 184, 105, 0.18);
  --border-card-hover: 1px solid rgba(229, 184, 105, 0.45);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  
  --font-serif: 'Cinzel', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 184, 105, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(56, 189, 248, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 184, 105, 0.15);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(229, 184, 105, 0.4));
  transition: var(--transition);
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(229, 184, 105, 0.7));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 4px;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #121008;
  box-shadow: 0 4px 18px rgba(229, 184, 105, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 184, 105, 0.55);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
}

.btn-primary:hover::after {
  left: 140%;
  transition: all 0.75s ease-in-out;
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(229, 184, 105, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(229, 184, 105, 0.12);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   Full-Screen Hero with Overlaid Header and Buttons
   ========================================================================== */
.hero-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 720px;
  min-height: 500px;
  overflow: hidden;
  background-color: #080b12;
  border-bottom: 1px solid rgba(229, 184, 105, 0.2);
}

.hero-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-screen-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.85) 0%, rgba(8, 11, 18, 0.35) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-screen-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(0deg, #080b12 0%, rgba(8, 11, 18, 0.8) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Header Overlaid on Picture (No Separate Black Box) */
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(229, 184, 105, 0.15);
}

.header-transparent.scrolled {
  position: fixed;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Slogan Overlaid on Picture */
.hero-screen-slogan {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 0 20px;
  pointer-events: none;
}

.hero-slogan-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 28px;
  background: rgba(8, 11, 18, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 184, 105, 0.45);
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 184, 105, 0.15);
}

.hero-slogan-decor {
  color: var(--gold-light);
  font-size: 0.95rem;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(229, 184, 105, 0.8));
}

.hero-slogan-text {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #f7dfa5 45%, #e5b869 80%, #c49635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
  white-space: nowrap;
}

/* Hero Section (Below Top Banner) */
.hero {
  position: relative;
  padding: 45px 0 35px;
  overflow: hidden;
  background: #080b12;
  border-bottom: 1px solid rgba(229, 184, 105, 0.1);
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(229, 184, 105, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(229, 184, 105, 0.1);
  border: 1px solid rgba(229, 184, 105, 0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 10px var(--green-online);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* Hero Banner Artwork Frame (fallback if used) */
.hero-banner-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(229, 184, 105, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 184, 105, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-banner-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 184, 105, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 184, 105, 0.35);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.05) 0%, transparent 60%, rgba(8, 11, 18, 0.5) 100%);
  border-radius: inherit;
}

/* Status Cards Widget */
.status-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.status-item:last-child {
  border-right: none;
}

.status-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(229, 184, 105, 0.1);
  border: 1px solid rgba(229, 184, 105, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-light);
}

.status-info {
  display: flex;
  flex-direction: column;
}

.status-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.status-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 8px var(--green-online);
}

/* Section Header */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(229, 184, 105, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 184, 105, 0.15);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 105, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(229, 184, 105, 0.12);
  border: 1px solid rgba(229, 184, 105, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 14px;
}

.card-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-list-item span.highlight {
  color: var(--gold-light);
  font-weight: 700;
}

/* Rates Grid Display */
.rates-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.rate-box {
  background: rgba(13, 17, 27, 0.7);
  border: 1px solid rgba(229, 184, 105, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.rate-title {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.rate-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}

.rate-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Interactive Tabs Component (For About / Wiki) */
.wiki-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: start;
}

.wiki-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wiki-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.wiki-tab-btn:hover {
  background: rgba(229, 184, 105, 0.08);
  color: var(--gold-light);
}

.wiki-tab-btn.active {
  background: rgba(229, 184, 105, 0.15);
  border-color: rgba(229, 184, 105, 0.35);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wiki-tab-btn .tab-icon {
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.wiki-content-area {
  min-height: 500px;
}

.wiki-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.wiki-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.wiki-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.wiki-box-header {
  border-bottom: 1px solid rgba(229, 184, 105, 0.18);
  padding-bottom: 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wiki-box-title {
  font-size: 1.45rem;
  color: #fff;
}

/* Data Tables */
.l2-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.l2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.l2-table th {
  background: rgba(229, 184, 105, 0.12);
  color: var(--gold-light);
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-bottom: 2px solid rgba(229, 184, 105, 0.3);
}

.l2-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  vertical-align: middle;
}

/* Prevent display and background-clip corruption when gold-text is on td */
.l2-table td.gold-text,
td.gold-text {
  display: table-cell !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--gold-light) !important;
  color: var(--gold-light) !important;
}

.l2-table tr:hover td {
  background: rgba(229, 184, 105, 0.05);
}

/* Step list */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(13, 17, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #121008;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Download Cards */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.download-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.download-card:hover {
  border-color: rgba(229, 184, 105, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.download-icon {
  font-size: 2.8rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.download-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}

.download-size {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-mirrors {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Modal Windows */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-box {
  background: var(--bg-secondary);
  border: var(--border-card);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 184, 105, 0.15);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
}

.modal-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(13, 17, 27, 0.8);
  border: 1px solid rgba(229, 184, 105, 0.25);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(229, 184, 105, 0.25);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.form-check input {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  background: #06070a;
  border-top: 1px solid rgba(229, 184, 105, 0.15);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(229, 184, 105, 0.08);
  border: 1px solid rgba(229, 184, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(229, 184, 105, 0.2);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
