/* ==========================================================================
   DESIGN TOKENS & SYSTEM ROOT
   ========================================================================== */
:root {
  --bg: #05050b;
  --bg-card: rgba(8, 8, 18, 0.65);
  --bg-card-hover: rgba(12, 12, 28, 0.85);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 240, 255, 0.25);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  /* HSL Tailored Neon Colors */
  --accent-cyan: #00f0ff;
  --accent-cyan-rgb: 0, 240, 255;
  --accent-purple: #9d4edd;
  --accent-purple-rgb: 157, 78, 221;
  --accent-pink: #ff007f;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   GLOBAL RESET & DEFAULTS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-purple) var(--bg);
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(157, 78, 221, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Custom Selection */
::selection {
  background: rgba(0, 240, 255, 0.3);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Ambient Grain & Texture */
.ambient-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   FUTURISTIC LIQUID CURSOR
   ========================================================================== */
#custom-cursor {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: screen;
}

#custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

#custom-cursor.hovered {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
}

#custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.85);
  border-color: var(--accent-pink);
}

/* ==========================================================================
   TECHNICAL BOOT LOG PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #030307;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-terminal {
  width: 100%;
  max-width: 650px;
  background-color: #06060c;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.05);
}

.terminal-bar {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-bar .dot.red { background-color: #ef4444; }
.terminal-bar .dot.yellow { background-color: #f59e0b; }
.terminal-bar .dot.green { background-color: #10b981; }

.terminal-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.terminal-body {
  height: 320px;
  padding: 15px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  line-height: 1.6;
}

.terminal-body p {
  margin-bottom: 8px;
  opacity: 0.9;
}

.terminal-body .sys-ok {
  color: #10b981;
}

.terminal-body .sys-err {
  color: #ef4444;
}

.loader-progress-container {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.loader-bar {
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width 0.1s ease;
}

.loader-percentage {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  min-width: 45px;
  text-align: right;
  color: var(--text-primary);
}

/* ==========================================================================
   FLOATING INTERACTIVE NAVIGATION
   ========================================================================== */
.floating-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1200px;
  z-index: 999;
  background: rgba(6, 6, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.02);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s;
}

.floating-nav.nav-hidden {
  top: -100px;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-accent {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-divider {
  color: var(--text-muted);
  opacity: 0.5;
}

.logo-name {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  letter-spacing: 1px;
}

.nav-links a span {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  margin-right: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 50px;
}

.status-indicator {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  position: relative;
}

.status-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Navigation Drawer Toggle for Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  position: fixed;
  top: 30px;
  right: 30px;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.toggle-line {
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-bounce);
}

/* ==========================================================================
   HERO / LANDING SECTION (QUANTUM CANVAS)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px 0;
  overflow: hidden;
}

#canvas-quantum {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
}

.hero-hologram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hologram-card {
  position: relative;
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.1), inset 0 0 20px rgba(0, 240, 255, 0.08);
  border-radius: 20px;
  padding: 10px;
  width: 380px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-style: preserve-3d;
  transition: transform 0.1s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  z-index: 2;
}

.hologram-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.75), 0 0 60px rgba(0, 240, 255, 0.25), inset 0 0 30px rgba(0, 240, 255, 0.15);
}

.hologram-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.hologram-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.5;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: scanLoop 4s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes scanLoop {
  0% { top: 0%; }
  100% { top: 100%; }
}

.hologram-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3)) saturate(1.1);
  transition: var(--transition-smooth);
  transform: translateZ(20px);
}

.hologram-card:hover .hologram-image {
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.45)) saturate(1.2);
}

.hologram-data-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6, 6, 12, 0.85);
  border: 1px dashed rgba(0, 240, 255, 0.25);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
}

.hologram-data-overlay .d-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.hologram-data-overlay .d-value {
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.hologram-border-draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.hologram-card:hover .hologram-border-draw {
  opacity: 0.8;
}

.hero-header-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.01);
  transition: var(--transition-smooth);
}

.hero-tag:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
}

.hero-tag i {
  color: var(--accent-purple);
}

.hero-main-title {
  margin-bottom: 20px;
}

.glitch-title {
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.sub-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 12px;
  margin-top: 10px;
  line-height: 1.2;
}

.hero-description-block {
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.glow-link {
  color: var(--accent-cyan);
  font-weight: 600;
  position: relative;
  transition: var(--transition-smooth);
}

.glow-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: var(--transition-smooth);
}

.glow-link:hover {
  text-shadow: 0 0 10px var(--accent-cyan);
}

.glow-link:hover::after {
  box-shadow: 0 0 15px var(--accent-cyan);
  height: 2px;
}

/* Premium Magnetic Button Matrix */
.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(157, 78, 221, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), transparent);
  transition: 0.5s;
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Quick Stats Grid */
.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.05);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.mouse-icon {
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

.indicator-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT & TECH DNA SECTION
   ========================================================================== */
.about-section {
  padding: 120px 0;
  background-color: var(--bg);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

.dna-metrics {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.metric-row {
  display: grid;
  grid-template-columns: 210px 1fr 50px;
  align-items: center;
  gap: 15px;
}

.m-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.m-bar {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.m-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.m-pct {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-align: right;
}

/* Double Exposure Parallax Profile */
.about-parallax-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.about-profile-frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 19 / 24;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(157, 78, 221, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}

.about-profile-frame:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.75), 0 0 60px rgba(0, 240, 255, 0.15);
}

.profile-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

.layer-back {
  z-index: 1;
  opacity: 0.35;
  filter: grayscale(1) contrast(1.4) brightness(0.65);
  mix-blend-mode: screen;
}

.layer-front {
  z-index: 2;
  opacity: 0.85;
  mix-blend-mode: screen;
  filter: contrast(1.1) brightness(0.95);
}

.cyber-outline {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1.5px solid rgba(0, 240, 255, 0.25);
  border-radius: 12px;
  pointer-events: none;
  z-index: 3;
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05);
  transition: var(--transition-smooth);
}

.about-profile-frame:hover .cyber-outline {
  border-color: var(--accent-cyan);
  box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.1);
}

