body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f0f0;
  color: #222;
  text-align: center;
  margin: 0;
  padding: 40px 20px;
  transition: background 0.3s, color 0.3s;
}

.container {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.googlemogago-logo {
  font-size: 2.5rem;
  font-weight: bold;
  word-wrap: break-word;
}

.subtitle {
  color: #555;
  font-size: 18px;
  margin-bottom: 20px;
}

.input-section {
  margin-bottom: 20px;
}

input[type="text"] {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px 5px 0;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

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

.copy-btn {
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.copy-btn:hover {
  background-color: #0056b3;
}

.animation-box {
  font-family: monospace;
  font-size: 20px;
  margin-top: 30px;
  min-height: 30px;
  white-space: pre-wrap;
}

.message {
  margin-top: 10px;
  font-style: italic;
  color: #777;
}

.shareable-link {
  margin-top: 20px;
  font-size: 14px;
  word-break: break-word;
  padding: 0 10px;
}

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

.shareable-link a:hover {
  text-decoration: underline;
}

.dark-mode {
  background-color: #111;
  color: #ddd;
}

.dark-mode input[type="text"] {
  background-color: #222;
  color: #eee;
  border-color: #555;
}

.dark-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* 🎯 MOBILE FRIENDLY */
@media screen and (max-width: 600px) {
  .googlemogago-logo {
    font-size: 2rem;
  }

  input[type="text"] {
    width: 100%;
    font-size: 14px;
  }

  button,
  .copy-btn {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 10px;
  }

  .dark-toggle {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 6px 10px;
  }
}
