/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0f0f12;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 500px;
  background: #1b1b23;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 120px;
  margin-bottom: 15px;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00f0ff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

header p {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin-bottom: 20px;
}

.placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #262631;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #999;
}

footer p {
  font-size: 0.75rem;
  color: #888;
  margin-top: 20px;
  line-height: 1.2;
}
