body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #1c1c1c url("assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

header {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  text-align: center;
}

.logo {
  height: 80px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 10px 15px;
}

nav a {
  color: #ff9933;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 20px;
}

.promo {
  flex: 3;
  padding: 20px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 10px;
  min-width: 300px;
}

.sidebar {
  flex: 1;
  min-width: 280px;
}

.discord-widget, .facebook, .countdown, .purchase-btn {
  background: #2a2a2a;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #ff9933;
  border-radius: 5px;
}

.button {
  display: inline-block;
  margin-top: 15px;
  background: #ff9933;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background: #e68600;
  color: #fff;
}

.news {
  margin-top: 40px;
  text-align: center;
}

.news-item img {
  max-width: 100%;
  border: 2px solid #ff9933;
  border-radius: 5px;
}
