:root {
  /* Primary Brand Colors */
  --zen-green: #48A23F;
  --zen-green-dark: #3a8533;
  --zen-green-light: #5cb853;
  --zen-green-glow: rgba(72, 162, 63, 0.45);
  --zen-grey: #3D4543;
  --zen-grey-dark: #272d2b;
  --zen-grey-light: #525c59;
  --zen-white: #FFFFFF;

  /* Secondary Brand Colors */
  --zen-lime: #AECB31;
  --zen-yellow: #E7E122;
  --zen-gold: #F5A800;

  /* UI Palette */
  --bg-dark-1: #101714;
  --bg-dark-2: #16221c;
  --bg-card: rgba(30, 42, 36, 0.7);
  --bg-card-hover: rgba(38, 55, 47, 0.85);
  --border-card: rgba(72, 162, 63, 0.25);
  --border-card-hover: rgba(174, 203, 49, 0.6);
  --text-main: #FFFFFF;
  --text-muted: #b0bfb8;
  --text-dim: #7d8e86;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-glow: 0 10px 30px -5px rgba(72, 162, 63, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark-1);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Canvas & Glow */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.glow-top-left {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--zen-green) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--zen-lime) 0%, transparent 70%);
}

.glow-center {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--zen-green-dark) 0%, transparent 70%);
  opacity: 0.15;
}

/* Layout Wrapper */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Top Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(16, 23, 20, 0.75);
  border-bottom: 1px solid rgba(72, 162, 63, 0.2);
  transition: var(--transition);
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(72, 162, 63, 0.3));
  transition: var(--transition);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--zen-white);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--zen-lime);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-link-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--zen-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.nav-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-btn-outline:hover {
  background: rgba(72, 162, 63, 0.15);
  border-color: var(--zen-green);
  color: var(--zen-white);
  transform: translateY(-2px);
}

.nav-btn-primary {
  background: linear-gradient(135deg, var(--zen-green) 0%, var(--zen-lime) 100%);
  color: #0b1a0e;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(72, 162, 63, 0.4);
}

.nav-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(72, 162, 63, 0.6);
  transform: translateY(-2px);
}

.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #0b1a0e;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(72, 162, 63, 0.4);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 26, 14, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(11, 26, 14, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 26, 14, 0); }
}

/* Hamburger & Sliding Side Drawer */
.menu-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--zen-white);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.menu-toggle-btn:hover {
  background: var(--zen-green);
  border-color: var(--zen-green);
  color: #ffffff;
}

.side-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.side-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #141c18;
  border-left: 1px solid rgba(72, 162, 63, 0.3);
  z-index: 999;
  padding: 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zen-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-close:hover {
  color: var(--zen-white);
  background: rgba(255, 255, 255, 0.1);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-nav-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.drawer-nav-item a:hover {
  background: rgba(72, 162, 63, 0.15);
  border-color: var(--zen-green);
  color: var(--zen-lime);
  transform: translateX(5px);
}

.drawer-video-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(72, 162, 63, 0.2);
}

.drawer-video-box h4 {
  font-size: 0.95rem;
  color: var(--zen-lime);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-video-box iframe {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  border: none;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Hero Banner Showcase */
.banner-showcase {
  width: 100%;
  position: relative;
}

.banner-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(72, 162, 63, 0.18);
  border: 1px solid rgba(72, 162, 63, 0.35);
  background: #1a2520;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-card-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(72, 162, 63, 0.3);
}

.banner-img-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Meta Bar Below Banner */
.event-meta-bar {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.meta-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

.meta-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(72, 162, 63, 0.18);
  color: var(--zen-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.meta-info-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zen-white);
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  padding: 10px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(72, 162, 63, 0.15);
  border: 1px solid rgba(72, 162, 63, 0.35);
  color: var(--zen-lime);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.countdown-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  color: var(--zen-white);
}

.countdown-heading span {
  background: linear-gradient(135deg, var(--zen-green-light) 0%, var(--zen-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Circular / Card Countdown Grid */
.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.timer-box {
  position: relative;
  width: 135px;
  height: 155px;
  background: linear-gradient(180deg, rgba(30, 44, 38, 0.85) 0%, rgba(19, 28, 24, 0.95) 100%);
  border: 1px solid rgba(72, 162, 63, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}

.timer-box:hover {
  border-color: var(--zen-lime);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(72, 162, 63, 0.3);
}

.timer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--zen-green), var(--zen-lime));
}

.timer-num {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--zen-white);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(72, 162, 63, 0.4);
}

.timer-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--zen-lime);
}

