@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #2d2d2d;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  backdrop-filter: blur(12px);
  background: rgba(45, 45, 45, 0.6);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #ffb300, #fe3a06);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 1.5s ease;
}

nav ul li a:hover {
  color: #fe3a06;
}

.discord-btn {
  background-color: #fe3a06;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #ff5722;
}

/* SHOP */
.shop {
  text-align: center;
  padding: 120px 40px 60px;
}

.shop h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.6rem;
  color: #fe3a06;
  margin-top: 40px;
}

.section-desc {
  color: #ccc;
  margin-bottom: 40px;
}

.vip-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vip-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.vip-card:hover {
  transform: translateY(-10px);
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fe3a06;
}

.discount {
  background: red;
  color: white;
  font-size: 0.8rem;
  border-radius: 5px;
  padding: 3px 6px;
  margin-left: 8px;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

ul {
  text-align: left;
  margin: 15px 0;
  line-height: 1.6;
}

.buy-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #fe3a06, #ff7a00);
  border: none;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.buy-btn:hover {
  transform: scale(1.05);
}

/* DONATIONS */
.donations {
  text-align: center;
  padding: 80px 40px;
}

.donation-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.donation-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.donation-card:hover {
  transform: translateY(-10px);
}

.donation-card h4 {
  color: #fe3a06;
  margin-bottom: 10px;
}

.price {
  color: #fe3a06;
  font-weight: bold;
  margin: 10px 0;
}

/* FOOTER */
footer {
  background-color: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
}

footer p:last-child {
  color: #fe3a06;
}
