* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.skills-page {
  height: 100vh;
  padding: 35px 45px;
  position: relative;
  overflow: hidden;
  background: #050505;
}

/* background */
.skills-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 0, 92, 0.18), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
}

/* HEADER */
.skills-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}

.skills-header p {
  color: #ff005c;
  letter-spacing: 4px;
  font-size: 11px;
  margin-bottom: 6px;
  font-weight: 900;
}

.skills-header h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.skills-header h1::after {
  content: "";
  display: block;
  width: 130px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 50px;
  background: #ff005c;
  box-shadow: 0 0 20px rgba(255, 0, 92, 0.7);
}

/* GRID (5 CARDS) */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
}

/* CARDS */
.skills-card {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: 0.3s ease;
}

.skills-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 92, 0.7);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.5),
    0 0 25px rgba(255, 0, 92, 0.25);
}

/* TITLE */
.skills-card h2 {
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 900;
}

.skills-card h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  margin-top: 8px;
  border-radius: 20px;
  background: #ff005c;
}

/* SKILLS */
.skill {
  margin-bottom: 10px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px;
  color: #cfcfcf;
  font-weight: 700;
}

/* BAR */
.bar {
  width: 100%;
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
}

/* PROGRESS */
.progress {
  height: 100%;
  background: linear-gradient(90deg, #ff005c, #ff4d88);
  border-radius: 20px;
  box-shadow:
    0 0 10px rgba(255, 0, 92, 0.6),
    0 0 18px rgba(255, 0, 92, 0.25);
}

/* corner */
.skills-page::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 36px;
  height: 36px;
  border-right: 7px solid #fff;
  border-bottom: 7px solid #fff;
}

/* glow */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-one {
  width: 260px;
  height: 260px;
  background: #ff005c;
  top: -120px;
  left: 35%;
  opacity: 0.25;
}

.glow-two {
  width: 320px;
  height: 320px;
  background: #ff005c;
  bottom: -160px;
  right: 12%;
  opacity: 0.15;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  body {
    overflow: auto;
  }

  .skills-page {
    height: auto;
    padding: 40px 28px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-header h1 {
    font-size: 44px;
  }

  .skills-page::after {
    display: none;
  }
}