/* ===============================
   AUCTION PAGE STYLES
   =============================== */

.main-tour {
  padding: 60px 20px;
  background: #f9fbff;
  text-align: center;
}

.main-tour h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222e61;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Tournament Grid */
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card Design */
.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 0 15px rgba(0, 240, 255, 0.2);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(0, 240, 255, 0.25), transparent);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 25px rgba(0, 240, 255, 0.6);
}

/* Upcoming Highlight */
.card.upcoming {
  border: 2px solid #00f0ff;
}

/* Tournament Image */
.tour-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

/* Text */
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  margin: 6px 0;
}

/* Glow Button */
.btn-glow {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 26px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  background: linear-gradient(90deg, #00f0ff, #00ff88);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
  transition: 0.3s ease;
}

.btn-glow:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 240, 255, 1);
}

/* ===============================
   NOTICE SECTION
   =============================== */

.Notice {
  margin: 70px auto 40px;
  max-width: 900px;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(255, 153, 0, 0.35);
}

.Notice h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ff9900;
  margin-bottom: 15px;
}

.Notice p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .main-tour h2 {
    font-size: 1.8rem;
  }

  .tour-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 15px;
  }

  .btn-glow {
    padding: 9px 22px;
    font-size: 0.9rem;
  }
}