.profile-node-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--accent-cyan);
  border: 3px solid #000;
  border-radius: 50%;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

.profile-node-pin:hover {
  transform: scale(1.4);
  background-color: var(--accent-pink);
  box-shadow: 0 0 15px var(--accent-pink);
}

.profile-node-pin::after {
  content: attr(data-title);
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  background-color: rgba(6, 6, 12, 0.95);
  border: 1px solid var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent-cyan);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.profile-node-pin:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ==========================================================================
   SHOWCASE SECTION (HORIZONTAL SCROLLER)
   ========================================================================== */
.work-section {
  padding: 0;
  margin: 0;
  background-color: #030307;
  position: relative;
}

.work-section .section-header {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 10;
  pointer-events: none;
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.text-center {
  text-align: center;
}

/* Pin Scroll Mechanics */
.horizontal-scroll-container {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
}

.horizontal-scroll-wrapper {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.project-slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

/* Outlined Background Kinetic Text */
.parallax-bg-text {
  position: absolute;
  font-size: 13rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.01);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  white-space: nowrap;
  bottom: 8%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-display);
  letter-spacing: 5px;
}

/* Immersive Dual Card Layout */
.parallax-card-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  width: 100%;
  max-width: 1150px;
  z-index: 2;
  position: relative;
  align-items: center;
  min-width: 0;
}

/* Layer 1: 3D-perspective Visual Card */
.parallax-visual-card {
  background: rgba(8, 8, 20, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  height: clamp(340px, 44vw, 460px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
  transition: var(--transition-bounce);
  animation: floatBounce 8s infinite ease-in-out;
}

.parallax-visual-card:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 40px 100px rgba(0, 240, 255, 0.06);
}

@keyframes floatBounce {
  0%, 100% { transform: perspective(1200px) rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-10deg) rotateX(4deg) translateY(-8px); }
}

/* Layer 2: Futuristic Details Card */
.parallax-details-card {
  background: rgba(6, 6, 12, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--transition-smooth);
}

.parallax-details-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-4px);
}

/* Continuous Active Logs Ticker Band */
.project-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 3, 7, 0.5);
  border-top: 1px dashed rgba(255, 255, 255, 0.04);
  padding: 10px 0;
  overflow: hidden;
  display: flex;
  z-index: 3;
}

