@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Roboto:wght@400;700&display=swap');

:root {
  --bg: #0a0a0f;
  --text: #f0f0f0;
  --accent: #00e0ff;
  --card: #141420;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --text: #111;
    --accent: #0077ff;
    --card: #fff;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--card);
  border-bottom: 1px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  font-size: 1.4em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

main {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 80px;
  text-align: center;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent);
}

.button {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.button:hover {
  transform: scale(1.1);
}

footer {
  background: var(--card);
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  border-top: 1px solid var(--accent);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}