@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800;900&family=Inter:wght@400;600;800;900&display=swap');

:root {
  --blue: #8ec8ff;
  --blue-strong: #4aa3ff;
  --dark: #020711;
  --text: #eaf5ff;
  --muted: #9eb5c9;
  --glass: rgba(255, 255, 255, 0.055);
  --border: rgba(170, 220, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--dark);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* خلفية بالكود فقط */
.blue-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(circle at 18% 45%, rgba(93, 177, 255, 0.28), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(20, 93, 160, 0.25), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(115, 195, 255, 0.14), transparent 35%),
    linear-gradient(135deg, #020711 0%, #071526 45%, #02050c 100%);
}

/* دخان خفيف */
.smoke {
  position: fixed;
  width: 70vw;
  height: 30vh;
  background: radial-gradient(ellipse, rgba(190, 225, 255, 0.20), transparent 70%);
  filter: blur(38px);
  z-index: -3;
  pointer-events: none;
  animation: smokeMove 18s infinite alternate ease-in-out;
}

.smoke-one {
  left: -20vw;
  bottom: 2vh;
}

.smoke-two {
  right: -20vw;
  top: 20vh;
  opacity: 0.55;
  animation-duration: 24s;
}

.smoke-three {
  left: 20vw;
  bottom: -8vh;
  opacity: 0.45;
  animation-duration: 30s;
}

@keyframes smokeMove {
  from {
    transform: translateX(-6vw) translateY(0);
  }

  to {
    transform: translateX(12vw) translateY(-3vh);
  }
}

/* شكل الماوس الدموي */
.cursor-blood {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 2px solid #9b0000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  box-shadow:
    0 0 12px rgba(180, 0, 0, 0.8),
    inset 0 0 8px rgba(255, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.cursor-blood::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 14px;
  background: #8b0000;
  left: 8px;
  top: 17px;
  border-radius: 0 0 8px 8px;
}

/* الهيدر */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  padding: 0 7vw;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(2, 7, 17, 0.95), rgba(2, 7, 17, 0));
}

/* اللوجو + اسم الشركة */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand img {
  height: 82px;       /* حجم لوجو الشركة */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(142, 200, 255, 0.32));
}

.brand strong {
  display: block;
  color: white;
  font-size: 24px;   /* حجم اسم الشركة */
  font-weight: 900;
  letter-spacing: 4px;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* روابط الهيدر */
nav {
  display: flex;
  gap: 34px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.25s;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 18px rgba(142, 200, 255, 0.8);
}

/* الصفحة الأولى */
.hero {
  min-height: 100vh;
  padding: 145px 7vw 75px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: center;
}

/* الشمال */
.cover-side {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
}

/* كارت الغلاف */
.game-cover-card {
  width: 390px;       /* عرض كارت الغلاف */
  padding: 15px;
  border-radius: 26px;
  background: rgba(5, 18, 33, 0.78);
  border: 1px solid rgba(142, 200, 255, 0.35);
  box-shadow:
    0 0 18px rgba(142, 200, 255, 0.35),
    0 0 55px rgba(74, 163, 255, 0.24),
    0 45px 100px rgba(0, 0, 0, 0.65);
  animation: coverFloat 5s ease-in-out infinite, blueGlow 2.8s ease-in-out infinite;
  transform: perspective(1000px) rotateY(6deg);
}

@keyframes coverFloat {
  50% {
    transform: perspective(1000px) rotateY(3deg) translateY(-10px);
  }
}

@keyframes blueGlow {
  50% {
    box-shadow:
      0 0 26px rgba(142, 200, 255, 0.65),
      0 0 85px rgba(74, 163, 255, 0.40),
      0 45px 100px rgba(0, 0, 0, 0.65);
  }
}

/* شريط فوق الغلاف */
.case-top {
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #061424, #16446e, #061424);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

/* صورة الغلاف */
.cover-image {
  height: 535px;      /* طول صورة الغلاف */
  margin: 13px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(142, 200, 255, 0.25);
  background: #071526;
}

.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.1);
}