.ticker-content {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scrollTicker 35s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-cyan);
  opacity: 0.65;
}

@keyframes scrollTicker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Project Visual 1: DeepFakeVigilant */
.deepfake-visual {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.scan-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  z-index: 2;
  pointer-events: none;
}

.scan-subject {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.65;
  filter: grayscale(0.4) sepia(0.25) hue-rotate(60deg) contrast(1.15);
  transition: var(--transition-smooth);
  z-index: 1;
}

.parallax-visual-card:hover .scan-subject {
  opacity: 0.85;
  filter: grayscale(0.15) hue-rotate(60deg) saturate(1.2) contrast(1.05);
}

.face-wireframe-overlay {
  width: 120px;
  height: 155px;
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: 50% 50% 45% 45%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  z-index: 3;
  pointer-events: none;
}

.face-wireframe-overlay::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 20%;
  width: 22px;
  height: 11px;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
}

.face-wireframe-overlay::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 20%;
  width: 22px;
  height: 11px;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
}

.laser-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  opacity: 0.85;
  box-shadow: 0 0 15px #10b981;
  animation: laserSweep 3.5s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

@keyframes laserSweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.confidence-radar {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.accuracy-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  background-color: rgba(0, 240, 255, 0.1);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

/* Project Visual 2: Mandarin Guide */
.mandarin-visual {
  width: 80%;
  height: 80%;
  position: relative;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.chinese-char {
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
}

.module-node {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(6, 6, 12, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-bounce);
}

.module-node.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Project Visual 3: Handwritten Prints */
.handwritten-visual {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.04) 0%, transparent 60%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
}

.handwritten-subject {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.35;
  filter: grayscale(0.85) contrast(1.3) brightness(0.7);
  transition: var(--transition-smooth);
  z-index: 1;
}

.parallax-visual-card:hover .handwritten-subject {
  opacity: 0.55;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85);
}

.handwritten-visual .letter-mesh {
  font-size: 8rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  filter: blur(1.5px);
}

.handwritten-visual .ocr-scanbox {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1.5px dashed var(--accent-cyan);
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
  animation: scanRot 15s linear infinite;
}

@keyframes scanRot {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ocr-text-lines {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-cyan);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Project Visual 4: Repellent */
.repellent-visual {
  width: 80%;
  height: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.camera-lens {
  width: 140px;
  height: 140px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
  background-color: rgba(6, 6, 12, 0.6);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

.lens-reflection {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
  border-radius: 50%;
}

.reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent-pink);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.detection-box {
  position: absolute;
  top: 15%;
  right: 15%;
  border: 1.5px solid var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
}

.detection-box .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Project Visual 4: Energy Meter */
.energy-visual {
  width: 90%;
  height: 80%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
}

.pulse-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPulse 4s linear infinite;
}

@keyframes drawPulse {
  to {
    stroke-dashoffset: 0;
  }
}

.grid-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background-color: var(--accent-purple);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Project Visual 5: Drone */
.drone-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
}

.drone-subject {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  filter: grayscale(0.5) contrast(1.2) brightness(0.8) sepia(0.1) hue-rotate(-20deg);
  transition: var(--transition-smooth);
  z-index: 1;
}

.parallax-visual-card:hover .drone-subject {
  opacity: 0.75;
  filter: grayscale(0.2) contrast(1.1) brightness(0.95);
}

.drone-hud-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hud-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 1.5px solid var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

.hud-reticle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--accent-pink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--accent-pink);
}

.hud-corners {
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
  bottom: 15%;
  border: 1.5px solid transparent;
  border-top-color: var(--accent-cyan);
  border-left-color: var(--accent-cyan);
  border-right-color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.08);
  opacity: 0.75;
}

.hud-label {
  position: absolute;
  top: 10%;
  left: 17%;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-pink);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.5);
}

