html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 40px;
  max-width: 800px;
}

.logo {
  max-width: 420px;
  width: 100%;
  margin-bottom: 40px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: #fff;
}

p {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.5;
}

.greek {
  margin-top: 40px;
  font-size: 0.95rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.credit {
  margin-top: 32px;
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.hero {
  margin-top: 36px;
}

.hero img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  opacity: 0.95;
}

.text {
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.small {
  font-size: 0.9rem;
  opacity: 0.7;
}

