/* ========== GLOBAL STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+128+Text&display=swap');

:root {
  --color-primary: #5865F2;
  --color-secondary: #57F287;
  --color-bg: #ffffff;
  --color-bg-secondary: #f6f6f6;
  --color-text: #0f0f10;
  --color-text-secondary: #666666;
  --color-border: #e0e0e0;
  --color-accent: #EB459E;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

[data-theme="dark"] {
  --color-primary: #5865F2;
  --color-secondary: #57F287;
  --color-bg: #0f0f10;
  --color-bg-secondary: #1a1a1b;
  --color-text: #ffffff;
  --color-text-secondary: #b9bbbe;
  --color-border: #2a2a2b;
  --color-accent: #EB459E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
  background: var(--color-primary);
  color: white;
}

::-moz-selection {
  background: var(--color-primary);
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

button, a, [role="button"] {
  cursor: pointer;
}

.grid-pattern {
  background-image: 
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-main {
  text-align: center;
}

.loading-logo {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.loading-logo-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.loading-percent {
  font-variant-numeric: tabular-nums;
  min-width: 50px;
  text-align: right;
  color: var(--color-primary);
}

.loading-progress-bg {
  width: 300px;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
  width: 0;
}

.loading-links {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 2rem;
}

.loading-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.loading-link:hover {
  color: var(--color-primary);
}

.loading-link-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loading-link-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.loading-link:hover .loading-link-arrow {
  transform: translateX(5px);
}

/* ========== HEADER ========== */
.header-top-right {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 100;
}

