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

:root {
  --bg-primary: #0b0d1a;
  --bg-secondary: #111327;
  --bg-card: #161938;
  --accent: #5865F2;
  --accent-hover: #4752c4;
  --text-primary: #ffffff;
  --text-secondary: #b9bbbe;
  --text-muted: #72767d;
  --gradient-1: #5865F2;
  --gradient-2: #eb459e;
  --gradient-3: #57f287;
  --rainbow-1: #ff0000;
  --rainbow-2: #ff8800;
  --rainbow-3: #ffff00;
  --rainbow-4: #00ff00;
  --rainbow-5: #00aaff;
  --rainbow-6: #8800ff;
}

html {
  scroll-behavior: smooth;
  cursor: none;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ===== Custom Cursor ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(88, 101, 242, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-dot.hovering {
  transform: translate(-50%, -50%) scale(2);
  background: var(--accent);
}

.cursor-ring.hovering {
  width: 50px;
  height: 50px;
  border-color: var(--gradient-2);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gradient-1), var(--gradient-2));
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gradient-2), var(--gradient-3));
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(11, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(88, 101, 242, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 3px;
  cursor: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  cursor: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-join {
  background: var(--accent);
  color: var(--text-primary) !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease !important;
}

.nav-join:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ===== Particle Canvas ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Container ===== */
.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 0 80px;
  gap: 20px;
}

.logo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.4);
}

.logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    var(--rainbow-1),
    var(--rainbow-2),
    var(--rainbow-3),
    var(--rainbow-4),
    var(--rainbow-5),
    var(--rainbow-6),
    var(--rainbow-1)
  );
  z-index: 1;
  animation: spin 4s linear infinite;
}

.logo-ring::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg-primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 12px;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ===== Join Button ===== */
.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.4);
  margin-top: 10px;
}

a, button, .join-btn, .feature-card, .rule {
  cursor: none;
}

.join-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.6);
}

.join-btn:active {
  transform: translateY(0) scale(0.98);
}

.join-btn-lg {
  padding: 20px 48px;
  font-size: 1.3rem;
}

.discord-icon {
  flex-shrink: 0;
}

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

/* ===== Member Count ===== */
.member-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #57f287;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(87, 242, 135, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(87, 242, 135, 0); }
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text-primary);
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.15);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Next Event ===== */
.next-event {
  padding: 0 0 40px;
}

.next-event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  cursor: none;
}

.next-event-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.15);
}

.next-event-image-wrapper {
  position: relative;
  width: 220px;
  min-height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}

.next-event-image {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.next-event-card:hover .next-event-image {
  transform: scale(1.05);
}

.next-event-date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 13, 26, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}

.next-event-info {
  padding: 20px 24px 20px 0;
}

.next-event-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.next-event-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .next-event-card {
    flex-direction: column;
  }
  .next-event-image-wrapper {
    width: 100%;
    height: 160px;
  }
  .next-event-info {
    padding: 18px 20px 22px;
  }
}

/* ===== Rules ===== */
.rules {
  padding: 80px 0;
}

.rules-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.1);
  border-radius: 14px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.rule.visible {
  opacity: 1;
  transform: translateX(0);
}

.rule:hover {
  border-color: rgba(88, 101, 242, 0.4);
  transform: translateX(6px);
}

.rule-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
}

.rule p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--gradient-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: none;
}

.staff-btn {
  background: linear-gradient(135deg, #57f287, #2d7d46);
  box-shadow: 0 4px 20px rgba(87, 242, 135, 0.3);
}

.staff-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(87, 242, 135, 0.5);
}

.appeal-btn {
  background: linear-gradient(135deg, #eb459e, #9b2c6b);
  box-shadow: 0 4px 20px rgba(235, 69, 158, 0.3);
}

.appeal-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(235, 69, 158, 0.5);
}

.secondary-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ===== Events Page ===== */
.events-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0 40px;
  gap: 12px;
}

.events-section {
  padding: 20px 0 80px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: none;
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.15);
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 13, 26, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}

.badge-month {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.badge-day {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
}

.event-content {
  padding: 24px 28px 28px;
}

.event-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.event-meta {
  margin-bottom: 14px;
}

.event-datetime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.event-datetime svg {
  flex-shrink: 0;
}

.event-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Happening Now Badge ===== */
.happening-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff4444, #ff1744);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(255, 23, 68, 0.5);
  animation: happeningPulse 2s ease-in-out infinite;
}

.happening-now-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: liveDotPulse 1.5s ease-in-out infinite;
}

@keyframes happeningPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(255, 23, 68, 0.5); }
  50% { box-shadow: 0 2px 24px rgba(255, 23, 68, 0.8); }
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.event-card.is-happening-now {
  border-color: rgba(255, 23, 68, 0.4);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.1);
}

.event-card.is-happening-now:hover {
  border-color: rgba(255, 23, 68, 0.6);
  box-shadow: 0 12px 40px rgba(255, 23, 68, 0.2);
}

/* Next event happening now badge */
.next-event-card .happening-now-badge {
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  padding: 4px 10px;
}

.next-event-card.is-happening-now {
  border-color: rgba(255, 23, 68, 0.4);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.1);
}

.next-event-card.is-happening-now:hover {
  border-color: rgba(255, 23, 68, 0.6);
  box-shadow: 0 12px 40px rgba(255, 23, 68, 0.2);
}

.no-events {
  text-align: center;
  padding: 80px 0;
}

.no-events p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ===== Content Page ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: none;
}

.content-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-card:hover {
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-info {
  padding: 18px 22px 20px;
}

.content-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.4;
}

.content-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.content-date svg {
  flex-shrink: 0;
}

/* ===== Event Detail Slide-in Panel ===== */
.event-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.event-panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.event-panel {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translate(calc(100% + 24px), -50%);
  width: 460px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  background: var(--bg-card);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 20px;
  z-index: 201;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -8px 0 60px rgba(0, 0, 0, 0.5);
}

.event-panel.active {
  transform: translate(0, -50%);
}

.event-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease;
  cursor: none;
}

.event-panel-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.event-panel-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.event-panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-panel-happening {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff4444, #ff1744);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(255, 23, 68, 0.5);
  animation: happeningPulse 2s ease-in-out infinite;
}

.event-panel-body {
  padding: 24px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.event-panel-datetime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.event-panel-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.event-panel-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.4);
  margin-top: 4px;
  text-align: center;
  justify-content: center;
  cursor: none;
}

.event-panel-join-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.6);
}

/* Scrollbar inside panel */
.event-panel::-webkit-scrollbar {
  width: 6px;
}

.event-panel::-webkit-scrollbar-thumb {
  background: rgba(88, 101, 242, 0.3);
  border-radius: 6px;
}

@media (max-width: 600px) {
  .event-panel {
    right: 0;
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    transform: translate(100%, -50%);
  }
  .event-panel-image-wrapper {
    border-radius: 0;
  }
  .event-panel-body {
    padding: 20px 18px 28px;
  }
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .title {
    font-size: 3rem;
    letter-spacing: 8px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .title {
    font-size: 2.2rem;
    letter-spacing: 6px;
  }
  .hero {
    padding: 80px 0 50px;
  }
  .logo-wrapper {
    width: 130px;
    height: 130px;
  }
  .logo {
    width: 110px;
    height: 110px;
  }
  .cta h2 {
    font-size: 1.8rem;
  }
  .join-btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  .navbar {
    padding: 10px 16px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .event-image-wrapper {
    height: 160px;
  }
  .event-content {
    padding: 18px 20px 22px;
  }
  .events-header {
    padding: 100px 0 30px;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
}
