/* ============================================================
   WonderfulKillers VTC — Main Stylesheet
   Colors: #CCA97A (gold) | #4A2C00 (deep brown)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #CCA97A;
  --gold-light: #dfc08e;
  --gold-dark: #a8853a;
  --brown: #4A2C00;
  --brown-light: #6b3e00;
  --bg-deep: #060402;
  --bg-dark: #0c0804;
  --bg-card: rgba(15, 10, 5, 0.85);
  --bg-glass: rgba(204, 169, 122, 0.07);
  --border-gold: rgba(204, 169, 122, 0.25);
  --text-primary: #f5e8d0;
  --text-secondary: #b8a080;
  --text-muted: #7a6040;
  --shadow-gold: 0 0 30px rgba(204,169,122,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 80px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--brown-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ════════════════════════════════════════
   PRELOADER
════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  width: 100px; height: 100px;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}
.preloader-logo img { width: 100%; border-radius: 50%; }

.preloader-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(204,169,122,0.15);
  border-radius: 2px; margin-top: 30px; overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloader-fill 2s ease forwards;
}
.preloader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; letter-spacing: 4px;
  color: var(--text-muted); margin-top: 16px;
  text-transform: uppercase;
  animation: preloader-fade 2s ease infinite;
}

@keyframes preloader-pulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(204,169,122,0.3)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(204,169,122,0.6)); }
}
@keyframes preloader-fill { from { width: 0; } to { width: 100%; } }
@keyframes preloader-fade {
  0%,100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(6,4,2,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--gold);
  text-decoration: none;
}
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border-gold); }
.nav-logo span { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .vtc-tag { font-size: 0.6rem; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; font-weight: 400; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto; list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition); text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(204,169,122,0.1);
}
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep) !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(204,169,122,0.35);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(6,4,2,0.97); backdrop-filter: blur(20px);
    padding: 20px 5% 30px;
    transform: translateY(-120%); opacity: 0;
    transition: var(--transition); pointer-events: none;
    border-bottom: 1px solid var(--border-gold);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 16px; border-bottom: 1px solid var(--border-gold); border-radius: 0; }
  .nav-links .nav-cta { border-radius: 8px; margin-top: 12px; text-align: center; }
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/hero-bg.png');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,4,2,0.35) 0%,
    rgba(6,4,2,0.55) 50%,
    rgba(6,4,2,0.95) 100%
  );
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

#particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 5%;
  animation: fade-up 1.2s ease 0.3s both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,169,122,0.12); border: 1px solid var(--border-gold);
  border-radius: 50px; padding: 6px 18px; margin-bottom: 24px;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: 'Outfit', sans-serif;
}
.hero-badge::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: -1px;
  line-height: 1.0;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.hero h1 span { display: block; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--text-secondary);
  margin: 16px 0 16px;
  font-family: 'Outfit', sans-serif; font-weight: 300; letter-spacing: 1px;
}
.hero-slogan {
  font-size: 0.95rem; color: var(--text-muted); font-style: italic;
  margin-bottom: 40px; letter-spacing: 0.5px;
}
.hero-slogan::before, .hero-slogan::after { content: '"'; color: var(--gold-dark); }

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.5px;
  cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(204,169,122,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(204,169,122,0.5);
  color: var(--bg-deep);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(204,169,122,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--gold-light);
}
.btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
section { padding: 100px 5%; }

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-dark); font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto; border-radius: 2px;
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--brown) 0%, #2d1a00 100%);
  padding: 40px 5%;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px; max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-value {
  font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.85) saturate(0.9);
}
.about-img-wrap::before {
  content: ''; position: absolute; inset: 0;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg); z-index: 1;
  box-shadow: inset 0 0 60px rgba(204,169,122,0.08);
}
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(6,4,2,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 12px 20px;
}
.about-img-badge strong {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; color: var(--gold); font-weight: 700;
}
.about-img-badge span { font-size: 0.75rem; color: var(--text-muted); }

.about-text .section-header { text-align: left; margin-bottom: 24px; }
.about-text .section-divider { margin: 0; }
.about-desc { color: var(--text-secondary); line-height: 1.8; margin: 20px 0 30px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.about-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-glass); border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.8rem; color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
}
.about-tag span { font-size: 1rem; }

@media(max-width:900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-text .section-header { text-align: center; }
  .about-text .section-divider { margin: 0 auto; }
  .about-tags { justify-content: center; }
}

/* ════════════════════════════════════════
   MEMBERS
════════════════════════════════════════ */
.members-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.member-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204,169,122,0.5);
  box-shadow: var(--shadow-gold);
}
.member-card:hover::before { opacity: 1; }

