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

/* BASE */
body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #f2f2f2;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.logo svg {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.logo rect {
  fill: #111;
  stroke: #ff2cff;
  stroke-width: 6;
}

.logo text {
  fill: #00ffe0;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 4px;
  font-family: Impact, "Arial Black", sans-serif;
}

.logo polygon {
  fill: #ff2cff;
}

.tagline {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* SECTIONS */
section {
  margin-bottom: 3.5rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ff2cff;
}

p {
  margin-bottom: 1rem;
}

/* COMING SOON */
.coming-soon {
  background: linear-gradient(135deg, #111, #1a1a1a);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
}

/* CONTACT */
.contact a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #00ffe0;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 3rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .logo text {
    font-size: 32px;
  }
}
