﻿


:root {
  
  --cyan:         #00c8f0;
  --cyan-light:   #40e0ff;
  --cyan-dark:    #0090c0;

  
  --purple:       #9b30ff;
  --purple-light: #c060ff;
  --purple-dark:  #6818d0;

  
  --pink:         #e040c0;
  --pink-light:   #ff60d8;

  
  --bg:           #050810;
  --bg-card:      rgba(8, 11, 24, 0.92);

  
  --border:       rgba(0, 200, 240, 0.16);
  --border-h:     rgba(0, 200, 240, 0.42);

  
  --text:         #d4e8f8;
  --text-dim:     rgba(212, 232, 248, 0.5);

  --nav-h:        130px;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  overflow-x: hidden;
  direction: rtl;
}


.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,240,0.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: orbDrift 10s ease-in-out infinite;
}

.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,48,255,0.1) 0%, transparent 70%);
  bottom: 5%; right: -100px;
  animation: orbDrift 13s ease-in-out infinite reverse;
  animation-delay: 2s;
}

.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,64,192,0.08) 0%, transparent 70%);
  top: 55%; left: -80px;
  animation: orbDrift 11s ease-in-out infinite;
  animation-delay: 5s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -24px); }
  66%       { transform: translate(-14px, 18px); }
}


.wrapper { position: relative; z-index: 2; }


nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(5, 8, 16, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}


.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.nav-logo {
  height: 114px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

nav a {
  color: rgba(212, 232, 248, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px; right: 0;
  width: 0; height: 1px;
  background: linear-gradient(to left, var(--cyan), var(--purple));
  transition: width 0.3s ease;
}
nav a:hover { color: var(--cyan-light); }
nav a:hover::after { width: 100%; }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 48px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}


.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  border: 1px solid rgba(0,200,240,0.4);
  border-radius: 40px;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan-light);
  background: rgba(0,200,240,0.07);
  margin-bottom: 36px;
  animation: badgePulse 3.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,240,0.25); }
  55%       { box-shadow: 0 0 0 10px rgba(0,200,240,0); }
}


.hero-title {
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan) 35%, var(--purple) 70%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmerText 5s ease-in-out infinite;
}
.hero-title span { display: block; }

@keyframes shimmerText {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}


.hero-sub {
  font-size: clamp(0.92rem, 2.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 40px;
}


.hero-sep {
  width: 100px; height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), var(--purple), transparent);
  margin: 0 auto 40px;
}


.hero-stats {
  display: flex;
  justify-content: center;
  max-width: 660px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8,11,24,0.8);
  backdrop-filter: blur(14px);
}
.hs {
  flex: 1;
  padding: 22px 14px;
  text-align: center;
  position: relative;
}
.hs + .hs::before {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.hs-num {
  font-size: 1.65rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: 4px;
}


.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,200,240,0.4);
  animation: scrollBounce 2.5s ease-in-out infinite;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
}
.arrow-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


section {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--cyan-light) 40%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.title-line {
  width: 56px; height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), var(--purple), transparent);
  margin: 0 auto;
}


.video-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px var(--border),
    0 0 50px rgba(0,200,240,0.08),
    0 28px 72px rgba(0,0,0,0.65);
  transition: box-shadow 0.5s ease;
}
.video-frame:hover {
  box-shadow:
    0 0 0 1px var(--border-h),
    0 0 70px rgba(0,200,240,0.15),
    0 36px 90px rgba(0,0,0,0.75);
}
.video-frame video { width: 100%; display: block; }
.video-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan-dark), transparent, var(--purple-dark));
  z-index: -1;
  opacity: 0.45;
}
.corner {
  position: absolute;
  width: 20px; height: 20px;
  border-style: solid;
  z-index: 1;
}
.corner { border-color: var(--cyan); }
.corner.tl { top: -6px; right: -6px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner.tr { top: -6px; left: -6px;  border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner.bl { bottom: -6px; right: -6px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner.br { bottom: -6px; left: -6px;  border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }


.rules-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.admin-card {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


.rule-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0,200,240,0.04) 0%, transparent 60%);
  pointer-events: none;
}


.rule-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.rule-card:hover::after { opacity: 1; }
.rule-card:hover {
  box-shadow: 0 16px 50px rgba(0,200,240,0.08), 0 0 0 1px var(--border-h);
  border-color: rgba(0,200,240,0.35);
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan-dark), var(--purple));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,200,240,0.2);
}
.card-icon svg {
  width: 21px; height: 21px;
  fill: none; stroke: #fff;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.rule-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--cyan-light);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.rule-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rule-card ul li {
  font-size: 0.87rem;
  color: rgba(212, 232, 248, 0.78);
  line-height: 1.7;
  padding-right: 16px;
  position: relative;
}
.rule-card ul li::before {
  content: '';
  position: absolute;
  right: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}


