.elementor-492 .elementor-element.elementor-element-c4320b4{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-c4320b4 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Orbitron", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0a0e17, #000);
  color: #e0fefe;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.dashboard {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ffcc, #9333ea);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar-container {
  position: relative;
}

.avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffcc, #9333ea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  border: 3px solid #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.level-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #000;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  border: 2px solid #ffd700;
}

.player-details h1 {
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.player-name {
  color: #00ffcc;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
}

.player-class {
  color: #9333ea;
  font-size: 18px;
  font-weight: normal;
}

.health-bar {
  width: 300px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.health-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffcc, #00cc99);
  border-radius: 10px;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.health-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.health-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.stats-panel {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.stat-label {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 22px;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.status {
  color: #00ffcc;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 15px;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 204, 0.5);
}

.status i {
  margin-right: 5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 204, 0.2);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00ffcc, #9333ea);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

.card-header h2 {
  color: #00ffcc;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  font-size: 20px;
  color: #9333ea;
}

.card-content {
  font-size: 14px;
}

.card ul {
  list-style: none;
}

.card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wide {
  grid-column: span 2;
}

.tag {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(0, 255, 204, 0.15);
  border-radius: 20px;
  font-size: 12px;
  margin: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tag:hover {
  transform: scale(1.05);
}

.tag.epic {
  background: rgba(147, 51, 234, 0.2);
  color: #d0a3ff;
  border: 1px solid rgba(147, 51, 234, 0.5);
}

.tag.rare {
  background: rgba(0, 150, 255, 0.2);
  color: #7bc8ff;
  border: 1px solid rgba(0, 150, 255, 0.5);
}

.tag.legendary {
  background: rgba(255, 215, 0, 0.2);
  color: #ffea7f;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-meter {
  margin-top: 10px;
}

.skill {
  margin-bottom: 15px;
}

.skill span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.meter {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffcc, #9333ea);
  border-radius: 5px;
  position: relative;
}

.meter-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.achievement-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  margin-right: 8px;
}

.achievement-badge.GOLD {
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #000;
}

.achievement-badge.PLATINUM {
  background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
  color: #000;
}

.achievement-badge.DIAMOND {
  background: linear-gradient(135deg, #00ffff, #0099cc);
  color: #000;
}

.achievement-badge.LEGENDARY {
  background: linear-gradient(135deg, #ff00ff, #cc00cc);
  color: white;
}

.xp-gained {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #00ffcc;
  font-size: 12px;
  padding: 5px;
  background: rgba(0, 255, 204, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.quest-log {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.quest-log h3 {
  color: #9333ea;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mission:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mission h3 {
  color: #00ffcc;
  font-size: 15px;
  margin-bottom: 8px;
}

.mission-rewards {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.reward {
  font-size: 12px;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badges {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.badge {
  width: 40px;
  height: 40px;
  background: rgba(147, 51, 234, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9333ea;
  border: 2px solid rgba(147, 51, 234, 0.5);
}

.dashboard-footer {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 204, 0.2);
  text-align: center;
}

.footer-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.footer-stat-label {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

.footer-text {
  font-size: 14px;
  color: #e0fefe;
  letter-spacing: 1px;
}

.footer-subtext {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .wide {
    grid-column: span 1;
  }
  
  .top-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats-panel {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .player-details h1 {
    font-size: 20px;
  }
  
  .health-bar {
    width: 100%;
  }
  
  .footer-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}/* End custom CSS */