* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.logo {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: bounce 2s ease-in-out infinite;
}

.logo span:nth-child(1) { 
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}
.logo span:nth-child(2) { 
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}
.logo span:nth-child(3) { 
  background: linear-gradient(135deg, #45b7d1, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(69, 183, 209, 0.3);
}
.logo span:nth-child(4) { 
  background: linear-gradient(135deg, #96ceb4, #88d8b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(150, 206, 180, 0.3);
}
.logo span:nth-child(5) { 
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(254, 202, 87, 0.3);
}
.logo span:nth-child(6) { 
  background: linear-gradient(135deg, #ff9ff3, #ee5a6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 159, 243, 0.3);
}
.logo span:nth-child(7) { 
  background: linear-gradient(135deg, #54a0ff, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(84, 160, 255, 0.3);
}
.logo span:nth-child(8) { 
  background: linear-gradient(135deg, #48dbfb, #0abde3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(72, 219, 251, 0.3);
}
.logo span:nth-child(9) { 
  background: linear-gradient(135deg, #00d2d3, #01a3a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(0, 210, 211, 0.3);
}

/* Logo Hover Effects */
.logo span {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}

.logo span:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.2);
  animation: pulse 0.6s ease-in-out;
}

/* Individual letter animations */
.logo span:nth-child(1):hover { animation-delay: 0.0s; }
.logo span:nth-child(2):hover { animation-delay: 0.1s; }
.logo span:nth-child(3):hover { animation-delay: 0.2s; }
.logo span:nth-child(4):hover { animation-delay: 0.3s; }
.logo span:nth-child(5):hover { animation-delay: 0.4s; }
.logo span:nth-child(6):hover { animation-delay: 0.5s; }
.logo span:nth-child(7):hover { animation-delay: 0.6s; }
.logo span:nth-child(8):hover { animation-delay: 0.7s; }
.logo span:nth-child(9):hover { animation-delay: 0.8s; }

@keyframes pulse {
  0% { transform: translateY(-3px) scale(1.1); }
  50% { transform: translateY(-5px) scale(1.15); }
  100% { transform: translateY(-3px) scale(1.1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

#searchInput {
  width: 100%;
  padding: 18px 60px 18px 25px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}

#searchInput:focus {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

#searchInput::placeholder {
  color: #999;
}

.search-container .super-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.search-container .super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.search-container .super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: inherit;
  z-index: -1;
}

.search-container .super-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.info-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.info-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.quick-links {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  max-width: 700px;
  width: 100%;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.quick-links h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tags span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tags span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.powered-by {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.powered-by p {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-logos div {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-logos div:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tech-logos svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

footer a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #45b7d1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 48px;
    margin-bottom: 25px;
  }
  
  #searchInput {
    font-size: 16px;
    padding: 15px 55px 15px 20px;
  }
  
  .search-container .super-button {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .info-box {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .info-box h2 {
    font-size: 22px;
  }
  
  .info-box p {
    font-size: 15px;
  }
  
  .quick-links {
    padding: 15px;
  }
  
  .tags span {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .tech-logos {
    gap: 15px;
  }
  
  .tech-logos div {
    width: 45px;
    height: 45px;
  }
  
  .tech-logos svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 36px;
  }
  
  #searchInput {
    font-size: 14px;
    padding: 12px 50px 12px 18px;
  }
  
  .search-container .super-button {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .info-box {
    padding: 20px;
  }
  
  .info-box h2 {
    font-size: 20px;
  }
  
  .info-box p {
    font-size: 14px;
  }
  
  .quick-links h3 {
    font-size: 16px;
  }
  
  .tags span {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .tech-logos div {
    width: 40px;
    height: 40px;
  }
  
  .tech-logos svg {
    width: 20px;
    height: 20px;
  }
}

/* Info Toggle Styles */
.info-toggle {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  max-width: 700px;
  width: 100%;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.info-toggle-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.info-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.info-toggle-btn:active {
  transform: translateY(0);
}

.chevron-down {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.chevron-down.rotated {
  transform: rotate(180deg);
}

.info-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.info-box.show {
  max-height: 1500px;
  opacity: 1;
  animation: fadeInUp 0.5s ease-out;
}

.info-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.info-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.info-box .highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}