.rule-card.highlight {
  border-color: rgba(0,200,240,0.28);
  background: linear-gradient(145deg, rgba(4,12,28,0.95), rgba(8,11,24,0.95));
}


.rule-card.danger { border-color: rgba(180,40,40,0.22); }
.rule-card.danger::before { background: linear-gradient(140deg, rgba(180,30,30,0.04) 0%, transparent 60%); }
.rule-card.danger .card-icon { background: linear-gradient(135deg, #6e1212, #ad2e2e); box-shadow: 0 4px 16px rgba(170,30,30,0.22); }
.rule-card.danger h3 { color: #ff7070; }
.rule-card.danger ul li::before { background: #ff4444; box-shadow: 0 0 5px #ff2222; }
.rule-card.danger::after { background: linear-gradient(to left, transparent, #ff4444, transparent); }


.prizes-row { display: flex; flex-direction: column; gap: 9px; }
.prize-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,200,240,0.04);
  border: 1px solid rgba(0,200,240,0.1);
  border-radius: 8px;
  padding: 9px 12px;
  transition: background 0.3s, border-color 0.3s;
}
.prize-item:hover { background: rgba(0,200,240,0.09); border-color: rgba(0,200,240,0.22); }
.prize-rank { font-size: 1.25rem; font-weight: 900; min-width: 34px; text-align: center; }
.prize-rank.gold   { color: #ffd700; text-shadow: 0 0 8px rgba(255,215,0,0.6); }
.prize-rank.silver { color: #c8c8c8; text-shadow: 0 0 8px rgba(200,200,200,0.4); }
.prize-rank.bronze { color: #cd7f32; text-shadow: 0 0 8px rgba(205,127,50,0.5); }
.prize-info { flex: 1; }
.prize-info .place  { font-size: 0.73rem; color: var(--text-dim); }
.prize-info .amount {
  font-size: 1.05rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.owners-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 44px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  min-width: 190px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.owner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), var(--purple), transparent);
}
.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0,200,240,0.1), 0 0 0 1px var(--border-h);
  border-color: rgba(0,200,240,0.35);
}

.owner-avatar-wrap {
  position: relative;
  width: 108px; height: 108px;
  flex-shrink: 0;
}
.owner-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--cyan), var(--purple), var(--pink), var(--cyan));
  animation: rotateBorder 5s linear infinite;
}
.owner-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: var(--bg);
}
.owner-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}
.owner-name {
  font-size: 1.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.owner-role {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,200,240,0.5);
}


.accounts-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.account-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 28px 38px;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.account-card:hover { transform: translateY(-10px); }


