/* Base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}
h1, h2, h3 { font-weight: 700; }

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  display: flex; justify-content: center; align-items: center;
  text-align: center; padding: 2rem;
}
.hero-logo { width: 120px; margin-bottom: 20px; }
.hero .highlight {
  background: linear-gradient(90deg, #ff0, #ff00f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff0057;
  border-radius: 50px;
  color: #fff; text-decoration: none;
  font-weight: bold; transition: 0.3s;
}
.cta-btn:hover { background: #ff3385; box-shadow: 0 0 15px #ff0057; }

/* Section */
section { padding: 60px 20px; text-align: center; }
section h2 { font-size: 28px; margin-bottom: 30px; color: #ffdd00; }

/* Grid */
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #1a1a1a;
  padding: 20px; border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 0 20px #ff0057; }
.card i { font-size: 32px; color: #ff0057; margin-bottom: 12px; }

/* Prize */
.prize-cards {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.prize-card {
  background: #111; padding: 20px;
  border-radius: 12px; min-width: 200px;
  transition: 0.3s;
}
.prize-card:hover { transform: scale(1.05); box-shadow: 0 0 15px #ffdd00; }
.prize-card i { font-size: 30px; color: #ffdd00; margin-bottom: 10px; }

/* Matches */
.match-card {
  background: #1a1a1a;
  padding: 20px; border-radius: 12px;
  max-width: 300px; margin: auto;
  box-shadow: 0 0 10px #ff0057;
}
#countdown { font-size: 22px; color: #ffdd00; margin-top: 10px; }

/* Footer */
.footer {
  background: #0a0a0a; padding: 30px; text-align: center;
}
.footer-logo { width: 60px; margin-bottom: 10px; }
.footer .social a {
  margin: 0 8px; font-size: 20px; color: #fff;
  transition: 0.3s;
}
.footer .social a:hover { color: #ff0057; }
.copy { margin-top: 15px; font-size: 14px; color: #aaa; }

/* Floating Action Button */
.fab {
  position: fixed; bottom: 20px; right: 20px;
}
.fab input { display: none; }
.fab-btn {
  width: 55px; height: 55px; border-radius: 50%;
  background: #ff0057; color: #fff;
  display: flex; justify-content: center; align-items: center;
  font-size: 24px; cursor: pointer;
  box-shadow: 0 0 15px #ff0057; transition: 0.3s;
}
.fab-btn:hover { transform: rotate(90deg); }
.fab-menu {
  display: flex; flex-direction: column;
  position: absolute; bottom: 70px; right: 0;
  gap: 12px; opacity: 0; visibility: hidden;
  transition: 0.3s;
}
.fab-menu a {
  width: 45px; height: 45px; border-radius: 50%;
  background: #1a1a1a; color: #fff;
  display: flex; justify-content: center; align-items: center;
  font-size: 20px; box-shadow: 0 0 10px #ff0057;
}
#fab-toggle:checked ~ .fab-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}