/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
body {
  font-family: Arial, sans-serif;
  background: #1a1c1c;
  background: linear-gradient(135deg, rgba(26, 28, 28, 1) 0%, rgba(41, 46, 43, 1) 50%, rgba(64, 59, 54, 1) 100%);
  color: #656565;
  text-align: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

/* Logo */
.logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

/* Main message */
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #ffdd00;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.95rem;
}
