:root {
  --primary: #FF9800;
  --accent: #FF6D00;
  --bg: #FFF3E0;
  --text: #333;
  --white: #fff;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 720px;
  margin: 3rem auto;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.05);
}

.container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 48%, var(--accent) 50%, transparent 52%);
  opacity: 0.07;
  animation: rotateGrid 30s linear infinite;
  z-index: 0;
}

@keyframes rotateGrid {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  position: relative;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.row {
  display: flex;
  gap: 1rem;
}

button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  padding: 1rem;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 109, 0, 0.3);
}

.anonimo {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Dropdown personalizado */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 10px;
  display: none;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.dropdown-menu li {
  padding: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-menu li:hover {
  background: var(--bg);
}

#statusMsg {
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 0.5rem;
}