/* زر GO TO STEAM تحت الغلاف */
.case-bottom {
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(142, 200, 255, 0.25);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  transition: 0.25s;
}

.case-bottom:hover {
  background: rgba(142, 200, 255, 0.95);
  color: #04111f;
  box-shadow: 0 0 35px rgba(142, 200, 255, 0.55);
}

/* اليمين */
.text-side {
  position: relative;
  z-index: 20;
  max-width: 740px;
}

.present {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-family: Cinzel, serif;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -3px;
  text-shadow: 0 0 35px rgba(142, 200, 255, 0.22);
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(44px, 6vw, 86px);
  text-shadow: 0 0 42px rgba(142, 200, 255, 0.6);
}

.description {
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.75;
}

/* كروت التفاصيل */
.details {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.details div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.details small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.details strong {
  font-size: 14px;
}

/* الأزرار */
.buttons {
  margin-top: 36px;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

/* الزرين شفافين */
.btn {
  min-width: 245px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(142, 200, 255, 0.30);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

/* إضاءة عند الوقوف */
.btn:hover {
  color: #03101d;
  background: rgba(142, 200, 255, 0.95);
  box-shadow:
    0 0 18px rgba(142, 200, 255, 0.65),
    0 0 50px rgba(74, 163, 255, 0.35);
  transform: translateY(-4px);
}

/* جزء القصة */
.story {
  padding: 110px 7vw;
  max-width: 1050px;
  position: relative;
  z-index: 20;
}

.story h2,
.media h2 {
  font-family: Cinzel, serif;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.story p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.85;
}

.story h3 {
  margin-top: 28px;
  color: #ff6270;
  font-size: 15px;
  letter-spacing: 3px;
}

/* الشوتس */
.media {
  padding: 80px 7vw 120px;
  position: relative;
  z-index: 20;
}

.shots {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shots img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(142, 200, 255, 0.25);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(142, 200, 255, 0.10);
  filter: brightness(0.82) contrast(1.1);
  transition: 0.25s;
}

.shots img:hover {
  transform: translateY(-8px);
  filter: brightness(1) contrast(1.12);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(142, 200, 255, 0.28);
}

/* الحقوق */
footer {
  position: relative;
  z-index: 20;
  padding: 34px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(142, 200, 255, 0.16);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

/* موبايل */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-side {
    margin: auto;
  }

  .details {
    grid-template-columns: 1fr;
  }

  .buttons {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  body {
    cursor: auto;
  }

  .cursor-blood {
    display: none;
  }

  .header {
    height: 90px;
    padding: 0 22px;
  }

  .brand img {
    height: 58px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand span {
    display: none;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 120px 22px 60px;
  }

  .game-cover-card {
    width: 335px;
    transform: none;
  }

  .cover-image {
    height: 465px;
  }

  .description {
    font-size: 18px;
  }

  .shots {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
/* يخلي الشمال عمودي: الغلاف فوق والعداد تحته */
.cover-side {
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

/* الماوس نقطة حمرا نيون */
.cursor-blood {
  width: 10px;
  height: 10px;
  background: #ff002b;
  border: none;
  border-radius: 50%;
  box-shadow:
    0 0 10px #ff002b,
    0 0 25px #ff002b,
    0 0 45px rgba(255, 0, 43, 0.65);
}

.cursor-blood::after {
  display: none;
}

/* Countdown */
.release-countdown {
  width: 100%;
  max-width: 430px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(142, 200, 255, 0.25);
  box-shadow: 0 0 35px rgba(74, 163, 255, 0.14);
  text-align: center;
}

.release-countdown p {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.timer div {
  padding: 14px 8px;
  border-radius: 16px;
  background: rgba(142, 200, 255, 0.07);
  border: 1px solid rgba(142, 200, 255, 0.18);
}

.timer strong {
  display: block;
  color: white;
  font-size: 28px;
  text-shadow: 0 0 20px rgba(142, 200, 255, 0.7);
}

.timer span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* روابط السوشيال */
.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.25s;
}

.social-links a:hover {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(142, 200, 255, 0.8);
}