.events-section {
  padding-top: 80px;
  margin-top: 0;
}

.events-section .container h2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: block;
  font-family: 'Aton', sans-serif;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(75, 59, 255, 0.12), rgba(255, 42, 42, 0.08));
  min-height: 200px;
  aspect-ratio: 16/9;
  border: 2px solid rgba(75, 59, 255, 0.25);
  box-shadow: 
    0 12px 40px rgba(0,0,0,0.5),
    0 0 30px rgba(75, 59, 255, 0.15),
    inset 0 0 30px rgba(75, 59, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out forwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }

.event-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 
    0 32px 80px rgba(75, 59, 255, 0.4),
    0 0 50px rgba(75, 59, 255, 0.3),
    inset 0 0 30px rgba(75, 59, 255, 0.1);
  border-color: rgba(75, 59, 255, 0.6);
  background: linear-gradient(135deg, rgba(75, 59, 255, 0.2), rgba(75, 59, 255, 0.12));
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(75, 59, 255, 0.1), transparent);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover::before {
  opacity: 1;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.95);
}

.event-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.1);
}

.date-badge {
  font-family: 'Aton', sans-serif;
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  z-index: 4;
  box-shadow: 
    0 8px 24px rgba(255, 42, 42, 0.5),
    0 0 20px rgba(255, 42, 42, 0.3);
  font-weight: 700;
  animation: slideInRight 0.6s ease-out;
}

.date-badge .day {
  display: block;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

.date-badge small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
}

.event-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  z-index: 3;
  background: none;
  padding: 0;
  border: none;
  backdrop-filter: none;
}

.event-title {
  font-family: 'Abel', sans-serif;
  margin: 0 0 6px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;

  text-shadow:
    0 2px 6px rgba(0,0,0,1),
    0 4px 12px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.8);
}

.event-time {
  font-family: 'Abel', sans-serif;
  margin: 0;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-shadow:
    0 2px 6px rgba(0,0,0,1),
    0 4px 10px rgba(0,0,0,0.9);
}

.section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 59, 255, 0.3), transparent);
  z-index: 0;
}

.section-light { 
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(10,5,30,0.4) 100%);
}

.section-dark { 
  background: linear-gradient(135deg, rgba(10,5,25,0.6) 0%, rgba(20,10,40,0.4) 100%);
}