.hud-data {
  position: absolute;
  bottom: 10%;
  left: 17%;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.radar-ping {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 50%;
  animation: ping 2.5s infinite ease-out;
  z-index: 3;
  pointer-events: none;
}

@keyframes ping {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Project Visual 7: Rotaract Web Portal Mockup */
.rotaract-web-visual {
  width: 80%;
  height: 80%;
  background: rgba(6, 6, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  position: relative;
}

.rotaract-web-visual .browser-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rotaract-web-visual .browser-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.rotaract-web-visual .browser-header .dot.red { background-color: #ef4444; }
.rotaract-web-visual .browser-header .dot.yellow { background-color: #f59e0b; }
.rotaract-web-visual .browser-header .dot.green { background-color: #10b981; }

.rotaract-web-visual .address-bar {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 15px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-left: 20px;
  flex: 1;
  max-width: 250px;
}

.rotaract-web-visual .browser-body {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.06) 0%, transparent 70%);
}

.rotaract-web-visual .glowing-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
  pointer-events: none;
}

.rotaract-shield {
  width: 90px;
  height: 90px;
  background-color: rgba(157, 78, 221, 0.03);
  border: 1.5px solid rgba(157, 78, 221, 0.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-purple);
  font-size: 2.5rem;
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.15), inset 0 0 15px rgba(157, 78, 221, 0.05);
  z-index: 2;
  transition: var(--transition-bounce);
}

.parallax-visual-card:hover .rotaract-shield {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.25), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.spin-gear {
  animation: slowGear 20s linear infinite;
}

@keyframes slowGear {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rotaract-web-visual .hud-box {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(6, 6, 12, 0.85);
  border: 1px dashed rgba(0, 240, 255, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
}

.rotaract-web-visual .hud-box .label {
  font-size: 0.6rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.rotaract-web-visual .hud-box .sub {
  font-size: 0.55rem;
  color: var(--text-muted);
}

/* Project Info Details Layout */
.project-details {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-purple);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.project-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.project-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   TECHNICAL CORE SECTION (CONSTELLATION ENGINE)
   ========================================================================== */
.constellation-section {
  padding: 120px 0;
  margin-top: -100vh;
  background-color: var(--bg);
  position: relative;
}

.constellation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Skill Selector Categories */
.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-bounce);
}

.category-block:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.category-block.active {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.03), inset 0 0 12px rgba(0, 240, 255, 0.02);
}

.block-indicator {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.category-block.active .block-indicator {
  background-color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.block-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.category-block.active .block-content h4 {
  color: var(--accent-cyan);
}

.block-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.block-index {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.4;
}

.category-block.active .block-index {
  color: var(--accent-purple);
  opacity: 1;
}

/* Right Skill Display Screen Console */
.skills-console {
  background-color: #040409;
  border: 1px solid rgba(157, 78, 221, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.skills-console .console-header {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-purple);
}

.console-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-body {
  padding: 30px;
  min-height: 380px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CSS injected Skill Nodes Layout */
.skill-group-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.console-cmd-line {
  color: var(--accent-cyan);
  margin-bottom: 15px;
}

.skill-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.skill-node-tag {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-bounce);
}

.skill-node-tag:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.02);
  transform: translateY(-2px);
}

.skill-node-tag i {
  color: var(--accent-purple);
}

.console-meta-info {
  margin-top: 25px;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MILESTONES / TIMELINE EXPERIENCE
   ========================================================================== */
.experience-section {
  padding: 120px 0;
  background-color: #030307;
  position: relative;
}

.timeline-container {
  max-width: 900px;
  margin: 60px auto 0 auto;
  position: relative;
}

/* Timeline Vertical Core Line */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.marker-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(4px);
  animation: markerGlowPulse 2.5s infinite ease-in-out;
}

@keyframes markerGlowPulse {
  0% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.6); opacity: 0.35; }
  100% { transform: scale(1); opacity: 0.15; }
}

.marker-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.timeline-item:nth-child(even) .marker-dot {
  background-color: var(--accent-purple);
}

.timeline-content {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 10px;
}

.timeline-item:nth-child(even) .timeline-date {
  color: var(--accent-purple);
}

.timeline-role {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   ACADEMIC / PUBLICATIONS & CERTS
   ========================================================================== */
.academic-section {
  padding: 120px 0;
  background-color: var(--bg);
  position: relative;
}

.academic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.academic-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.column-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.column-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.icon-accent {
  font-size: 1.4rem;
  color: var(--accent-cyan);
}

.academic-column:nth-child(2) .icon-accent {
  color: var(--accent-purple);
}

/* Publication Card Items */
.pub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: var(--transition-smooth);
}

.pub-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.pub-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.pub-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pub-details {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Certifications Panel list */
.certs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.certs-list li {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--transition-smooth);
}

.certs-list li:hover {
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.cert-indicator {
  width: 45px;
  height: 45px;
  background-color: rgba(157, 78, 221, 0.05);
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-purple);
  font-size: 1.1rem;
}

.cert-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cert-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE CONTACT TERMINAL & COPY SHEETS
   ========================================================================== */
.contact-section {
  padding: 120px 0 60px 0;
  background-color: #030307;
  position: relative;
  border-top: 1px solid var(--border-color);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

/* Left Contact Console */
.contact-section .terminal-container {
  background-color: #040409;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.contact-section .terminal-header {
  background-color: rgba(255,255,255,0.02);
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 6px;
  align-items: center;
}

.contact-section .terminal-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.contact-section .terminal-header .dot.red { background-color: #ef4444; }
.contact-section .terminal-header .dot.yellow { background-color: #f59e0b; }
.contact-section .terminal-header .dot.green { background-color: #10b981; }

.contact-section .terminal-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.contact-section .terminal-body {
  padding: 25px;
  min-height: 280px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-height: 350px;
  overflow-y: auto;
}

.terminal-prompt {
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.terminal-response {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.terminal-log-output {
  margin-bottom: 6px;
  animation: fadeInLog 0.3s ease forwards;
}

@keyframes fadeInLog {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Right Glassmorphic Form */
.form-container {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.01);
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.6);
}

/* Contact Copy Buttons Grid */
.quick-contacts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 80px;
}

.copy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
}

.copy-card:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,240,255,0.03);
}

.copy-icon {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.copy-card:hover .copy-icon {
  background-color: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 15px var(--accent-cyan);
}

.copy-card.no-copy:hover .copy-icon {
  background-color: var(--accent-purple);
  color: #fff;
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px var(--accent-purple);
}

.copy-details .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.copy-details .value {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  word-break: break-all;
}

.copy-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.copy-card:hover .copy-badge {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.copy-card.no-copy:hover .copy-badge {
  color: var(--accent-purple);
  border-color: var(--accent-purple);
}

/* Toast System */
#toast-notification {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 100px);
  background-color: #06060c;
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 10002;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#toast-notification.active {
  transform: translate(-50%, 0);
}

/* Footer Accent details */
.footer-block {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-block p {
  margin-bottom: 8px;
}

.agency-credit a {
  color: var(--accent-cyan);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.agency-credit a:hover {
  text-shadow: 0 0 10px var(--accent-cyan);
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES & INTERACTION HOOKS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   LEADERSHIP & SOCIAL ENGAGEMENTS SECTION
   ========================================================================== */
.engagements-section {
  padding: 120px 0;
  background-color: var(--bg);
  position: relative;
}

.engagements-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.engagement-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.engagement-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(var(--accent-cyan-rgb), 0.02) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.engagement-card:hover .card-glow {
  background: radial-gradient(circle at 0% 0%, rgba(var(--accent-cyan-rgb), 0.06) 0%, transparent 70%);
}

.card-header-tech {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  position: relative;
}

.card-header-tech h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.location-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--accent-cyan);
}
/* Rotaract Tab Bar */
.rotaract-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: 8px;
}

.rotaract-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  flex: 1;
  transition: var(--transition-smooth);
  text-align: center;
}

.rotaract-tab-btn:hover {
  color: #fff;
}

.rotaract-tab-btn.active {
  background-color: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.rotaract-tab-content {
  display: none;
  animation: fadeInTab 0.4s ease forwards;
}

.rotaract-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Rotaract Timeline Inner Layout */
.rotaract-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rotaract-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  position: relative;
}

.rotaract-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 45px;
  width: 1px;
  height: calc(100% - 10px);
  background-color: rgba(255, 255, 255, 0.05);
}

.r-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 4px;
  height: fit-content;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  text-align: center;
  min-width: 90px;
}

