/* ================= GX9 EVENTS SECTION ================= */

.gx9evt-section {
  --gx9evt-bg-dark: #050610;
  --gx9evt-violet: #9b4dff;
  --gx9evt-blue: #3b82f6;
  --gx9evt-gold: #f5c16c;
  --gx9evt-text-main: #f2f2f2;
  --gx9evt-text-muted: #b6b7d0;

  padding: 75px 20px;
  background:
    linear-gradient(rgba(5,6,16,0.95), rgba(5,6,16,0.95)),
    url("https://images.unsplash.com/photo-1515168833906-d2a3b82b302a")
    center / cover no-repeat;

  font-family: 'Poppins', sans-serif;
  color: var(--gx9evt-text-main);
}

/* ================= CONTAINER ================= */

.gx9evt-container {
  max-width: 1300px;
  margin: auto;
}

/* ================= HEADER ================= */

.gx9evt-header {
  text-align: center;
  margin-bottom: 60px;
}

.gx9evt-tag {
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gx9evt-violet), var(--gx9evt-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gx9evt-header h2 {
  font-size: 42px;
  margin: 14px 0;
}

.gx9evt-header p {
  max-width: 650px;
  margin: auto;
  color: var(--gx9evt-text-muted);
}

/* ================= GRID ================= */

.gx9evt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.gx9evt-card {
  background: linear-gradient(160deg, #0c0f2b, #050610);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(245,193,108,0.35);
  box-shadow: inset 0 0 18px rgba(245,193,108,0.08);
  transition: 0.6s ease;
}

/* ================= IMAGE ================= */

.gx9evt-image-box {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.gx9evt-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.gx9evt-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5,6,16,0.95));
}

/* ================= CONTENT ================= */

.gx9evt-content {
  padding: 24px;
  text-align: center;
}

.gx9evt-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.gx9evt-content p {
  font-size: 14px;
  color: var(--gx9evt-text-muted);
  margin-bottom: 18px;
}

/* ================= BUTTON ================= */

.gx9evt-btn-wrap {
  display: flex;
  justify-content: center;
}

.gx9evt-read-btn {
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--gx9evt-violet), var(--gx9evt-blue));
  box-shadow:
    0 0 20px rgba(155,77,255,.45),
    0 0 30px rgba(59,130,246,.35);
  transition: .4s ease;
}

.gx9evt-read-btn:hover {
  transform: translateY(-4px) scale(1.06);
}

/* ================= ORIGINAL HOVER (UNCHANGED) ================= */

.gx9evt-card:hover {
  transform: translateY(-12px);
  box-shadow:
    inset 0 0 18px rgba(245,193,108,0.08),
    0 0 45px rgba(245,193,108,.35);
}

.gx9evt-card:hover img {
  transform: scale(1.15);
}

/* ================= SCROLL ANIMATION ================= */

.gx9evt-animate {
  opacity: 0;
  transform: translateY(45px);
}

.gx9evt-animate.gx9evt-show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .gx9evt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gx9evt-grid {
    grid-template-columns: 1fr;
  }

  .gx9evt-header h2 {
    font-size: 32px;
  }

  .gx9evt-tag {
    font-size: 16px;
  }
}
