:root {
  --gold-light: #fff5c3;
  --gold-base: #d4af37;
  --gold-dark: #aa892c;
  --bg-deep: #000000;
  --glass-border: rgba(212, 175, 55, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--bg-deep);
  background-image: radial-gradient(circle at 50% -10%, #221c00 0%, #000000 70%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.5px;
  background: linear-gradient(to bottom, #fff, var(--gold-base));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  user-select: none;
}

/* Menu button */
.menu-btn {
  font-size: 28px;
  color: var(--gold-base);
  cursor: pointer;
  user-select: none;
  line-height: 1;
  outline: none;
}

/* Dropdown menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--gold-base);
  text-align: center;
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 15px;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-link:last-child { border: none; }
.menu-link:hover { color: var(--gold-base); background: rgba(255,255,255,0.05); }

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #fff;
  font-weight: 900;
}

p {
  font-size: 19px;
  color: #ccc;
  margin-bottom: 25px;
  font-weight: 300;
}

/* Media */
.media-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.main-image { width: 100%; height: auto; display: block; }

/* Offer card */
.offer-card {
  position: relative;
  background: linear-gradient(160deg, rgba(30,30,30,0.6) 0%, rgba(10,10,10,0.8) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-top: 2px solid var(--gold-base);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.offer-title {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}

.price-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.price-box {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 12px;
  min-width: 110px;
  border: 1px solid rgba(255,255,255,0.1);
}

.price-label { font-size: 13px; color: #888; margin-bottom: 5px; }
.price-val { font-size: 28px; font-weight: 900; color: #fff; }

.price-val.gold {
  color: var(--gold-base);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  font-size: 32px;
}

.arrow-icon { color: var(--gold-base); font-size: 24px; }

/* Buttons */
.btn-gold {
  display: block;
  background: linear-gradient(135deg, #d4af37 0%, #fff5c3 50%, #aa892c 100%);
  background-size: 200% auto;
  color: #000;
  font-weight: 900;
  padding: 22px;
  text-decoration: none;
  border-radius: 14px;
  font-size: 24px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  animation: shineGold 3s infinite linear;
  border: 2px solid rgba(255,255,255,0.5);
}

@keyframes shineGold { to { background-position: 200% center; } }
.btn-gold:active { transform: scale(0.98); }

/* Comments */
.comment-item {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  display: flex;
}

.avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: #222;
  color: var(--gold-base);
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
  margin-left: 15px;
  border: 1px solid var(--gold-dark);
  flex-shrink: 0;
}

/* Sticky footer CTA */
.sticky-footer {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 999;
}

.sticky-btn-inner {
  display: block;
  background: var(--gold-base);
  color: #000;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border: 1px solid #fff;
}

/* RTL-safe for currency blocks */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
