body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background: #0f0f0f;
  color: #e0e0e0;
}

header, footer {
  background: #1a1a1a;
  padding: 1rem;
  text-align: center;
}

nav a {
  margin: 0 1rem;
  color: #b6f7a0;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 2rem;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.2rem;
  background-color: #1a1a1a;
  color: #e0e0e0;
  border: 1px solid #444;
}

button {
  background: #b6f7a0;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #000;
}

/* Animated SVG logos */
.animated-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: auto;
  opacity: 0.8;
  transition: transform 1s ease, opacity 0.6s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(3deg);
  opacity: 1;
}

.logo.inter {
  animation: float 4s ease-in-out infinite;
}

.logo.zone {
  animation: pulse 6s ease-in-out infinite;
}

.logo.community {
  animation: rotate 10s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
