body {
  margin: 0;
  height: 100vh;
  background-color: #081726; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff0ea;
}

.scene {
  perspective: 1200px; 
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-wrapper {
  position: relative;
  width: 750px;
  height: 450px;
  transform-style: preserve-3d;
  transform: rotateX(15deg) rotateY(-25deg); 
  transition: transform 0.2s ease-out;
}

/* الخصائص الزجاجية الأساسية */
.glass-panel {
  position: absolute;
  border-radius: 20px;
  background: rgba(110, 172, 217, 0.05); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 240, 234, 0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(110, 172, 217, 0.05);
}

.panel-back {
  width: 450px; height: 300px;
  top: -20px; left: -80px;
  transform: translateZ(-120px);
  opacity: 0.5;
  padding: 20px;
  animation: float 6s ease-in-out infinite;
}

.panel-main {
  width: 750px; height: 420px;
  top: 15px; left: 0;
  transform: translateZ(0px);
  border: 1px solid rgba(255, 240, 234, 0.3); 
  padding: 35px 45px;
  box-sizing: border-box;
  animation: float 5s ease-in-out infinite 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-front {
  width: 250px; height: 140px;
  bottom: -40px; right: -60px;
  transform: translateZ(140px);
  background: rgba(255, 240, 234, 0.03);
  border: 1px solid rgba(255, 240, 234, 0.15);
  padding: 20px;
  box-sizing: border-box;
  animation: float 4s ease-in-out infinite 1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateZ(var(--z-index, 0)); }
  50% { transform: translateY(-15px) translateZ(var(--z-index, 0)); }
}
.panel-back { --z-index: -120px; }
.panel-main { --z-index: 0px; }
.panel-front { --z-index: 140px; }

/* -- تنسيقات الشاشة الرئيسية -- */
.glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}
.logo-circle {
  width: 18px;
  height: 18px;
  background: #fff0ea;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 240, 234, 0.5);
}
.nav-area {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-area .divider {
  color: rgba(255, 240, 234, 0.3);
}

.glass-body {
  display: flex;
  justify-content: flex-end; 
  width: 100%;
}
.hero-content {
  width: 55%;
  text-align: left;
}
.hero-title {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  font-weight: 800;
}
.hero-desc {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 240, 234, 0.7);
  margin: 0 0 25px 0;
}
.hero-btn {
  background: rgba(255, 240, 234, 0.1);
  border: 1px solid rgba(255, 240, 234, 0.5);
  color: #fff0ea;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: rgba(110, 172, 217, 0.4);
  border-color: #6eacd9;
  box-shadow: 0 0 15px rgba(110, 172, 217, 0.4);
}

.glass-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 240, 234, 0.5);
  background: transparent;
  transition: 0.3s;
}
.nav-dot.active {
  background: #fff0ea;
  border-color: #fff0ea;
  box-shadow: 0 0 8px rgba(255, 240, 234, 0.8);
}

.wire-box { border-radius: 6px; border: 1px solid rgba(110, 172, 217, 0.2); background: rgba(110, 172, 217, 0.05); margin-bottom: 10px;}

/* -- تنسيقات الشاشة الأمامية (بطاقة الأداء) -- */
.stat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 240, 234, 0.7);
  margin-bottom: 10px;
}
.stat-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6eacd9;
  box-shadow: 0 0 10px #6eacd9;
}
.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #fff0ea;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.stat-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(110, 172, 217, 0.1);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(110, 172, 217, 0.2);
}
.stat-bar-fill {
  width: 85%; 
  height: 100%;
  background: #6eacd9;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(110, 172, 217, 0.8);
}