 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Orbitron', sans-serif;
     background: radial-gradient(circle at top, #0a0a0a, #000);
     color: #fff;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 1rem;
 }

 header h1 {
     font-size: 2.2rem;
     letter-spacing: 1.5px;
     color: #00e6ff;
     text-shadow: 0 0 15px rgba(0, 230, 255, 0.7);
     animation: fadeDown 1.5s ease;
 }

 header p {
     margin-top: 0.5rem;
     font-size: 1rem;
     color: #bbb;
     animation: fadeDown 2s ease;
 }

 .search-container {
     margin-top: 2rem;
     width: 100%;
     max-width: 600px;
     animation: fadeUp 1.5s ease;
 }

 .search-box {
     display: flex;
     width: 100%;
 }

 .search-box input[type="text"] {
     flex: 1;
     padding: 1rem;
     font-size: 1rem;
     border: 2px solid #00e6ff;
     border-right: none;
     border-radius: 30px 0 0 30px;
     outline: none;
     background: #111;
     color: #fff;
     transition: all 0.3s ease;
 }

 .search-box input[type="text"]:focus {
     box-shadow: 0 0 15px #00e6ff;
 }

 .search-box button {
     padding: 1rem 1.5rem;
     font-size: 1rem;
     border: 2px solid #00e6ff;
     border-radius: 0 30px 30px 0;
     background: #00e6ff;
     color: #000;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .search-box button:hover {
     background: #00b3cc;
     box-shadow: 0 0 15px #00e6ff;
     transform: scale(1.05);
 }

 footer {
     margin-top: 3rem;
     font-size: 0.9rem;
     color: #888;
     animation: fadeUp 2s ease;
 }

 footer span {
     color: #00e6ff;
     font-weight: bold;
 }

 /* Animations */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Fix */
 @media (max-width: 600px) {
     .search-box {
         flex-direction: column;
     }

     .search-box input[type="text"] {
         border-radius: 30px;
         border-right: 2px solid #00e6ff;
         margin-bottom: 0.8rem;
     }

     .search-box button {
         border-radius: 30px;
         width: 100%;
     }
 }