/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL VALORANT NEON THEME ===== */
body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a, #111122, #0d0d0d);
  background-size: 300% 300%;
  animation: bgMove 12s infinite alternate;
  color: white;
  text-align: center;
  padding: 20px;
}

@keyframes bgMove {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}

/* ===== TITLES ===== */
h1 {
  color: #ff4655;
  text-shadow: 0 0 15px #ff4655;
  font-size: 45px;
  margin-top: 40px;
}

h2 {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
  margin-top: 15px;
}

/* ===== SEARCH BAR ===== */
#searchBar {
  display: block;
  margin: 25px auto 5px;
  width: 350px;
  padding: 12px;

  background: #0d0d0d;
  color: #00eaff;
  border: 2px solid #00eaff;
  border-radius: 10px;

  font-size: 18px;
  outline: none;
  text-align: center;

  box-shadow: 0 0 10px #00eaff;
  transition: 0.25s ease;
}

#searchBar:focus {
  transform: scale(1.05);
  border-color: #ff4655;
  color: #ff4655;
  box-shadow: 0 0 20px #ff4655;
}

/* ===== SEARCH SUGGESTIONS ===== */
#suggestions {
  width: 350px;
  margin: 0 auto;

  background: #111;
  border: 2px solid #00eaff;
  border-radius: 10px;

  display: none;
  position: relative;

  box-shadow: 0 0 15px #00eaff;
}

.suggestion {
  padding: 12px;
  border-bottom: 1px solid #222;
  cursor: pointer;
  transition: 0.2s ease;
}

.suggestion:hover {
  background: #222;
  color: #ff4655;
  text-shadow: 0 0 10px #ff4655;
}

/* ===== BUTTON CONTAINER ===== */
.button-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* ===== VALORANT BUTTONS ===== */
button {
  all: unset;
  box-sizing: border-box;

  width: 230px;
  height: 55px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  background: transparent;
  color: white;
  font-size: 18px;
  font-weight: bold;

  border: 2px solid #00eaff;
  border-radius: 12px;

  cursor: pointer;

  box-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
  transition: all 0.25s ease;
}

button:hover {
  transform: scale(1.08);
  color: #ff4655;
  border-color: #ff4655;
  box-shadow: 0 0 25px rgba(255, 70, 85, 0.9);
}

/* ===== TABLES (Gamemodes etc.) ===== */
.gamemodes-table {
  width: 80%;
  margin: 40px auto;
  border-collapse: collapse;
  font-size: 22px;
  color: #e6e6e6;
  text-align: center;
  box-shadow: 0 0 20px #00eaff;
}

