body, input, button, h1, h2, h3, h4, h5, h6, nav, .logo, .nav-icon, .center-text, .uv-search-bar, .card, .motd, .gif-glow, .logo-img, ul, li, span, form {
  font-family: 'Nunito', Arial, sans-serif !important;
}
.gif-glow {
  transition: box-shadow 0.25s, width 0.25s, height 0.25s;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
}
.gif-glow:hover {
  box-shadow: 0 0 24px 6px #00fff7;
  width: 340px;
}
.gif-glow.active {
  box-shadow: 0 0 48px 16px #00fff7;
  width: 400px;
  height: 320px;
  z-index: 2;
}
@media (max-width: 500px) {
  .gif-glow, .gif-glow:hover, .gif-glow.active {
    width: 95vw !important;
    height: auto !important;
  }
}
.uv-search-bar input[type="text"] {
  transition: box-shadow 0.25s, width 0.25s, height 0.25s;
  box-shadow: 0 0 0 0 transparent;
  width: 600px;
  max-width: 90vw;
  font-size: 1.1rem;
  background: #181818;
  color: #fff;
  border-radius: 32px;
  border: none;
  padding: 0.7rem 1.2rem;
  text-align: center;
}
.uv-search-bar input[type="text"]:hover {
  box-shadow: 0 0 18px 4px #00fff7;
  width: 700px;
  max-width: 98vw;
}
.uv-search-bar input[type="text"]:focus {
  box-shadow: 0 0 36px 12px #00fff7;
  width: 900px;
  max-width: 100vw;
  background: #222;
}
@media (max-width: 700px) {
  .uv-search-bar input[type="text"],
  .uv-search-bar input[type="text"]:hover,
  .uv-search-bar input[type="text"]:focus {
    width: 98vw !important;
    max-width: 98vw !important;
  }
}
.game-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #181818;
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.game-icon:hover {
  box-shadow: 0 0 10px #00fff7;
  transform: scale(1.10);
}
.main-card {
  display: none !important;
}
.big-btn {
  padding: 1.1rem 2.5rem;
  border-radius: 18px;
  border: none;
  font-size: 1.3rem;
  font-family: 'Nunito', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 18px 2px #00fff7;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s, color 0.2s;
  width: 320px;
  max-width: 90vw;
  background: #00fff7;
  color: #111;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#discord-btn.big-btn {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 18px 2px #5865F2;
}
.big-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px 6px #00fff7;
}
#discord-btn.big-btn:hover {
  box-shadow: 0 0 32px 6px #5865F2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 0 1.5rem;
  height: 60px;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

nav .logo img {
  height: 36px;
  width: 36px;
}

nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.nav-icon img {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
}

.nav-icon:hover,
.nav-icon.active {
  background-color: rgba(255, 255, 255, 0.15);
}

main {
  padding: 2rem;
}

h2 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
}

input[type="text"] {
  margin: 0 auto 2rem auto;
  display: block;
  padding: 0.5rem 1rem;
  width: 80%;
  max-width: 400px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  position: relative;
  width: 200px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px 8px #00fff7, 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(8px);
  opacity: 0.5;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.center-text {
  text-align: center;
  margin-top: 2rem;
}

.uv-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem auto 1.5rem auto;
}

.uv-search-bar input[type="text"] {
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s;
  width: 220px;
  max-width: 90vw;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  border: none;
  font-size: 1.1rem;
  background: #ffffff;
  color: #acacac;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
  outline: none;
}

.uv-search-bar input[type="text"]:hover {
  width: 300px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.18);
}

.uv-search-bar input[type="text"]:focus {
  width: 500px;
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.22);
  background: #222;
}

.uv-search-bar-custom {
  width: 340px;
  max-width: 80vw;
  padding: 0.95rem 1.3rem;
  font-size: 1.18rem;
  border-radius: 2rem;
  border: 2px solid #444;
  background: #232323;
  color: #fff;
  outline: none;
  box-shadow: 0 0 0px #00ffa6a0;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s, width 0.2s;
}
.uv-search-bar-custom:hover {
  box-shadow: 0 0 16px #00ffa6, 0 0 32px #00ffa6a0;
  border: 2px solid #00ffa6;
  transform: scale(1.04);
}
.uv-search-bar-custom:focus {
  box-shadow: 0 0 32px #00ffa6, 0 0 64px #00ffa6a0;
  border: 2.5px solid #00ffa6;
  width: 480px;
  max-width: 98vw;
  background: #181818;
  transform: scale(1.07);
}
@media (max-width: 600px) {
  .uv-search-bar-custom { width: 98vw; }
  .uv-search-bar-custom:focus { width: 98vw; }
}