.r-badge.active {
  border-color: var(--accent-cyan);
  background-color: rgba(0, 240, 255, 0.05);
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.r-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.r-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sub-grid (Right Column Layout) */
.engagement-subgrid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.committee-details h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.committee-details .institution {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-purple);
  display: block;
  margin-bottom: 12px;
}

.committee-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Event Badges List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-badge {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-bounce);
}

.event-badge:hover {
  border-color: var(--accent-purple);
  background: rgba(157, 78, 221, 0.02);
  transform: translateX(5px);
}

.event-badge .e-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.event-badge .e-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-purple);
  border: 1px solid rgba(157, 78, 221, 0.15);
  background-color: rgba(157, 78, 221, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Sports grid & Interactive Details Panel */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.sport-item {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.sport-item:hover {
  border-color: var(--accent-cyan);
  background-color: rgba(0, 240, 255, 0.02);
  transform: translateY(-4px);
}

.sport-item i {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  transition: var(--transition-smooth);
}

.sport-item:hover i {
  text-shadow: 0 0 10px var(--accent-cyan);
}

.sport-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.sport-details-box {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 15px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  min-height: 65px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-hologram-container { order: -1; margin-bottom: 20px; }
  .hologram-card { width: 340px; height: 420px; }
  
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-parallax-container { margin-top: 10px; }
  .about-profile-frame { width: 340px; height: 420px; }
  .metric-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .m-pct { text-align: left; }
  
  .glitch-title { font-size: 5rem; }
  .sub-title { font-size: 2.2rem; letter-spacing: 8px; }
  .stats-dashboard { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .parallax-card-container { grid-template-columns: 1fr; gap: 35px; }
  .parallax-visual-card { height: 320px; transform: none !important; animation: none !important; }
  .parallax-visual-card:hover { transform: none !important; }
  .parallax-bg-text { display: none; }
  .constellation-layout { grid-template-columns: 1fr; gap: 40px; }
  .constellation-section { margin-top: 0; }
  .academic-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .quick-contacts-grid { grid-template-columns: repeat(3, 1fr); }
  .engagements-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 1024px) {
  .floating-nav { display: none; }
  .nav-toggle { display: flex; }
  
  /* Mobile Menu panel when active */
  .floating-nav.mobile-active {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    max-width: none;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    border: none;
    padding: 100px 40px 40px 40px;
    background: rgba(5, 5, 10, 0.95);
    justify-content: flex-start;
    gap: 40px;
  }
  .floating-nav.mobile-active .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }
  .floating-nav.mobile-active .nav-links a {
    font-size: 1.2rem;
  }
  
  /* Burger Animation */
  .nav-toggle.open .toggle-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open .toggle-line:nth-child(2) { opacity: 0; }
  .nav-toggle.open .toggle-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .glitch-title { font-size: 3.5rem; }
  .sub-title { font-size: 1.6rem; letter-spacing: 4px; }
  .hero-tag { padding: 6px 14px; font-size: 0.7rem; }
  .hero-lead { font-size: 1rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta-group { flex-direction: column; gap: 15px; margin-bottom: 50px; }
  
  .horizontal-scroll-container {
    position: relative;
    top: auto;
    height: auto;
    width: 100%;
    overflow: visible;
  }

  .work-section .section-header {
    position: relative;
    top: auto;
    left: auto;
    padding: 40px 20px 20px 20px;
    margin-bottom: 0;
  }
  
  .horizontal-scroll-wrapper {
    flex-direction: column;
    width: 100% !important;
    transform: none !important;
    position: relative;
    height: auto;
  }
  .project-slide {
    width: 100%;
    height: auto;
    padding: 24px 20px 36px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .parallax-visual-card {
    height: 280px;
  }
  .parallax-details-card {
    padding: 25px;
  }
  
  .quick-contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-container::before { left: 16px; }
  .timeline-item { padding-left: 50px; }
  .timeline-marker { left: 5px; }

  .rotaract-tabs {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .rotaract-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rotaract-item:not(:last-child)::after {
    display: none;
  }
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .glitch-title { font-size: 2.8rem; }
  .sub-title { font-size: 1.2rem; letter-spacing: 2px; }
  .stats-dashboard { grid-template-columns: 1fr; }
  .quick-contacts-grid { grid-template-columns: 1fr; }
}
