@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
   font-family: 'Inter', sans-serif;
   margin: 0;
   padding: 0;
   background-color: #f4f4f9;
   color: #333;
}

.container {
   max-width: 800px;
   margin: 2em auto;
   padding: 2em;
   background-color: #fff;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
   color: #333;
   text-align: center;
}

form {
   display: flex;
   justify-content: center;
   margin-bottom: 2em;
}

input[type="text"] {
   padding: 0.8em;
   width: 70%;
   border: 1px solid #ccc;
   border-radius: 4px 0 0 4px;
   font-size: 1em;
}

button {
   padding: 0.8em 1.5em;
   background-color: #007bff;
   color: white;
   border: none;
   border-radius: 0 4px 4px 0;
   cursor: pointer;
   font-size: 1em;
}

button:hover {
   background-color: #0056b3;
}

ul {
   list-style-type: none;
   padding: 0;
}

li {
   margin-bottom: 1em;
   border: 1px solid #eee;
   padding: 1.5em;
   border-radius: 4px;
   background-color: #fafafa;
}

li strong {
   font-size: 1.2em;
   color: #0056b3;
}

a {
   color: #007bff;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

/* Nano Banana Badge Style */
.stats-container {
   text-align: center;
   margin-bottom: 2em;
}

.nano-badge {
   background: #e0e0e0;
   color: #333;
   padding: 0.5em 1.2em;
   border-radius: 9999px;
   font-size: 0.9em;
   font-weight: 500;
   display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 600px) {
   .container {
      margin: 0;
      border-radius: 0;
      padding: 1em;
   }

   form {
      flex-direction: column;
   }

   input[type="text"] {
      width: 100%;
      border-radius: 4px;
      margin-bottom: 0.5em;
      box-sizing: border-box;
   }

   button {
      width: 100%;
      border-radius: 4px;
   }
}