body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #f5f5f5;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* 🔥 خلفية لهب متحرك */
.fire-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, #ff6600, #ff0000, #111);
  animation: flames 6s infinite alternate;
  z-index: -1;
}

@keyframes flames {
  0% { filter: blur(40px) hue-rotate(0deg); }
  50% { filter: blur(60px) hue-rotate(30deg) brightness(1.2); }
  100% { filter: blur(40px) hue-rotate(-30deg) brightness(0.9); }
}

header {
  padding: 40px 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  box-shadow: 0 0 25px rgba(255, 0, 100, 0.7);
  border-bottom: 2px solid #ff3300;
}

header .logo {
  width: 120px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

.content {
  flex: 1;
  padding: 40px 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.6);
  margin: 30px auto;
  border-radius: 15px;
  max-width: 800px;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.6);
}

button {
  background: linear-gradient(90deg, #ff6600, #ff0000);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 25px rgba(255, 80, 0, 0.8);
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 50, 0, 1);
  background: linear-gradient(90deg, #ff3300, #ff6600);
}

footer {
  background: rgba(0,0,0,0.8);
  padding: 20px;
  font-size: 0.9rem;
  border-top: 2px solid #ff3300;
}

.socials {
  margin-bottom: 10px;
}

.socials a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  color: #ff6600;
  transition: 0.3s;
}

.socials a:hover {
  color: #ffff66;
}