* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #05050a;
  color: #ffffff;
  overflow-x: hidden;
}

header {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  border-bottom: 2px solid #00d4ff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(
    to right, 
    #00d4ff, 
    #ff00ff, 
    #00d4ff,
    red,
    yellow,
    white,
    green,
    gray,
    orange
  );
  background-size: 200% auto; 
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));

  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover { color: #5900ff; }

.hero {
  height: 70vh;
  background: linear-gradient(to right, #74be4a3a 20%, rgba(5, 5, 10, 0.4)), 
              url('bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px); 
  color: #00d4ff;
  text-transform: uppercase;
}

.subtitle {
  font-size: 24px;
  color: #ff00ff;
  margin-bottom: 20px;
}

.stats-box { width: 350px; }
.stat-row { margin-bottom: 15px; }
.bar { background: #222; height: 10px; border-radius: 5px; margin-top: 5px; }
.fill { height: 100%; background: #00d4ff; border-radius: 5px; }

.content-section {
  padding: 60px 5%;
  text-align: center;
  max-width: 1400px; 
  margin: 0 auto;
}

h2 {
  margin-bottom: 40px;
  font-size: 32px;
  border-left: 5px solid #ff00ff;
  padding-left: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.skill-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 20px;
}

.skill-item {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  flex: 1 1 200px;
  max-width: 280px; 
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}

.skill-item:hover { border-color: #00d4ff; background: #161616; }

.skill-icon {
  width: 80px;     
  height: 80px;        
  border-radius: 50%; 
  object-fit: cover;  
  border: 2px solid #00d4ff; 
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4); 
  transition: 0.3s;
}

.skin-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px;
  width: 100%;
}

.skin-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  transition: 0.3s;
  aspect-ratio: 16/9; 
}

.skin-card:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.main-skin-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.skin-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, transparent);
  padding: 20px 10px 10px;
  display: flex;
  flex-direction: column; 
  align-items: center;    
}

.rank-icon {
  height: 30px; 
  width: auto;
  margin-bottom: 5px; 
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); 
}

.skin-name {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

/* FOOTER */
footer {
  padding: 50px;
  text-align: center;
  color: #666;
  border-top: 1px solid #111;
}

@media (max-width: 768px) {
  .skin-container { grid-template-columns: 1fr; } 
  .skill-grid { flex-direction: column; align-items: center; }
}