
:root {
  --bg: #0f1115;
  --bg-alt: #161a22;
  --text: #e6e8ec;
  --muted: #9aa4b2;
  --accent: #4f8cff;
  --border: #232836;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}


header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1100px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a:hover {
  color: var(--text);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--accent);
}

p {
  color: var(--muted);
  max-width: 720px;
}


ul {
  margin-top: 20px;
  list-style: none;
}

ul li {
  padding: 14px 18px;
  margin-bottom: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform 0.2s ease, border 0.2s ease;
}

ul li:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}


footer {
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--bg-alt);
}
.skills-list {
  list-style: none;
  margin-top: 30px;
  max-width: 500px;
}

.skills-list li {
  margin-bottom: 14px;
}

.skills-list a {
  display: block;
  padding: 14px 18px;
  background: #161a22;
  border: 1px solid #232836;
  border-radius: 10px;
  color: #e6e8ec;
  text-decoration: none;
  transition: transform 0.2s ease, border 0.2s ease;
}

.skills-list a:hover {
  transform: translateX(6px);
  border-color: #4f8cff;
}

.skill-block {
  margin-top: 40px;
}
body {
  background: #0b0e13;
  color: #dcdcdc;
  font-family: Arial, sans-serif;
}

.inspiration-section {
  width: 70%;
  margin: 80px auto;
}

.inspiration-section h2 {
  color: #4da3ff;
  margin-bottom: 40px;
}

.inspiration-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.inspiration-item .text {
  width: 50%;
}

.video-box video {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 6px;
}


.video-box:hover video {
  filter: brightness(1.1);
}

.video-box {
  position: relative;
}

.video-box video {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}


.inspiration-item .images {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.inspiration-item:hover .images {
  opacity: 1;
  transform: translateY(0);
}

.inspiration-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.inspiration-item img:hover {
  filter: grayscale(0%);

  transform: scale(2.8);
  z-index: 1;
}



@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  h1 {
    font-size: 2.2rem;
  }

  main {
    padding: 60px 20px;
  }
}
