/* ------------------------------
   RESET & BASE
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #101020, #050509);
  color: #fff;
  min-height: 100vh;
}

/* ------------------------------
   CONTAINER GLOBAL
------------------------------ */
.container {
  max-width: 420px;
  margin: 40px auto;
  padding: 20px;
}

/* ------------------------------
   HEADER / BRAND
------------------------------ */
.header {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.brand {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7c3cff;
  text-shadow: 0 0 12px #7c3cff, 0 0 22px #5a2acc;
}

/* ------------------------------
   CARD
------------------------------ */
.card {
  background: rgba(20, 20, 35, 0.75);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(90, 60, 255, 0.25);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
  border: 1px solid rgba(120, 80, 255, 0.25);
}

.h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ------------------------------
   MENU DASHBOARD
------------------------------ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.menu-card {
  background: linear-gradient(145deg, #1a1a2f, #0a0a15);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: 1px solid rgba(140, 80, 255, 0.3);
  box-shadow: 0 0 12px rgba(90, 60, 255, 0.25);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(140, 80, 255, 0.45);
}

/* ------------------------------
   FORM INPUTS
------------------------------ */
.label {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 4px;
  display: block;
  color: #c9b8ff;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #5a2acc;
  outline: none;
  background: rgba(10, 10, 25, 0.8);
  color: #fff;
  font-size: 15px;
  transition: 0.2s;
}

input:focus {
  border-color: #7c3cff;
  box-shadow: 0 0 8px #7c3cff;
}

/* ------------------------------
   BUTTONS
------------------------------ */
.btn {
  background: linear-gradient(90deg, #7c3cff, #5a2acc);
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 14px #7c3cff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #7c3cff;
}

.btn.ghost:hover {
  background: rgba(124, 60, 255, 0.2);
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  margin-top: 28px;
  text-align: center;
  opacity: 0.5;
  font-size: 14px;
}

.match-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(135deg, #12001a, #2b003d);
  color: #fff;
  border-radius: 15px;
  font-family: Arial, sans-serif;
}

.match-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 18px;
}

.players {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}

.player-card {
  width: 40%;
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
}

.vs {
  font-size: 28px;
  font-weight: bold;
}

.actions {
  margin-top: 30px;
}

.actions input {
  padding: 10px;
  width: 120px;
}

.actions button {
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
}