*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg, linear-gradient(to bottom, #000000, rgb(14, 14, 14)));
  background-attachment: fixed;
  color: var(--text, white);
  font-family: "Roboto", sans-serif;
}

.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-blobs::before,
.bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-blobs::before {
  width: 50%;
  height: 70%;
  background: var(--blob-1, rgba(252, 61, 61, 0.4));
  top: 25%;
  left: 30%;
}

.bg-blobs::after {
  width: 50%;
  height: 70%;
  background: var(--blob-2, rgba(228, 140, 100, 0.3));
  top: 2%;
  left: 25%;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}

.search-bar {
  padding: 16px 24px;
  width: 60%;
  max-width: 600px;
  border-radius: 25px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.2));
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  color: var(--text, white);
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.search-bar:focus {
  border-color: var(--glass-border-focus, rgba(255, 255, 255, 0.5));
  background: var(--glass-bg-focus, rgba(255, 255, 255, 0.08));
}

.search-bar::placeholder {
  color: var(--text-secondary, rgba(255, 255, 255, 0.5));
}

.logo {
  font-weight: 100;
  font-size: 60px;
  margin: 0;
  letter-spacing: 5px;
  text-transform: uppercase;
  user-select: none;
}

.nav-border {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  z-index: 1000;
}

.top-nav {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.material-symbols-outlined {
  padding: 5px;
  border-radius: 5px;
  user-select: none;
  cursor: pointer;
  transform: scale(1);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.material-symbols-outlined:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}
