@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --bg: #0a0a0f;
  --fg: #e5e5e5;
  --accent: #00ffff;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(255, 255, 255, 0.03);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
}

.accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--fg);
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 10%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #c7c7c7;
  margin-bottom: 30px;
}

.buttons .btn {
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin: 10px;
  transition: 0.3s;
}

.buttons .secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.buttons .btn:hover {
  transform: scale(1.05);
}

/* About */
.about {
  padding: 60px 10%;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.about p {
  color: #c7c7c7;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about h3 {
  margin-top: 20px;
}

.profiles a {
  color: var(--accent);
  margin-right: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.profiles a:hover {
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #999;
  background: rgba(255, 255, 255, 0.03);
}
