* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(26, 26, 26, 0.9)),
              url('1.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

h1 {
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #4e9ef7;
  letter-spacing: 1px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background: transparent;
  border: 2px solid transparent;
  padding: 10px 24px; 
  margin: 0 10px;
  color: #e0e0e0;
  font-size: 1rem; 
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background: #4e9ef7;
  border-color: #4e9ef7;
  color: #121212;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.search-group {
  display: flex;
  margin-bottom: 1.8rem;
  gap: 10px;
}

.search-group input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #4e9ef7;
  border-radius: 10px;
  background: #2a2a2a;
  color: #e0e0e0;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.search-group input:focus {
  border-color: #7ab8f5;
}

.search-group button {
  padding: 12px 24px;
  border: none;
  background: #4e9ef7;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s ease;
  flex-shrink: 0;
}

.search-group button:hover {
  background: #7ab8f5;
  transform: translateY(-2px);
}

.results {
  margin-top: 2rem;
  padding: 25px;
  background: #171717;
  border: 1px solid #4e9ef7;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.results.show {
  opacity: 1;
  transform: translateY(0);
}

.result-item {
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.5;
}

.footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #7a7a7a;
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.footer img {
  width: 16px;
  height: 16px;
}