.account-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0.6;
  transition: opacity 0.4s;
}
.account-card:hover::before { opacity: 1; }
.tiktok-card::before  { background: linear-gradient(to left, #010101, #00f2ea, #ff0050, #010101); }
.discord-card::before { background: linear-gradient(to left, transparent, #5865F2, var(--purple), transparent); }


.tiktok-card:hover {
  box-shadow: 0 20px 60px rgba(0,242,234,0.1), 0 0 0 1px rgba(0,242,234,0.25);
  border-color: rgba(0,242,234,0.28);
}

.discord-card:hover {
  box-shadow: 0 20px 60px rgba(88,101,242,0.12), 0 0 0 1px rgba(88,101,242,0.28);
  border-color: rgba(88,101,242,0.35);
}


.ac-bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.tiktok-card  .ac-bg-glow { background: radial-gradient(ellipse at 50% 0%, rgba(0,242,234,0.08) 0%, transparent 60%); }
.discord-card .ac-bg-glow { background: radial-gradient(ellipse at 50% 0%, rgba(88,101,242,0.08) 0%, transparent 60%); }
.account-card:hover .ac-bg-glow { opacity: 1; }


.ac-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ac-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s, box-shadow 0.4s;
}
.tiktok-card .ac-icon {
  background: linear-gradient(145deg, #010101, #1a1a2e);
  border: 1px solid rgba(0,242,234,0.25);
  box-shadow: 0 6px 24px rgba(0,242,234,0.15);
}
.discord-card .ac-icon {
  background: linear-gradient(145deg, #5865F2, #404EED);
  box-shadow: 0 6px 24px rgba(88,101,242,0.35);
}
.account-card:hover .ac-icon { transform: scale(1.08); }
.tiktok-card:hover  .ac-icon  { box-shadow: 0 8px 32px rgba(0,242,234,0.3); }
.discord-card:hover .ac-icon { box-shadow: 0 8px 32px rgba(88,101,242,0.5); }

.ac-icon svg { width: 40px; height: 40px; fill: #fff; }
.ac-icon-img { padding: 0; overflow: hidden; }
.ac-icon-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }

.ac-badge {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}
.tiktok-card .ac-badge {
  color: #00f2ea;
  background: rgba(0,242,234,0.08);
  border: 1px solid rgba(0,242,234,0.2);
}
.discord-card .ac-badge {
  color: #7289da;
  background: rgba(88,101,242,0.1);
  border: 1px solid rgba(88,101,242,0.25);
}

.ac-handle {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.ac-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.35s ease;
  margin-top: 4px;
}
.tiktok-card .ac-cta {
  color: #00f2ea;
  border: 1px solid rgba(0,242,234,0.35);
  background: rgba(0,242,234,0.05);
}
.discord-card .ac-cta {
  color: #7289da;
  border: 1px solid rgba(88,101,242,0.35);
  background: rgba(88,101,242,0.06);
}
.tiktok-card:hover .ac-cta {
  background: rgba(0,242,234,0.12);
  border-color: rgba(0,242,234,0.6);
  box-shadow: 0 0 20px rgba(0,242,234,0.18);
}
.discord-card:hover .ac-cta {
  background: rgba(88,101,242,0.15);
  border-color: rgba(88,101,242,0.6);
  box-shadow: 0 0 20px rgba(88,101,242,0.22);
}


.ac-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.65s ease;
  pointer-events: none;
}
.account-card:hover .ac-shine { left: 150%; }


.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  position: relative; z-index: 2;
}


footer {
  position: relative; z-index: 2;
  padding: 52px 40px 30px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(22px);
}

.footer-logo-text {
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(0,200,240,0.3);
  margin-bottom: 26px;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 36px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(0,200,240,0.03);
  transition: all 0.3s ease;
}
.footer-powered:hover {
  background: rgba(0,200,240,0.06);
  border-color: var(--border-h);
  box-shadow: 0 0 28px rgba(0,200,240,0.08);
}

.powered-label {
  font-size: 0.63rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212,232,248,0.32);
  margin-bottom: 2px;
}
.bmw-text {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(212,232,248,0.88);
  font-family: Arial, sans-serif;
}
.bmw-logo-img {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-copy {
  margin-top: 26px;
  font-size: 0.68rem;
  color: rgba(212,232,248,0.15);
  letter-spacing: 1px;
}


.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


@media (max-width: 768px) {
  nav { padding: 0 18px; }
  .nav-links { gap: 1rem; }
  nav a { font-size: 0.8rem; }
  .nav-logo { height: 80px; }
  :root { --nav-h: 100px; }

  .accounts-grid { grid-template-columns: 1fr; gap: 16px; max-width: 380px; }

  .hero-title { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; max-width: 300px; }
  .hs + .hs::before { display: none; }

  .rules-grid { grid-template-columns: 1fr; gap: 14px; }
  .admin-card { max-width: 100%; }

  .owners-grid { gap: 16px; }
  .owner-card { padding: 28px 26px; }

  .footer-powered { flex-direction: column; gap: 10px; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.6rem; letter-spacing: 2px; padding: 5px 14px; }
}
