* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Tahoma", "Arial", sans-serif;
  background: #0f0f0f;
  color: #fff;
}

body {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  isolation: isolate;
}

.bg-video,
.bg-image,
.overlay {
  position: absolute;
  inset: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.bg-image {
  background-image: url("../media/coming-soon.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -4;
}

.overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.75)),
    rgba(0,0,0,0.35);
  z-index: -2;
}

.content {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 14px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.desc {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.92);
}

.actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn {
  min-width: 160px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #111111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.mini-info p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* موبايل */
@media (max-width: 768px) {
  .content {
    padding: 32px 18px;
    border-radius: 18px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .actions {
    flex-direction: column;
  }
}