.theme-toggle {
  display: flex;
  gap: 0.5rem;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.theme-btn:hover {
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.header-clock {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--color-text);
  letter-spacing: -0.05em;
}

.header-slash {
  color: var(--color-primary);
}

.hamburger-btn {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 101;
}

.hamburger-btn:hover {
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.hamburger-btn.open {
  background: var(--color-primary);
  color: white;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 100vh;
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  padding: 6rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow-y: auto;
}

.hamburger-menu.open {
  transform: translateX(0);
}

.menu-list,
.menu-social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list {
  margin-bottom: 2rem;
}

.menu-list li,
.menu-social li {
  margin-bottom: 1rem;
}

.menu-link {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  width: 100%;
}

.menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.menu-link:hover {
  color: var(--color-primary);
  transform: translateX(10px);
}

.menu-link:hover::before {
  width: 100%;
}

.menu-social .menu-link {
  font-size: 1.2rem;
}

.menu-divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  backdrop-filter: blur(4px);
  display: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-wrapper {
  z-index: 2;
}

.hero-title-group {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-slash {
  color: var(--color-primary);
}

.hero-barcode {
  font-family: 'Libre Barcode 128 Text', cursive;
  font-size: 2rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  color: var(--color-text);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stat-icon {
  color: var(--color-primary);
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-flex;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
}

.hero-cta:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.hero-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta-arrow {
  transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(5px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image-main {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.067);
}

.hero-image-main:hover {
  transform: scale(1.05);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-image-main:hover .hero-image-overlay {
  opacity: 1;
}

.hero-grid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  font-size: 3rem;
  filter: drop-shadow(0 4px 20px rgba(88, 101, 242, 0.3));
}

.hero-deco-1 {
  top: 10%;
  left: 10%;
}

.hero-deco-2 {
  top: 60%;
  right: 1%;
  top: 30%;
}

.hero-deco-3 {
  bottom: 10%;
  left: -5%;
}

/* Hero Dialog */
.hero-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.hero-dialog {
  background: var(--color-bg);
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid var(--color-border);
  animation: slideUp 0.3s ease;
}

.hero-dialog-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-dialog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero-dialog-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dialog-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.hero-dialog-body {
  padding: 2rem;
}

.hero-dialog-img {
  width: 100%;
  border-radius: 8px;
}

/* ========== SECTION COMMON STYLES ========== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section-barcode {
  font-family: 'Libre Barcode 128 Text', cursive;
  font-size: 2rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 6rem 2rem;
    background: var(--color-bg-secondary);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-btn.primary {
    background: var(--color-primary);
    color: white;
}

.about-btn.primary:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.about-btn.secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.about-btn.secondary:hover {
    background: var(--color-bg);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ========== LEADERBOARD ========== */
.leaderboard-section {
  padding: 6rem 2rem;
  background: var(--color-bg);
  position: relative;
}

.leaderboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leaderboard-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.leaderboard-content {
  background: var(--color-bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 60px 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  opacity: 0;
}

.leaderboard-item:hover {
  transform: translateX(10px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.15);
}

.leaderboard-item.rank-1 {
  border-color: #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--color-bg) 100%);
}

.leaderboard-item.rank-2 {
  border-color: #C0C0C0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, var(--color-bg) 100%);
}

.leaderboard-item.rank-3 {
  border-color: #CD7F32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.05) 0%, var(--color-bg) 100%);
}

.item-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.rank-icon {
  width: 32px;
  height: 32px;
}

.rank-icon.gold {
  color: #FFD700;
  filter: drop-shadow(0 0 10px #FFD700);
}

.rank-icon.silver {
  color: #C0C0C0;
  filter: drop-shadow(0 0 10px #C0C0C0);
}

.rank-icon.bronze {
  color: #CD7F32;
  filter: drop-shadow(0 0 10px #CD7F32);
}

.rank-number {
  color: var(--color-text-secondary);
  font-size: 1.2rem;
}

.item-avatar {
  position: relative;
  width: 70px;
  height: 70px;
}

.item-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  object-fit: cover;
}

.item-level {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  border: 2px solid var(--color-bg);
}

.item-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.item-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.item-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.item-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.rank-1 .badge-text {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.rank-2 .badge-text {
  color: #C0C0C0;
  background: rgba(192, 192, 192, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.rank-3 .badge-text {
  color: #CD7F32;
  background: rgba(205, 127, 50, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.leaderboard-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ========== TEAM ========== */
.team-section {
  padding: 6rem 2rem;
  background: var(--color-bg-secondary);
  position: relative;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  position: relative;
  background: var(--color-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--role-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--role-color);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
}

.team-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(40px);
  pointer-events: none;
}

.team-card-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.role-icon {
  transition: all 0.3s ease;
}

.role-icon.owner {
  color: #FFD700;
}

.role-icon.admin {
  color: #FF6B6B;
}

.role-icon.head-moderator {
  color: #4ECDC4;
}

.role-icon.developer {
  color: #FFE66D;
}

.role-icon.moderator {
  color: #95E1D3;
}

.role-icon.trial-moderator {
  color: #AA96DA;
}

.role-icon.creative-designer {
  color: #FF9A76;
}

.role-icon.helper {
  color: #A3D9B1;
}

.team-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.team-avatar-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 3px solid;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.team-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-tag {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-family: monospace;
}

.team-card-footer {
  display: flex;
  justify-content: center;
}

.team-view-btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.team-card:hover .role-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--role-color));
}

.team-card:hover .team-view-btn {
  opacity: 1;
}

.team-view-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.05);
}

.team-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 12px;
  border: 2px dashed var(--color-border);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

.team-join svg {
  color: var(--color-primary);
}

/* Team Dialog */
.team-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.team-dialog {
  background: var(--color-bg);
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid var(--color-border);
  animation: slideUp 0.3s ease;
}

.team-dialog-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-dialog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.team-dialog-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-dialog-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.team-dialog-body {
  padding: 2rem;
}

.dialog-avatar-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.dialog-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-border);
  margin-bottom: 1rem;
}

.dialog-role-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dialog-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dialog-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.dialog-label {
  font-weight: 600;
  color: var(--color-text-secondary);
}

.dialog-value {
  font-weight: 500;
  color: var(--color-text);
}

.dialog-desc {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.dialog-desc p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ========== NO DONATORS MESSAGE ========== */
.no-donators-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-bg-secondary);
  border-radius: 16px;
  border: 2px dashed var(--color-border);
  color: var(--color-text-secondary);
}

.no-donators-message svg {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.no-donators-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.no-donators-message p {
  font-size: 1rem;
  opacity: 0.8;
}



/* ========== DONATORS ========== */
.donators-section {
  padding: 6rem 2rem;
  background: var(--color-bg);
  position: relative;
}

.donators-container {
  max-width: 1400px;
  margin: 0 auto;
}

.donators-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tier-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid;
  transition: all 0.3s ease;
}

.tier-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 16px currentColor);
}

.tier-badge.platinum {
  background: linear-gradient(135deg, #E5E4E2, #C0C0C0);
  color: #333;
  border-color: #E5E4E2;
}

.tier-badge.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  border-color: #FFD700;
}

.tier-badge.silver {
  background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
  color: #333;
  border-color: #C0C0C0;
}

.tier-badge.bronze {
  background: linear-gradient(135deg, #CD7F32, #B8722C);
  color: white;
  border-color: #CD7F32;
}

.donators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.donator-card {
  background: var(--color-bg-secondary);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 2px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
}


.donator-card.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.donator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tier-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.donator-card:hover::before {
  transform: scaleX(1);
}

.donator-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--tier-color);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
}

.donator-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.donator-tier-icon {
  display: flex;
}


.tier-supreme {
  --tier-color: #FF6B6B;
}

.tier-radiant {
  --tier-color: #FFD700;
}

.tier-elite {
  --tier-color: #C0C0C0;
}

.tier-donator {
  --tier-color: #CD7F32;
}

.donator-card.tier-supreme {
  border: 2px solid #FF6B6B;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
}

.donator-card.tier-radiant {
  border: 2px solid #FFD700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.donator-card.tier-elite {
  border: 2px solid #C0C0C0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.donator-card.tier-donator {
  border: 2px solid #CD7F32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.tier-icon {
  width: 24px;
  height: 24px;
}



.donator-tier-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tier-color);
}

