@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  /*background: linear-gradient(135deg, #0a0a2e, #1a1a4e);*/
  background:#0A0A2E; 
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
header {
	position: fixed;
  padding: 5px;
  padding-left: 20px;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: left;
}
.logo {
  max-width: 280px;
  margin: 20px auto;
  display: block;
  border: 4px solid #00ffcc;
  border-radius: 15px;
  /*box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);*/
  box-shadow: 0 0 30px rgba(234, 234, 234, 0.6);
  float:left;

}
h1 {
  color: #00ffcc;
  text-shadow: 0 0 15px #00ffcc;
  margin: 10px 0;
}
.hero {
  padding: 10px 10px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 46, 0.75);
}
.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.btn {
  display: inline-block;
  margin: 20px 10px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-primary {
  background: #00ff88;
  color: #000;
}
.btn-primary:hover {
  background: #ff00aa;
  color: white;
  transform: scale(1.1);
}
section {
  padding: 20px 20px;
}
.features {
  background: #1a1a4e;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #00ffcc;
}
footer {
  background: #0a0a2e;
  padding: 10px 10px;
  font-size: 0.9rem;
}
input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #222;
  color: white;
}
.success { color: #00ff88; font-weight: bold; }
.error { color: #ff3366; font-weight: bold; }
 