* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #e0f7ff;
}

.container {
  width: 95%;
  max-width: 600px;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  text-align: center;
  color: #00f0ff;
  text-shadow: 0 0 15px #00f0ff88;
  font-size: 1.5rem;
}

textarea {
  width: 100%;
  height: 120px;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.9);
  color: #e0f7ff;
  outline: none;
  resize: none;
  box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.3);
}

textarea::placeholder {
  color: #888;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.styled-button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #00c3ff, #007acc);
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #00f0ffaa;
}

.styled-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00f0ff, #00c3ff);
  box-shadow: 0 0 25px #00eaff;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 1.5rem;
}

footer strong {
  color: #00f0ff;
  text-shadow: 0 0 6px #00f0ff88;
}

footer small {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  color: #555;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #00f0ff;
  margin-top: 8px;
  transition: transform 0.3s ease;
}

.insta-link:hover {
  transform: scale(1.05);
}

.insta-link img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 5px #00f0ff);
}

@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    justify-content: space-between;
  }
}
