:root {
  --orange: #ff6a00;
  --bg: #0a0a0b;
  --text: #f2f2f2;
  --muted: #999;
  --glow-orange: rgba(255,106,0,0.4);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-y: scroll;
  -ms-overflow-style: none;  
  scrollbar-width: none;     
}

::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  scroll-snap-align: start;
}

.content {
  max-width: 800px;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
  text-shadow: 0 0 4px var(--glow-orange);
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 0 0 3px var(--glow-orange);
}

p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.tagline {
  font-size: 20px;
  color: var(--text);
}

.scroll-down {
  margin-top: 30px;
  font-size: 28px;
  color: var(--orange);
  animation: bounce 1.5s infinite;
  text-shadow: 0 0 4px var(--glow-orange);
  transition: opacity 1s ease;
  opacity: 1;
}

.scroll-down.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Experience Cards */
.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.experience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 14px rgba(255,106,0,0.35);
}

.experience-card h3 {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 8px;
  text-shadow: 0 0 3px var(--glow-orange);
}

.experience-card .role {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Skills & Badges */
.skills-group {
  margin-bottom: 30px;
}

.skills-group h3 {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 10px;
  text-shadow: 0 0 3px var(--glow-orange);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badges span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 0 3px rgba(255,106,0,0.2);
  transition: all 0.3s ease;
}

.badges span:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255,106,0,0.3);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 12px rgba(255,106,0,0.35);
}

.project-card h3 {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 10px;
  text-shadow: 0 0 3px rgba(255,106,0,0.4);
}

.project-card p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 8px;
}

.project-card .tools {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

/* Contact Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  background: var(--orange);
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--glow-orange);
}

.btn:hover {
  background: #ff8533;
  box-shadow: 0 0 12px var(--glow-orange);
  transform: scale(1.03);
}

/* Navigation dots */
.nav-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.nav-dots a {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muted);
  display: block;
  transition: all 0.3s ease;
}

.nav-dots a.active,
.nav-dots a:hover {
  background: var(--orange);
  box-shadow: 0 0 6px var(--glow-orange);
}

/* Fade animations */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}
