/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --accent: #00ff99;
  --accent-dim: rgba(0, 255, 153, 0.08);
  --accent-border: rgba(0, 255, 153, 0.25);
  --bg: #09090f;
  --bg-card: #111118;
  --bg-card-hover: #15151e;
  --border: rgba(255, 255, 255, 0.07);
}

/* ============================================
   BASE
============================================ */
* {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  font-family: "Inter", sans-serif;
  color: #dcdcdc;
}

.mono {
  font-family: "JetBrains Mono", "Courier New", monospace;
}

/* ============================================
   ACCENT UTILITIES
============================================ */
.text-accent {
  color: var(--accent) !important;
}

.btn-accent {
  background-color: var(--accent);
  color: #000;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #00cc7a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 255, 153, 0.25);
}

.btn-outline-accent {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}

.btn-outline-accent:hover {
  background-color: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   NAVBAR
============================================ */
#mainNav {
  background-color: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

#mainNav.scrolled {
  border-bottom-color: rgba(0, 255, 153, 0.12);
}

#mainNav .navbar-brand {
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #888 !important;
  font-size: 0.88rem;
  padding: 0.4rem 0.75rem !important;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--accent) !important;
}

.nav-link:hover::after,
.nav-link.active-link::after {
  transform: scaleX(1);
}

/* ============================================
   HERO
============================================ */
#hero {
  padding-top: 90px;
}

.hero-name {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.typed-cursor {
  color: var(--accent);
  font-size: 1.2rem;
}

.h4 {
  color: red;
}

.letter-accent {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}
/* ============================================
   SECTION SHARED
============================================ */
.py-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.9rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================
   SKILLS
============================================ */
.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.skill-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 255, 153, 0.07);
}

.skill-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}

/* ============================================
   FIND ME
============================================ */
.platform-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #888;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.82rem;
}

.platform-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 153, 0.1);
}

/* ============================================
   PROJECTS
============================================ */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 255, 153, 0.07);
}

/* ============================================
   HALL OF FAME
============================================ */
.hof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.hof-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  box-shadow: 0 12px 40px rgba(0, 255, 153, 0.07);
}

.hof-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
}

/* ============================================
   FOOTER
============================================ */
footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

/* ============================================
   SCROLLBAR
============================================ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
