/* ضبط عام */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial Black', 'Arial', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  margin: 0;
}

/* الحاوية الرئيسية */
.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* سنترة إجبارية */
}

/* صندوق المحتوى */
.content-wrapper {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* تضمن أن الزرار واللوجو في المنتصف تماماً */
  text-align: center;
}

/* اللوجو - حجم متجاوب */
.logo-image {
  width: clamp(100px, 12vw, 150px); /* لن يصغر عن 100 ولن يزيد عن 150 */
  height: auto;
  margin-bottom: 20px;
}

.location {
  font-size: 11px;
  color: #ff2c2c;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/* العنوان الرئيسي */
.title {
  font-size: clamp(60px, 15vw, 130px);
  line-height: 0.8;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.title span {
  color: #800020;
}

.tagline {
  font-size: clamp(10px, 1.5vw, 14px);
  letter-spacing: 5px;
  color: #666;
  margin-bottom: 60px;
}

/* العداد */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 5vw, 40px);
  margin-bottom: 60px;
}

.countdown span {
  font-size: clamp(35px, 8vw, 65px);
  font-weight: bold;
  display: block;
}

.countdown p {
  font-size: 10px;
  color: #555;
}

/* الزرار - السنتر النهائي */
.drop-btn {
  background: transparent;
  color: #800020;
  border: 1px solid #800020;
  padding: 15px 60px;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block; /* لضمان التمركز */
  margin: 0 auto; 
}

.drop-btn:hover {
  background: #800020;
  color: #fff;
}