@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&family=Rajdhani:wght@400;500;600;700&display=swap');
 
:root {
  --bg: #05060a;
  --bg-panel: #0b0e1a;
  --panel-border: rgba(0, 255, 242, 0.18);
  --cyan: #00fff2;
  --pink: #ff2bd6;
  --purple: #8b2bff;
  --text: #e8e9ff;
  --muted: #8b93b0;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
 
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
 
/* Background grid + scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 255, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 242, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
 
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 43, 214, 0.14), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(0, 255, 242, 0.12), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(139, 43, 255, 0.12), transparent 50%);
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}
 
/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
  z-index: 1000;
}
 
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
}
 
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-shadow: 0 0 10px rgba(0, 255, 242, 0.6);
}
 
.logo span {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 43, 214, 0.7);
}
 
.nav-menu {
  display: flex;
  gap: 34px;
  list-style: none;
}
 
.nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
 
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transition: width 0.25s ease;
}
 
.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 255, 242, 0.7);
}
 
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
 
/* ---------- Main / layout ---------- */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
 
.section {
  padding: 90px 0;
}
 
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
 
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  text-shadow: 0 0 16px rgba(0, 255, 242, 0.35);
}
 
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 10px rgba(0, 255, 242, 0.6);
}
 
.section-title p {
  color: var(--muted);
  margin-top: 14px;
}
 
/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
}
 
.hero .intro {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(0, 255, 242, 0.6);
}
 
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  text-shadow:
    0 0 12px rgba(0, 255, 242, 0.5),
    0 0 30px rgba(255, 43, 214, 0.25);
}
 
.hero h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  text-shadow: 0 0 10px rgba(255, 43, 214, 0.6);
}
 
.hero p {
  max-width: 540px;
  color: var(--muted);
  margin-bottom: 36px;
}
 
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
 
/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
 
.primary-btn {
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  color: #05060a;
  border: none;
  box-shadow: 0 0 18px rgba(0, 255, 242, 0.45);
}
 
.primary-btn:hover {
  box-shadow: 0 0 28px rgba(0, 255, 242, 0.7);
  transform: translateY(-2px);
}
 
.secondary-btn {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  box-shadow: 0 0 12px rgba(255, 43, 214, 0.25);
}
 
.secondary-btn:hover {
  background: rgba(255, 43, 214, 0.1);
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.55);
  transform: translateY(-2px);
}
 
/* ---------- Panels / Cards ---------- */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 40px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
 
.panel:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 255, 242, 0.12);
}
 
/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}
 
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.35);
}
 
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px dashed var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
 
.about-text h3 {
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(0, 255, 242, 0.4);
}
 
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
}
 
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
 
.tag {
  padding: 8px 18px;
  border: 1px solid var(--panel-border);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(0, 255, 242, 0.04);
}
 
/* ---------- Projects ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
 
.project-card {
  position: relative;
}
 
.project-card .project-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
 
.project-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 12px;
}
 
.project-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
 
.project-card .project-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}
 
/* ---------- Contact ---------- */
.contact-panel {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
 
.contact-panel p {
  color: var(--muted);
  margin-bottom: 28px;
}
 
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
}
 
.fb-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
 
.contact-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.7;
}
 
/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 30px 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--panel-border);
}
 
/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
 
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar {
    padding: 16px;
  }
 
  .nav-menu {
    gap: 18px;
  }
 
  .nav-link {
    font-size: 0.8rem;
  }
 
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
 
  .about-photo,
  .about-photo-placeholder {
    max-width: 200px;
    margin: 0 auto;
  }
 
  .section {
    padding: 60px 0;
  }
 
  .section-title h2 {
    font-size: 1.6rem;
  }
 
  .panel {
    padding: 28px;
  }
}
 