* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #1d1d2c, #0b0b17);
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: rgba(11, 95, 255, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2.5em;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

main {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

main p {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.btn-container {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-mirrors {
  background-color: #0044ff;
}

.btn-home {
  background-color: #ff0000;
}

.btn-home:hover {
  background-color: #ff0000;
}

.btn-mirrors:hover {
  background-color: #0044ff;
}

footer {
  background: rgba(255,255,255,0.05);
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer span {
  color: #0b5fff;
  font-weight: 600;
}