body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #000814, #001d3d);
  color: #e0e0e0;
}

/* HEADER */
header {
  background-color: #000c1a;
  border-bottom: 1px solid #003566;
  padding: 20px 0;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
  width: 45px;
  border-radius: 12px;
  border: 2px solid #00b4d8;
  transition: transform 0.3s ease, box-shadow 0.2s;
  cursor: pointer;
}

.logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.logo:active {
  transform: scale(0.95);
  box-shadow: none;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #d0d0ff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #00b4d8;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
  background: radial-gradient(circle at center, #001d3d, #000814);
}

.hero h1 {
  font-size: 3rem;
  color: #00b4d8;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #a0a0a0;
}

/* HAKKIMIZDA */
.about-section {
  text-align: center;
  padding: 60px 20px;
}

.about-section h2 {
  font-size: 2rem;
  color: #90e0ef;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  color: #c0c0c0;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* BUTTONS */
.button-section {
  text-align: center;
  padding: 40px 20px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  margin: 10px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.btn:active {
  transform: scale(0.95);
}

.discord {
  background-color: #5865F2;
  color: #fff;
  border: 2px solid #5865F2;
}

.discord:hover {
  background-color: transparent;
  color: #5865F2;
}

.shopier {
  background-color: #00c3ff;
  color: #000;
  border: 2px solid #00c3ff;
}

.shopier:hover {
  background-color: transparent;
  color: #00c3ff;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #000c1a;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #003566;
}
