/* ===== GENERAL ===== */
body {
  margin: 0;
  font-family: Arial;
  background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
  color: white;
}

/* خلفية متحركة */body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,0,0.15), transparent 70%);
  animation: moveGlow 6s infinite linear;
  z-index: 0;

  pointer-events: none; /* 👈 هذا السطر السحري */
}

@keyframes moveGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== LOGIN PAGE ===== */
.login-page {
  text-align: center;
}

.logo {
  font-size: 40px;
  color: red;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 70px;
  text-shadow: 0 0 10px red;
  font-family: "Times New Roman";
}

.tagline {
  color: #aaa;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.box {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.input-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.input-box input {
  width: 220px;
  padding: 10px;
  margin: 6px 0;
}

/* ===== BUTTONS ===== */
button {
  background: #cc0000;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255,0,0,0.5);
  cursor: pointer;
}

/* الروابط */
span {
  color: red;
  cursor: pointer;
  transition: 0.3s;
}

span:hover {
  color: white;
  text-shadow: 0 0 5px red;
}

/* ===== DASHBOARD ===== */

/* الهيدر */
.dashboard-page .header {
  padding: 20px;
}

/* سطر (لوغو + رصيد) */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* اللوجو */
.logo2 {
  color: red;
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 0 0 10px red, 0 0 25px red;
}

/* الرصيد */
.balance {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

/* الأزرار */
.actions {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

/* زر السحب */
.withdraw-btn {
  background: transparent;
  color: #00bfff;
  border: 1px solid #00bfff;
  padding: 6px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.withdraw-btn:hover {
  background: #00bfff;
  color: black;
  box-shadow: 0 0 10px #00bfff;
}

/* ===== OFFERS ===== */
.offers {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px;
}

/* الكروت */
.card {
  background: #111;
  border: 1px solid rgba(255,0,0,0.3);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: white;
  box-shadow: 0 0 10px rgba(255,0,0,0.2);
  transition: 0.3s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-weight: bold;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px red;
}

.card:active {
  transform: scale(0.95);
}

.history-btn {
  background: transparent;
  color: #888;
  border: 1px solid #555;
  padding: 6px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.history-btn:hover {
  border-color: red;
  color: red;
  box-shadow: 0 0 10px red;
}
.profile-btn {
  background: transparent;
  color: #00bfff;
  border: 1px solid #00bfff;
  padding: 6px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.profile-btn:hover {
  background: #00bfff;
  color: black;
  box-shadow: 0 0 10px #00bfff;
}
.welcome {
  text-align: center;
  margin: 15px 0;
  color: #aaa;
  font-size: 15px;
  letter-spacing: 1px;
}
.support {
  margin-top: 50px;
  width: 100%;
  text-align: center;
}

.support button {
  background: transparent;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  padding: 8px 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.support button:hover {
  background: #00ffcc;
  color: black;
  box-shadow: 0 0 10px #00ffcc;
}
.footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 80px;
}

.footer a {
  color: #aaa;
  margin: 0 10px;
  text-decoration: none;
}

.footer a:hover {
  color: red;
}
/* ===== WITHDRAW PAGE ===== */
.withdraw-box {
  max-width: 320px;
  margin: 30px auto;
  background: #111;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,0,0,0.3);
  box-shadow: 0 0 10px rgba(255,0,0,0.2);
}

.withdraw-box label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #aaa;
}

.withdraw-box input,
.withdraw-box select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.withdraw-box button {
  width: 100%;
  margin-top: 10px;
}