.timer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}

.cal-btn:hover {
  background: rgba(72, 162, 63, 0.2);
  border-color: var(--zen-green);
  color: var(--zen-white);
  transform: translateY(-2px);
}

/* Document Cards / Action Center */
.cards-section {
  padding: 10px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.action-card {
  position: relative;
  background: linear-gradient(180deg, rgba(28, 40, 34, 0.75) 0%, rgba(18, 25, 22, 0.85) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--zen-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--zen-lime);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 30px rgba(72, 162, 63, 0.25);
}

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

.card-icon-container {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.action-card:hover .card-icon-container {
  transform: scale(1.1) translateY(-2px);
}

.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--zen-white);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.action-card:hover .card-title {
  color: var(--zen-lime);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.card-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(72, 162, 63, 0.15);
  border: 1px solid rgba(72, 162, 63, 0.4);
  color: var(--zen-white);
  font-size: 0.86rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.action-card:hover .card-btn-action {
  background: var(--zen-green);
  border-color: var(--zen-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(72, 162, 63, 0.4);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(72, 162, 63, 0.2) 0%, rgba(26, 38, 32, 0.8) 100%);
  border: 1px solid rgba(72, 162, 63, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-glow);
}

.cta-text-content {
  flex: 1;
  min-width: 280px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zen-lime);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--zen-white);
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-btn-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--zen-green) 0%, var(--zen-lime) 100%);
  color: #0b1a0e;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(72, 162, 63, 0.45);
  transition: var(--transition);
  white-space: nowrap;
}

.cta-btn-join:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(72, 162, 63, 0.6);
}

/* Info Support Grid */
.support-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  backdrop-filter: blur(10px);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(72, 162, 63, 0.15);
  color: var(--zen-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-box-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zen-white);
  margin-bottom: 6px;
}

.info-box-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.info-box-content a {
  color: var(--zen-lime);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-box-content a:hover {
  text-decoration: underline;
  color: var(--zen-white);
}

/* Site Footer */
.site-footer {
  border-top: 1px solid rgba(72, 162, 63, 0.2);
  background: rgba(14, 20, 17, 0.95);
  padding: 30px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.footer-brand-tag {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-copyright {
  color: var(--text-muted);
}

.footer-powered {
  color: var(--text-dim);
}

.footer-powered a {
  color: var(--zen-lime);
  text-decoration: none;
  font-weight: 600;
}

.footer-powered a:hover {
  text-decoration: underline;
}

/* Modal Dialogs */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #19241f;
  border: 1px solid rgba(72, 162, 63, 0.35);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(72, 162, 63, 0.2);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #19241f;
  z-index: 10;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--zen-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--zen-green);
  color: #fff;
}

.modal-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resolution-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(72, 162, 63, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.resolution-item:hover {
  border-color: var(--zen-lime);
  background: rgba(72, 162, 63, 0.06);
}

.res-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.res-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.res-tag-ordinary {
  background: rgba(72, 162, 63, 0.2);
  color: var(--zen-lime);
  border: 1px solid rgba(72, 162, 63, 0.4);
}

.res-tag-special {
  background: rgba(245, 168, 0, 0.2);
  color: var(--zen-gold);
  border: 1px solid rgba(245, 168, 0, 0.4);
}

.res-num {
  font-weight: 800;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.res-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zen-white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.res-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-card {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-lime));
  color: #0b1a0e;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zen-white);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #151e1a;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .nav-container {
    height: 70px;
  }

  .nav-desktop-links {
    display: none;
  }

  .countdown-grid {
    gap: 14px;
  }

  .timer-box {
    width: 110px;
    height: 130px;
  }

  .timer-num {
    font-size: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .main-container {
    padding: 0 16px;
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-logo-img {
    height: 42px;
  }

  .countdown-grid {
    gap: 10px;
  }

  .timer-box {
    width: calc(50% - 10px);
    height: 115px;
  }

  .timer-num {
    font-size: 2.2rem;
  }

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

  .cta-banner {
    padding: 24px 20px;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-btn-join {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}