.member-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--gold); border: 2px solid var(--border-gold);
}
.member-name {
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.member-role {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(204,169,122,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
}
.member-role.owner {
  background: linear-gradient(135deg, rgba(74,44,0,0.5), rgba(204,169,122,0.2));
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════════════════════════════════════
   CONVOY CARDS
════════════════════════════════════════ */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; max-width: 1400px; margin: 0 auto;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer;
  backdrop-filter: blur(10px);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(204,169,122,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}
.event-banner {
  width: 100%; height: 180px; object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}
.event-card:hover .event-banner { filter: brightness(1); transform: scale(1.03); }
.event-banner-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--brown) 0%, #1a0d00 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.event-body { padding: 20px; }
.event-type-badge {
  display: inline-block; font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
  border: 1px solid var(--border-gold); border-radius: 4px;
  padding: 3px 10px; margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}
.event-name {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px; line-height: 1.3;
}
.event-route {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.event-route span { color: var(--gold-dark); }
.event-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border-gold);
  font-size: 0.75rem; color: var(--text-muted);
}
.event-attendance { color: var(--gold); font-weight: 600; }

/* ════════════════════════════════════════
   PAGE HERO (non-home pages)
════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 60px; text-align: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,4,2,0.4) 0%, rgba(6,4,2,0.97) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 5%; }
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem); font-weight: 900;
  background: linear-gradient(135deg, var(--text-primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}
.page-hero p { color: var(--text-secondary); font-size: 1rem; }

/* ════════════════════════════════════════
   TMP PROFILE CARD
════════════════════════════════════════ */
.vtc-profile-card {
  max-width: 900px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.vtc-cover {
  width: 100%; height: 250px; object-fit: cover;
  filter: brightness(0.7);
}
.vtc-cover-placeholder {
  width: 100%; height: 250px;
  background: linear-gradient(135deg, var(--brown) 0%, #1a0d00 100%);
}
.vtc-profile-body {
  padding: 30px 40px;
}
.vtc-profile-header {
  display: flex; align-items: flex-start; gap: 24px; margin-bottom: 30px;
  margin-top: -60px; position: relative; z-index: 1;
}
.vtc-logo-large {
  width: 100px; height: 100px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(204,169,122,0.3);
  background: var(--bg-dark); object-fit: cover; flex-shrink: 0;
}
.vtc-header-info { padding-top: 30px; }
.vtc-header-info h2 {
  font-size: 1.8rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 4px;
}
.vtc-header-info .vtc-slogan { color: var(--text-muted); font-style: italic; }

.vtc-stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px; margin: 24px 0;
}
.vtc-stat {
  text-align: center; padding: 16px;
  background: var(--bg-glass); border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}
.vtc-stat-val {
  font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--gold); display: block;
}
.vtc-stat-lbl { font-size: 0.7rem; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; }

.vtc-games { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.game-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(204,169,122,0.1); border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.8rem; color: var(--gold); font-family: 'Outfit', sans-serif;
}

/* ════════════════════════════════════════
   SERVER STATUS
════════════════════════════════════════ */
.servers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.server-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.server-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.server-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.server-dot.online { background: #4caf50; box-shadow: 0 0 8px #4caf5066; }
.server-dot.offline { background: #f44336; }
.server-info h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: var(--text-primary);
  margin-bottom: 2px;
}
.server-players { font-size: 0.75rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   DOWNLOAD PAGE
════════════════════════════════════════ */
.download-hero-box {
  text-align: center; max-width: 700px; margin: 0 auto 60px;
}
.download-icon {
  width: 100px; height: 100px; margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-gold);
  animation: download-float 3s ease-in-out infinite;
}
@keyframes download-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.release-card {
  max-width: 700px; margin: 0 auto 40px;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
}
.release-header {
  background: linear-gradient(135deg, var(--brown) 0%, #2d1a00 100%);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border-gold);
}
.release-version {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.release-date { font-size: 0.8rem; color: var(--text-muted); }
.release-body { padding: 24px 28px; }
.release-notes { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

.requirements-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.req-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 24px;
}
.req-card h4 {
  font-family: 'Outfit', sans-serif; color: var(--gold);
  margin-bottom: 12px; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.req-card ul { list-style: none; color: var(--text-secondary); font-size: 0.85rem; }
.req-card li { padding: 5px 0; border-bottom: 1px solid rgba(204,169,122,0.08); }
.req-card li:last-child { border: none; }
.req-card li::before { content: '▸ '; color: var(--gold-dark); }

/* ════════════════════════════════════════
   POLICY PAGES
════════════════════════════════════════ */
.policy-container {
  max-width: 860px; margin: 0 auto; padding: 60px 5%;
}
.policy-container h1 {
  font-size: 2.2rem; margin-bottom: 8px; color: var(--text-primary);
}
.policy-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
}
.policy-section p, .policy-section li {
  color: var(--text-secondary); line-height: 1.8; font-size: 0.9rem;
  margin-bottom: 8px;
}
.policy-section ul { padding-left: 20px; }
.policy-section ul li::marker { color: var(--gold-dark); }

/* ════════════════════════════════════════
   CONVOY PAGE
════════════════════════════════════════ */
.convoy-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 50px; flex-wrap: wrap;
}
.convoy-tab {
  padding: 10px 28px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border-gold);
  color: var(--text-muted); background: transparent;
  transition: var(--transition);
}
.convoy-tab.active, .convoy-tab:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep); border-color: var(--gold);
}

