/* ==========================================================================
   VARIABLES & THEME CONFIGURATION
   ========================================================================== */
:root {
  --bg-main: #0B0F17;
  --bg-surface: #131B2A;
  --bg-surface-hover: #1C263B;
  --bg-card: rgba(19, 27, 42, 0.7);
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --accent-cyan: #00D2FE;
  --accent-blue: #0072FF;
  --accent-crimson: #EF4444;
  --accent-gold: #F59E0B;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(0, 210, 254, 0.3);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap-max: 1200px;
  --wrap-padding: 32px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  overflow-x: hidden;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

/* Selection & Focus */
::selection {
  background: var(--accent-cyan);
  color: #000;
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
}

/* ==========================================================================
   LAYOUT CONTAINERS & GRIDS
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Ambient Background Glow */
.bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 210, 254, 0.12) 0%, rgba(11, 15, 23, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header.top {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 15px rgba(0, 210, 254, 0.3);
  object-fit: contain;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.topbar nav.desktop-nav,
.topbar nav:not(.mobile-nav-drawer) {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
}

.topbar nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar nav a:hover,
.topbar nav a.active {
  color: var(--accent-cyan);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
  z-index: 102;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-main);
  transition: stroke 0.25s ease;
}

.mobile-menu-btn:hover svg {
  stroke: var(--accent-cyan);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 84px;
  left: 0;
  width: 100%;
  background: rgba(11, 15, 23, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-bright);
  padding: 24px 32px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  flex-direction: column;
  gap: 16px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  pointer-events: none;
}

.mobile-nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-drawer a:hover {
  background: rgba(0, 210, 254, 0.1);
  color: var(--accent-cyan);
  border-color: var(--border-bright);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0, 210, 254, 0.1);
  border: 1px solid rgba(0, 210, 254, 0.3);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero h1,
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dates,
.hero-content .dates {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 20px;
}

.dek,
.hero-content .dek {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */
section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
}

/* Profile Block Card */
.profile-block-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.profile-img-container {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.block-info-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.block-info-badge img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Block Cards (Facts & Origins) */
.block-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.block-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: 0 10px 25px rgba(0, 210, 254, 0.1);
}

.block-card .k {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.block-card .v {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================================
   CAROUSEL / SLIDE COMPONENT
   ========================================================================== */
.slide-section {
  position: relative;
}

.slide-container {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.slide.active {
  display: block;
}

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

.slide-year {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.slide-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 850px;
}

.slide-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.slide-btns {
  display: flex;
  gap: 12px;
}

.slide-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.slide-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active {
  background: var(--accent-cyan);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================================
   PULL QUOTE BLOCK
   ========================================================================== */
.pull-block {
  background: linear-gradient(135deg, rgba(0, 210, 254, 0.05) 0%, rgba(19, 27, 42, 0.8) 100%);
  border: 1px solid var(--border-bright);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 20px 20px 0;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

.pull-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-style: italic;
  line-height: 1.35;
  max-width: 850px;
  margin: 0 auto 20px;
}

.pull-block cite {
  font-style: normal;
  color: var(--accent-cyan);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ==========================================================================
   MEMBERSHIP CTA BANNER
   ========================================================================== */
.membership-cta-block {
  padding: 80px 0;
  position: relative;
  background: transparent;
}

.cta-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-glass-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 210, 254, 0.12), inset 0 1px 0 rgba(0, 210, 254, 0.2);
}

.cta-glow {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 210, 254, 0.18) 0%, rgba(0, 114, 255, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0, 210, 254, 0.1);
  border: 1px solid rgba(0, 210, 254, 0.3);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.25;
  font-weight: 800;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

.cta-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: #0B0F17;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 210, 254, 0.25);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 210, 254, 0.45);
  color: #000;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 0;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(0, 210, 254, 0.08) 0%, rgba(11, 15, 23, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  background: #ffffff;
  padding: 2px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 360px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 10px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-contact-item svg {
  stroke: var(--accent-cyan);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: var(--accent-cyan);
  color: #000000;
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

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

/* Laptop & Large Tablets (< 1024px) */
@media screen and (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-glass-card {
    padding: 36px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets & Mobile Screens (< 900px) */
@media screen and (max-width: 900px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-glass-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 28px;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-action {
    width: 100%;
  }

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

/* Mobile Screens (< 768px) */
@media screen and (max-width: 768px) {
  :root {
    --wrap-padding: 16px;
  }

  .topbar nav.desktop-nav,
  .topbar nav:not(.mobile-nav-drawer) {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 40px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .profile-img-container {
    height: 300px;
  }

  .pull-block {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }
}

/* Small Mobile Devices (< 480px) */
@media screen and (max-width: 480px) {
  .brand-title {
    font-size: 1.05rem;
  }

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

  .hero h1,
  .hero-content h1 {
    font-size: 2rem;
  }

  .dates,
  .hero-content .dates {
    font-size: 1rem;
  }

  .block-card {
    padding: 24px;
  }
}



/* ==========================================================================
  calender
   ========================================================================== */



    :root {
      --bg-main: #0B0F17;
      --bg-surface: #131B2A;
      --bg-surface-hover: #1C263B;
      --bg-card: rgba(19, 27, 42, 0.7);
      --text-main: #F1F5F9;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --accent-cyan: #00D2FE;
      --accent-blue: #0072FF;
      --accent-crimson: #EF4444;
      --accent-gold: #F59E0B;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-bright: rgba(0, 210, 254, 0.3);
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; background-color: var(--bg-main); }
    
    body {
      background: var(--bg-main);
      color: var(--text-main);
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection { background: var(--accent-cyan); color: #000; }

    :focus-visible {
      outline: 2px solid var(--accent-cyan);
      outline-offset: 4px;
    }

    /* Layout Wrappers */
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Ambient Glow */
    .bg-glow {
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 210, 254, 0.1) 0%, rgba(11, 15, 23, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* Header & Navigation */
    header.top {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 15, 23, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 84px;
    }

    .brand-logo-group {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
    }

    .brand-logo-img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid var(--accent-cyan);
      background: #fff;
      padding: 2px;
      box-shadow: 0 0 15px rgba(0, 210, 254, 0.3);
      object-fit: contain;
    }

    .brand-text { display: flex; flex-direction: column; }
    .brand-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--text-main); }
    .brand-subtitle { font-size: 0.75rem; color: var(--accent-cyan); letter-spacing: 0.05em; text-transform: uppercase; }

    .topbar nav { display: flex; gap: 32px; font-size: 0.9rem; font-weight: 500; }
    .topbar nav a { color: var(--text-muted); text-decoration: none; transition: color 0.25s ease; }
    .topbar nav a:hover, .topbar nav a.active { color: var(--accent-cyan); }

    @media (max-width: 768px) { .topbar nav { display: none; } }

    /* Page Header */
    .page-header {
      padding: 80px 0 40px;
      position: relative;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 99px;
      background: rgba(0, 210, 254, 0.1);
      border: 1px solid rgba(0, 210, 254, 0.3);
      color: var(--accent-cyan);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
    }

    .page-header h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 16px;
      background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .page-header p {
      color: var(--text-muted);
      font-size: 1.15rem;
      max-width: 650px;
    }

    /* Controls Bar */
    .controls-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .filter-tabs {
      display: flex;
      gap: 8px;
      background: rgba(19, 27, 42, 0.8);
      padding: 6px;
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
    }

    .tab-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      padding: 8px 18px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .tab-btn.active, .tab-btn:hover {
      background: var(--accent-cyan);
      color: #0B0F17;
    }

    .btn-sync {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .btn-sync:hover {
      border-color: var(--accent-cyan);
      color: var(--accent-cyan);
      transform: translateY(-2px);
    }

    /* Layout Sections */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 24px;
      margin-bottom: 60px;
    }

    /* Event Card */
    .event-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 28px;
      backdrop-filter: blur(10px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .event-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--accent-cyan);
      border-radius: 4px 0 0 4px;
    }

    .event-card.birthday::before { background: var(--accent-gold); }
    .event-card.payment::before { background: var(--accent-blue); }

    .event-card:hover {
      border-color: var(--border-bright);
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 210, 254, 0.12);
    }

    .event-date-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .date-box {
      background: rgba(0, 210, 254, 0.1);
      border: 1px solid rgba(0, 210, 254, 0.2);
      border-radius: 10px;
      padding: 6px 14px;
      text-align: center;
    }

    .date-box .month {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent-cyan);
      text-transform: uppercase;
    }

    .date-box .day {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .event-time {
      font-size: 0.85rem;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .event-title {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .event-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .event-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-subtle);
      padding-top: 16px;
      font-size: 0.85rem;
    }

    .tag {
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
    }

    /* Embedded Calendar Section */
    .calendar-embed-container {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 32px;
      margin-bottom: 80px;
    }

    .calendar-embed-container h3 {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .iframe-wrapper {
      width: 100%;
      height: 600px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .iframe-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: invert(90%) hue-rotate(180deg) contrast(110%);
    }

    /* Footer */
    .site-footer {
      background: #0B0F17;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: #94A3B8;
      font-size: 0.95rem;
      padding-top: 64px;
      padding-bottom: 32px;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    @media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
    @media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

    .footer-brand-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #F1F5F9; }
    .footer-brand-sub { font-size: 0.75rem; color: #00D2FE; letter-spacing: 0.05em; text-transform: uppercase; }
    .footer-heading { color: #F1F5F9; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { color: #94A3B8; text-decoration: none; transition: color 0.25s ease; }
    .footer-links a:hover { color: #00D2FE; }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.85rem;
    }
    
    