.donator-avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.donator-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-bg);
  position: relative;
  z-index: 2;
}

.donator-avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 3px solid;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.donator-info {
  margin-bottom: 1rem;
}

.donator-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.donator-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--tier-color);
  margin-bottom: 0.3rem;
}

.donator-date {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.donator-thank {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border-radius: 20px;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

.donator-heart {
  color: #FF6B6B;
}

.donators-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donators-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Ccircle cx="30" cy="30" r="2"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.donators-cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-icon {
  margin: 0 auto 1rem;
  animation: float 3s ease-in-out infinite;
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.cta-button:hover {
  background: transparent;
  color: white;
  transform: scale(1.05);
}

/* ========== EVENTS ========== */
.events-section {
  padding: 6rem 2rem;
  background: var(--color-bg-secondary);
  position: relative;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-card {
  background: var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--event-color);
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--event-color);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
}

.event-type-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 1.5rem 0;
  border-radius: 20px;
}

.event-content {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.event-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.event-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

.event-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.event-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.02);
}

.events-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 12px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  border: 2px dashed var(--color-border);
}

/* ========== NO EVENTS MESSAGE ========== */
.no-events-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg-secondary);
    border-radius: 16px;
    border: 2px dashed var(--color-border);
    color: var(--color-text-secondary);
}

.no-events-message svg {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    opacity: 0.7;
}

.no-events-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.no-events-message p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.events-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.events-cta-btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Enhanced Event Cards for Events Page */
.events-section .event-card {
    margin-bottom: 0;
}

.events-section .events-grid {
    margin-bottom: 2rem;
}

/* ========== 404 PAGE STYLES ========== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--color-bg);
}

.error-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: monospace;
}

.error-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-barcode {
    font-family: 'Libre Barcode 128 Text', cursive;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    opacity: 0.3;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
}

.error-btn.primary {
    background: var(--color-primary);
    color: white;
}

.error-btn.primary:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.error-btn.secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.error-btn.secondary:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.error-animation {
    margin: 3rem auto;
    max-width: 300px;
    opacity: 0.7;
}

.error-animation img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.error-search {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-btn {
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

.error-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.error-link-card {
    padding: 1.5rem;
    background: var(--color-bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    text-align: left;
}

.error-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.1);
}

.error-link-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.error-link-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.error-link-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}


/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-family: monospace;
}

.footer-desc {
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.footer-divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-heart {
  color: #FF6B6B;
  animation: pulse 1.5s ease-in-out infinite;
}

.footer-year {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text-wrapper {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .header-top-right {
    top: 1.5rem;
    right: 1.5rem;
    gap: 1rem;
  }

  .header-clock {
    font-size: 1.4rem;
  }

  .hamburger-btn {
    top: 1.5rem;
    left: 1.5rem;
  }

  .hamburger-menu {
    width: 85vw;
    max-width: 350px;
  }

  .hero-section {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .hero-image-main {
    max-width: 350px;
  }

  .hero-deco {
    font-size: 2rem;
  }

  .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

  .leaderboard-section,
  .team-section,
  .donators-section,
  .events-section {
    padding: 4rem 1.5rem;
  }

  .leaderboard-item {
    grid-template-columns: 40px 60px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .item-badge {
    display: none;
  }

  .item-avatar {
    width: 50px;
    height: 50px;
  }

  .item-level {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }

  .item-name {
    font-size: 1rem;
  }

  .item-stats {
    font-size: 0.8rem;
  }

  .leaderboard-content {
    padding: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .team-join {
    flex-direction: column;
    text-align: center;
  }

  .donators-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .donator-card {
    padding: 1.5rem 1rem;
  }

  .donators-cta {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-title {
    font-size: 1.2rem;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
