.elementor-507 .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);
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  min-height:100vh;
  padding:40px 20px;
  color:#e0fefe;
  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;
}

.resume{
  max-width:1200px;
  width:100%;
  background:rgba(58, 58, 58, 0.7);
  border-radius:30px;
  display:grid;
  grid-template-columns:1fr 1.6fr;
  overflow:hidden;
  border:1px solid rgba(0, 255, 204, 0.2);
  box-shadow:0 0 40px rgba(0, 255, 204, 0.1);
  backdrop-filter:blur(10px);
  position:relative;
}

.resume::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, #00ffcc, #9333ea);
}

/* LEFT PANEL */
.left{
  background:rgba(74, 74, 74, 0.8);
  padding:30px;
  text-align:center;
  border-right:1px solid rgba(0, 255, 204, 0.2);
}

.photo{
  width:180px;
  height:180px;
  margin:auto;
  border-radius:25px;
  background:linear-gradient(135deg, #00ffcc, #9333ea);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:48px;
  font-weight:bold;
  color:white;
  border:3px solid #00ffcc;
  box-shadow:0 0 25px rgba(0, 255, 204, 0.5);
  position:relative;
}

.level-badge{
  position:absolute;
  bottom:-10px;
  right:-10px;
  background:linear-gradient(135deg, #ffd700, #ff9500);
  color:#000;
  font-weight:bold;
  padding:5px 12px;
  border-radius:15px;
  font-size:14px;
  border:2px solid #ffd700;
  box-shadow:0 0 15px rgba(255, 215, 0, 0.5);
}

.left h2{
  margin-top:20px;
  color:#00ffcc;
  font-size:28px;
  text-shadow:0 0 10px rgba(0, 255, 204, 0.5);
}

.role{
  opacity:.9;
  font-size:14px;
  color:#9333ea;
  font-weight:bold;
  letter-spacing:1px;
  margin-top:5px;
  display:block;
}

.player-stats{
  display:flex;
  justify-content:center;
  gap:20px;
  margin:20px 0;
}

.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);
  min-width:80px;
}

.stat-value{
  font-size:22px;
  font-weight:bold;
  color:#00ffcc;
  text-shadow:0 0 10px rgba(0, 255, 204, 0.5);
}

.stat-label{
  font-size:11px;
  color:#aaa;
  letter-spacing:1px;
  margin-top:5px;
}

.health-bar{
  width:100%;
  height:25px;
  background:rgba(255, 255, 255, 0.1);
  border-radius:12px;
  overflow:hidden;
  position:relative;
  margin:20px 0 30px;
  border:1px solid rgba(0, 255, 204, 0.3);
}

.health-fill{
  height:100%;
  background:linear-gradient(90deg, #00ffcc, #00cc99);
  border-radius:12px;
  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);
}

.block{
  margin-top:25px;
  text-align:left;
  padding:15px;
  background:rgba(0, 0, 0, 0.2);
  border-radius:15px;
  border:1px solid rgba(255, 255, 255, 0.05);
}

.block h4{
  font-size:14px;
  margin-bottom:15px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(0, 255, 204, 0.3);
  color:#00ffcc;
  display:flex;
  align-items:center;
  gap:8px;
}

.block p{
  font-size:13px;
  opacity:.85;
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:8px;
}

.skill{
  margin-bottom:15px;
}

.skill span{
  font-size:13px;
  display:block;
  margin-bottom:5px;
}

.bar{
  background:#666;
  height:8px;
  border-radius:10px;
  margin-top:5px;
  overflow:hidden;
  position:relative;
}