.upcoming-event-card {
  max-width: 800px; margin: 0 auto 24px;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 260px 1fr;
  transition: var(--transition);
}
.upcoming-event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(204,169,122,0.5);
}
.upcoming-event-card .event-banner { height: 100%; min-height: 160px; }
.upcoming-event-card .event-banner-placeholder { height: 100%; min-height: 160px; }
.upcoming-event-body { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.upcoming-event-body h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.event-details { font-size: 0.82rem; color: var(--text-muted); }
.event-detail-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.event-detail-icon { color: var(--gold-dark); font-size: 0.9rem; }

@media(max-width:640px) {
  .upcoming-event-card { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, transparent 0%, rgba(74,44,0,0.15) 100%);
  border-top: 1px solid var(--border-gold);
  padding: 60px 5% 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 50px; margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(204,169,122,0.15); color: var(--gold); border-color: var(--gold); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; border-top: 1px solid var(--border-gold);
  font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8,5,2,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 20px 5%; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { color: var(--text-secondary); font-size: 0.85rem; flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 10px 20px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; border: none;
  transition: var(--transition);
}
.cookie-accept {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
}
.cookie-decline {
  background: transparent; border: 1.5px solid var(--border-gold);
  color: var(--text-muted);
}
.cookie-accept:hover { box-shadow: 0 4px 20px rgba(204,169,122,0.3); }
.cookie-decline:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   LOADING PLACEHOLDER
════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.5s ease infinite;
  border-radius: 8px;
}
@keyframes skeleton-shimmer {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

/* ════════════════════════════════════════
   MISC UTILITY
════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.tag { 
  display: inline-flex; align-items: center;
  background: rgba(204,169,122,0.08); border: 1px solid var(--border-gold);
  border-radius: 50px; padding: 4px 14px;
  font-size: 0.75rem; color: var(--gold-dark);
  font-family: 'Outfit', sans-serif;
}

.no-results {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-style: italic;
}

/* ════════════════════════════════════════
   ENHANCED ANIMATIONS
════════════════════════════════════════ */

/* Staggered child reveals */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:0.05s; }
.stagger.visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:0.15s; }
.stagger.visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:0.25s; }
.stagger.visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:0.35s; }
.stagger.visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:0.45s; }
.stagger.visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:0.55s; }
.stagger.visible > *:nth-child(n+7) { opacity:1;transform:none;transition-delay:0.65s; }

/* Glitch text */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  background: transparent;
  -webkit-background-clip: text; background-clip: text;
}
.glitch::before {
  animation: glitch-1 3s infinite;
  color: var(--gold-light);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translateX(-3px);
  opacity: 0.6;
}
.glitch::after {
  animation: glitch-2 3s infinite;
  color: rgba(204,169,122,0.4);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translateX(3px);
  opacity: 0.4;
}
@keyframes glitch-1 {
  0%,94%,100% { clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); transform:translateX(-3px); }
  95% { clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%); transform:translateX(3px) skewX(5deg); }
  97% { clip-path: polygon(0 5%, 100% 5%, 100% 25%, 0 25%); transform:translateX(-5px); }
}
@keyframes glitch-2 {
  0%,94%,100% { clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); transform:translateX(3px); }
  95% { clip-path: polygon(0 70%, 100% 70%, 100% 90%, 0 90%); transform:translateX(-3px) skewX(-3deg); }
  97% { clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%); transform:translateX(5px); }
}

/* Neon glow pulse on gold elements */
@keyframes neon-pulse {
  0%,100% { box-shadow: 0 0 10px rgba(204,169,122,0.2), 0 0 30px rgba(204,169,122,0.1); }
  50% { box-shadow: 0 0 20px rgba(204,169,122,0.4), 0 0 60px rgba(204,169,122,0.2), 0 0 100px rgba(204,169,122,0.08); }
}
.neon-glow { animation: neon-pulse 3s ease-in-out infinite; }

/* Tilt card hover */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  will-change: transform;
}

