@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0b0b0f;
  overflow-x: hidden;
  color: #fff;
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255,60,0,0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,60,0,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255,70,0,0.25), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255,0,100,0.25), transparent 60%);
  filter: blur(60px);
  z-index: -3;
}

@keyframes load {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulse {
  to { text-shadow: 0 0 40px #ff2200; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-up.show {
  animation: fadeUp 1s ease forwards;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  margin: 0.5rem;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #ff2200, #ff7700);
  box-shadow: 0 0 15px rgba(255,70,0,0.5);
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(255,100,40,0.8);
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  animation: fadeOut 3s ease 2.5s forwards;
}

.intro h1 {
  font-size: 2rem;
  color: #ff4500;
  text-shadow: 0 0 20px #ff2200;
  animation: pulse 1.5s alternate infinite;
}

.progress {
  margin-top: 1rem;
  width: 200px;
  height: 6px;
  background: rgba(255,60,0,0.2);
  border-radius: 5px;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #ff2200, #ff7700);
  animation: load 2.5s ease forwards;
}

header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #ff2200, #ff7700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff7700;
}

.discord-btn {
  background: linear-gradient(90deg, #ff2f2f, #ff653e);
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(200,0,255,0.8);
}

.hero {
  margin-top: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 40px rgba(255,70,0,0.4);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #ff2200, #ff7700, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

section {
  padding: 5rem 2rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(90deg, #ff2200, #ff7700, #ff00d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.showcase img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255,70,0,0.5);
}

.showcase-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff7700;
}

.showcase-text p {
  color: #ccc;
  line-height: 1.5;
}

.plans {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.plan {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255,0,80,0.3);
}

.plan h3 {
  margin-bottom: 0.5rem;
  color: #ff8800;
}

.plan small {
  color: #bbb;
  display: block;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.features-list {
  text-align: left;
  margin: 1rem 0;
}

.features-list li {
  margin: 0.5rem 0;
  color: #ccc;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
}

details summary {
  cursor: pointer;
  font-weight: 700;
  color: #ff7700;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-showcase {
  margin-top: 2rem;
  perspective: 1000px;
  text-align: center;
  border: 1px solid rgba(255, 100, 0, 0.2);
  box-shadow: 0 0 25px rgba(255, 80, 0, 0.6), 0 0 50px rgba(255, 0, 150, 0.4);
}

.hero-showcase img {
  max-width: 90%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(255,70,0,0.5);
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-showcase img:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(255,90,0,0.7);
}