.bar-fill{
  height:100%;
  background:linear-gradient(90deg, #00ffcc, #9333ea);
  border-radius:10px;
  position:relative;
}

.bar-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;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tag{
  background:rgba(0, 255, 204, 0.15);
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  border:1px solid rgba(0, 255, 204, 0.3);
  transition:all 0.3s ease;
}

.tag:hover{
  transform:translateY(-2px);
  box-shadow:0 5px 15px rgba(0, 255, 204, 0.2);
}

.tag.epic{
  background:rgba(147, 51, 234, 0.2);
  color:#d0a3ff;
  border-color:rgba(147, 51, 234, 0.5);
}

.tag.rare{
  background:rgba(0, 150, 255, 0.2);
  color:#7bc8ff;
  border-color:rgba(0, 150, 255, 0.5);
}

.tag.legendary{
  background:rgba(255, 215, 0, 0.2);
  color:#ffea7f;
  border-color:rgba(255, 215, 0, 0.5);
}

.langs{
  display:flex;
  justify-content:space-between;
  text-align:center;
}

.langs div{
  background:rgba(90, 90, 90, 0.5);
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  font-size:12px;
  border:1px solid rgba(0, 255, 204, 0.2);
  transition:transform 0.3s ease;
}

.langs div:hover{
  transform:scale(1.05);
}

.langs div b{
  color:#00ffcc;
  font-size:18px;
  margin-bottom:5px;
}

.status{
  margin-top:30px;
  padding:10px 20px;
  background:rgba(0, 255, 204, 0.1);
  border-radius:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:bold;
  color:#00ffcc;
  border:1px solid rgba(0, 255, 204, 0.5);
  width:100%;
  animation:pulse 2s infinite;
}

/* RIGHT PANEL */
.right{
  padding:40px;
  background:rgba(63, 63, 63, 0.8);
  overflow-y:auto;
  max-height:calc(100vh - 100px);
}

.right section{
  margin-bottom:35px;
  padding-bottom:25px;
  border-bottom:1px solid rgba(255, 255, 255, 0.1);
}

.right section:last-child{
  border-bottom:none;
}

.right h3{
  margin-bottom:15px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(0, 255, 204, 0.3);
  color:#00ffcc;
  font-size:18px;
  display:flex;
  align-items:center;
  gap:10px;
}

.right p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
  margin-bottom:15px;
}

.card{
  background:rgba(79, 79, 79, 0.7);
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  border:1px solid rgba(0, 255, 204, 0.2);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  position:relative;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0, 255, 204, 0.15);
  border-color:rgba(147, 51, 234, 0.5);
}

.card b{
  color:#00ffcc;
  font-size:16px;
  display:block;
  margin-bottom:8px;
}

.mission-period{
  display:block;
  font-size:12px;
  opacity:.7;
  margin:4px 0 12px;
  color:#9333ea;
  font-weight:bold;
}

.list{
  padding-left:20px;
  font-size:14px;
  opacity:.9;
}

.list li{
  margin-bottom:10px;
  list-style-type:none;
  position:relative;
  padding-left:25px;
}

.list li:before{
  content:"▸";
  color:#00ffcc;
  position:absolute;
  left:0;
}

.quest-log{
  margin-top:20px;
  padding:15px;
  background:rgba(0, 0, 0, 0.3);
  border-radius:12px;
  border:1px solid rgba(147, 51, 234, 0.3);
}

.quest-log h4{
  color:#9333ea;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

.mission-rewards{
  display:flex;
  gap:15px;
  margin-top:15px;
  flex-wrap:wrap;
}

.reward{
  font-size:12px;
  color:#ffd700;
  display:flex;
  align-items:center;
  gap:5px;
  background:rgba(255, 215, 0, 0.1);
  padding:5px 10px;
  border-radius:10px;
  border:1px solid rgba(255, 215, 0, 0.3);
}

.achievement-badge{
  display:inline-block;
  padding:3px 8px;
  border-radius:10px;
  font-size:10px;
  font-weight:bold;
  margin-right:10px;
  min-width:60px;
  text-align:center;
}

.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:8px;
  background:rgba(0, 255, 204, 0.1);
  border-radius:10px;
  border:1px solid rgba(0, 255, 204, 0.3);
  display:inline-block;
}

/* FOOTER */
.dashboard-footer{
  margin-top:30px;
  padding:20px;
  background:rgba(255, 255, 255, 0.05);
  border-radius:15px;
  border:1px solid rgba(0, 255, 204, 0.2);
  text-align:center;
  width:100%;
  max-width:1200px;
}

.footer-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:15px;
  flex-wrap:wrap;
}

.footer-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.footer-stat-value{
  font-size:28px;
  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;
}

.dashboard-footer p{
  font-size:14px;
  color:#e0fefe;
  letter-spacing:1px;
}

/* ANIMATIONS */
@keyframes shimmer{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

@keyframes pulse{
  0%, 100%{box-shadow:0 0 10px rgba(0, 255, 204, 0.5);}
  50%{box-shadow:0 0 20px rgba(0, 255, 204, 0.8);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .resume{
    grid-template-columns:1fr;
  }
  
  .left{
    border-right:none;
    border-bottom:1px solid rgba(0, 255, 204, 0.2);
  }
  
  .right{
    max-height:none;
  }
  
  .footer-stats{
    gap:20px;
  }
}

@media(max-width:600px){
  body{
    padding:20px 10px;
  }
  
  .left, .right{
    padding:20px;
  }
  
  .player-stats{
    flex-wrap:wrap;
  }
  
  .langs{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }
  
  .langs div{
    width:100px;
    height:100px;
  }
  
  .footer-stats{
    flex-direction:column;
    gap:15px;
  }
}/* End custom CSS */