/* Horizontal scroll marquee */
.marquee-wrap {
  overflow: hidden; position: relative;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-img {
  width: 320px; height: 200px; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
  filter: brightness(0.8) saturate(0.85);
  transition: var(--transition);
  cursor: pointer;
}
.marquee-img:hover { filter: brightness(1) saturate(1.1); transform: scale(1.03); }

/* Floating badge animation */
@keyframes float-badge {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Reveal with scale */
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity:1; transform: scale(1); }

/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; max-width: 1400px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 16/10;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8) saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,4,2,0.92) 100%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  color: var(--text-primary); font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(2,1,0,0.97); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 80px rgba(204,169,122,0.15);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: var(--gold); cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(204,169,122,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 1.5rem; width: 50px; height: 50px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(204,169,122,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   ABOUT / JOIN PAGES — TIMELINE
════════════════════════════════════════ */
.timeline {
  position: relative; max-width: 700px; margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative; margin-bottom: 50px; opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity:1; transform:none; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(204,169,122,0.6);
  animation: neon-pulse 3s ease-in-out infinite;
}
.timeline-year {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 3px; color: var(--gold-dark); text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  color: var(--text-primary); margin-bottom: 6px;
}
.timeline-item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

/* Values grid */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(204,169,122,0.1) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(204,169,122,0.5); }
.value-card:hover::after { opacity: 1; }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.value-title {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--gold); margin-bottom: 12px;
}
.value-desc { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

/* Join Form / Steps */
.join-steps {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
  counter-reset: step;
}
.join-step {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.join-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(204,169,122,0.5); }
.join-step-num {
  font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900;
  color: rgba(204,169,122,0.08); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.join-step h3 {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 10px; position: relative;
}
.join-step p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

.requirements-list {
  max-width: 700px; margin: 0 auto;
  list-style: none;
}
.requirements-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border-gold);
  color: var(--text-secondary); font-size: 0.9rem;
}
.requirements-list li:last-child { border: none; }
.req-icon {
  color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}

/* ════════════════════════════════════════
   CALENDAR (Convoy Schedule)
════════════════════════════════════════ */
.calendar-wrap {
  max-width: 1000px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); overflow: hidden;
}
.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid var(--border-gold);
  background: linear-gradient(135deg, var(--brown) 0%, #1a0e00 100%);
}
.calendar-nav button {
  background: rgba(204,169,122,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover { background: rgba(204,169,122,0.25); }
.calendar-month-lbl {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
}
.calendar-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
}
.calendar-day-header {
  padding: 14px 8px; text-align: center;
  font-family: 'Outfit', sans-serif; font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); border-bottom: 1px solid var(--border-gold);
  background: rgba(204,169,122,0.03);
}
.calendar-cell {
  min-height: 90px; padding: 8px 6px;
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative; transition: background 0.2s;
}
.calendar-cell:nth-child(7n) { border-right: none; }
.calendar-cell:hover { background: rgba(204,169,122,0.04); }
.calendar-cell.other-month .cell-num { opacity: 0.2; }
.calendar-cell.today { background: rgba(204,169,122,0.05); }
.calendar-cell.today .cell-num {
  background: var(--gold); color: var(--bg-deep);
  border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
}
.cell-num {
  font-family: 'Outfit', sans-serif; font-size: 0.78rem;
  font-weight: 600; color: var(--text-muted); margin-bottom: 4px;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
}
.cell-event {
  background: linear-gradient(135deg, var(--brown), rgba(204,169,122,0.2));
  border: 1px solid var(--border-gold);
  border-radius: 4px; padding: 2px 6px; margin-bottom: 2px;
  font-size: 0.65rem; color: var(--gold);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  cursor: pointer; transition: background 0.2s;
}
.cell-event:hover { background: rgba(204,169,122,0.3); }

/* Calendar event list (below) */
.calendar-events-list {
  max-width: 1000px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 16px;
}
.cal-event-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 16px 24px;
  cursor: pointer; transition: var(--transition);
}
.cal-event-row:hover { transform: translateX(6px); border-color: rgba(204,169,122,0.5); box-shadow: var(--shadow-gold); }
.cal-event-date {
  text-align: center; font-family: 'Outfit', sans-serif;
}
.cal-event-day { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cal-event-month { font-size: 0.65rem; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.cal-event-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cal-event-meta { font-size: 0.78rem; color: var(--text-muted); }
.cal-event-badge {
  white-space: nowrap; font-size: 0.7rem; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 20px; text-transform: uppercase;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
}
.cal-event-badge.upcoming { background: linear-gradient(135deg, #1a5c1a, #2e8b2e); color: #fff; }
.no-events-msg {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 0.9rem;
}

@media(max-width:640px) {
  .calendar-cell { min-height: 60px; }
  .cal-event-row { grid-template-columns: 50px 1fr; }
  .cal-event-badge { display: none; }
}

