@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
  --primary: #0ff;
  --secondary: #f0f;
  --accent: #ff0;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #f0f0f0;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Profession: Clean, Light, Corporate */
  --profession-color: #1a73e8;
  --profession-accent: #34a853;
  --profession-bg: #f8f9fa;
  --profession-surface: #ffffff;
  --profession-text: #202124;
  --profession-text-secondary: #5f6368;

  /* Gamer: Cyberpunk Neon */
  --gamer-color: #ff2d95;
  --gamer-accent: #00f0ff;
  --gamer-glow: #b026ff;
  --gamer-bg: #0a0014;
  --gamer-surface: rgba(255, 45, 149, 0.08);
  --gamer-border: rgba(255, 45, 149, 0.25);

  /* Biker: Warm Sunset Pop */
  --biker-color: #ff6b35;
  --biker-accent: #ffc857;
  --biker-glow: #e84855;
  --biker-bg: #1a0f0a;
  --biker-surface: rgba(255, 107, 53, 0.08);
  --biker-border: rgba(255, 107, 53, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCENE SYSTEM ===== */
.scene {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s 0.55s;
  z-index: 1;
}

.scene.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s 0s;
  z-index: 10;
}

.scene.exit-up {
  opacity: 0;
  transform: translateY(-40px) scale(0.98);
  visibility: hidden;
  z-index: 1;
}

.scene.exit-down {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  visibility: hidden;
  z-index: 1;
}

.scene-inner {
  position: relative;
  min-height: 100vh;
}

/* ===== PARTICLES ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== LANDING ===== */
#landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: var(--darker);
}

.landing-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transition: opacity 0.8s ease, background-image 0.8s ease;
  z-index: 0;
}

.landing-bg.active { opacity: 0.4; }

.landing-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.landing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 200%;
}

.landing-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.segments-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SEGMENT CARDS ===== */
.segment-card {
  width: 320px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.segment-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.3);
}

.segment-card.profession::before { background: linear-gradient(135deg, rgba(26, 115, 232, 0.15), rgba(52, 168, 83, 0.08)); }
.segment-card.profession:hover { border-color: var(--profession-color); box-shadow: 0 20px 60px rgba(26, 115, 232, 0.25), inset 0 0 30px rgba(26, 115, 232, 0.05); }

.segment-card.gamer::before { background: linear-gradient(135deg, rgba(255, 45, 149, 0.15), rgba(176, 38, 255, 0.08)); }
.segment-card.gamer:hover { border-color: var(--gamer-color); box-shadow: 0 20px 60px rgba(255, 45, 149, 0.25), inset 0 0 30px rgba(255, 45, 149, 0.05), 0 0 80px rgba(0, 240, 255, 0.1); }

.segment-card.biker::before { background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 200, 87, 0.08)); }
.segment-card.biker:hover { border-color: var(--biker-color); box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25), inset 0 0 30px rgba(255, 107, 53, 0.05); }

.segment-card:hover::before { opacity: 1; }

.segment-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.segment-card:hover .segment-icon { transform: scale(1.15) rotate(5deg); }

.profession .segment-icon { background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(52, 168, 83, 0.1)); border: 1px solid rgba(26, 115, 232, 0.3); }
.gamer .segment-icon { background: linear-gradient(135deg, rgba(255, 45, 149, 0.2), rgba(176, 38, 255, 0.1)); border: 1px solid rgba(255, 45, 149, 0.4); box-shadow: 0 0 20px rgba(0, 240, 255, 0.15); }
.biker .segment-icon { background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 200, 87, 0.1)); border: 1px solid rgba(255, 107, 53, 0.3); }

.segment-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.profession .segment-title { color: var(--profession-color); }
.gamer .segment-title { color: var(--gamer-color); text-shadow: 0 0 20px rgba(255, 45, 149, 0.5); }
.biker .segment-title { color: var(--biker-color); }

.segment-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.segment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.profession .segment-link { color: var(--profession-color); }
.gamer .segment-link { color: var(--gamer-accent); }
.biker .segment-link { color: var(--biker-accent); }
.segment-card:hover .segment-link { gap: 1rem; }

/* ============================================
   PROFESSION THEME — LIGHT & PROFESSIONAL
   ============================================ */
.profession-theme {
  background: var(--profession-bg);
  color: var(--profession-text);
}

.profession-theme .scene-inner {
  background: var(--profession-bg);
}

.profession-theme .page-hero {
  height: 50vh;
  min-height: 400px;
}

.profession-theme .page-hero-bg {
  filter: brightness(0.5) saturate(0.8);
}

.profession-theme .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(26, 115, 232, 0.2) 0%, transparent 40%, var(--profession-bg) 100%);
}

.profession-theme .page-hero-title {
  color: var(--profession-color);
  text-shadow: 0 2px 20px rgba(26, 115, 232, 0.3);
}

.profession-theme .page-hero-subtitle {
  color: var(--profession-text-secondary);
}

.profession-theme .back-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 115, 232, 0.2);
  color: var(--profession-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profession-theme .back-btn:hover {
  background: var(--profession-color);
  color: white;
  border-color: var(--profession-color);
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
}

.profession-theme .bio-text {
  color: var(--profession-text);
}

.profession-theme .contact-section {
  background: var(--profession-surface);
  border-top: 1px solid rgba(26, 115, 232, 0.1);
}

.profession-theme .contact-title {
  color: var(--profession-text);
}

.profession-theme .contact-subtitle {
  color: var(--profession-text-secondary);
}

.profession-theme .social-link {
  background: var(--profession-bg);
  border: 1px solid rgba(26, 115, 232, 0.15);
  color: var(--profession-text-secondary);
}

.profession-theme .social-link:hover {
  background: var(--profession-surface);
  color: var(--profession-color);
  border-color: var(--profession-color);
}

.profession-theme .email-link {
  color: var(--profession-text-secondary);
}

.profession-theme .email-link:hover {
  color: var(--profession-color);
}

.profession-theme .footer {
  background: var(--profession-surface);
  color: var(--profession-text-secondary);
  border-top: 1px solid rgba(26, 115, 232, 0.1);
}

/* Resume Button - Professional Theme */
.profession-theme .resume-btn {
  border-color: var(--profession-color);
  color: var(--profession-color);
}

.profession-theme .resume-btn::before {
  background: var(--profession-color);
}

.profession-theme .resume-btn:hover {
  color: white;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
}

/* ============================================
   GAMER THEME — CYBERPUNK NEON
   ============================================ */
.gamer-theme {
  background: var(--gamer-bg);
  color: #e0e0e0;
}

.gamer-theme .scene-inner {
  background: var(--gamer-bg);
}

.gamer-theme .page-hero {
  height: 55vh;
  min-height: 450px;
}

.gamer-theme .page-hero-bg {
  filter: brightness(0.4) saturate(1.4) hue-rotate(-10deg);
}

.gamer-theme .page-hero-overlay {
  background: linear-gradient(to bottom,
    rgba(10, 0, 20, 0.3) 0%,
    transparent 30%,
    rgba(255, 45, 149, 0.05) 60%,
    var(--gamer-bg) 100%);
}

.gamer-theme .page-hero-title {
  color: var(--gamer-color);
  text-shadow:
    0 0 30px rgba(255, 45, 149, 0.6),
    0 0 60px rgba(176, 38, 255, 0.3),
    0 0 100px rgba(0, 240, 255, 0.2);
  animation: cyberpunk-glow 3s ease-in-out infinite alternate;
}

@keyframes cyberpunk-glow {
  0% { text-shadow: 0 0 30px rgba(255, 45, 149, 0.6), 0 0 60px rgba(176, 38, 255, 0.3); }
  50% { text-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(255, 45, 149, 0.4); }
  100% { text-shadow: 0 0 30px rgba(176, 38, 255, 0.6), 0 0 60px rgba(0, 240, 255, 0.3); }
}

.gamer-theme .page-hero-subtitle {
  color: var(--gamer-accent);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.gamer-theme .back-btn {
  background: rgba(10, 0, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gamer-border);
  color: var(--gamer-accent);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.15);
}

.gamer-theme .back-btn:hover {
  background: var(--gamer-color);
  color: white;
  border-color: var(--gamer-color);
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.4), 0 0 60px rgba(0, 240, 255, 0.2);
}

.gamer-theme .bio-text {
  color: rgba(224, 224, 224, 0.85);
}

.gamer-theme .section-heading {
  color: var(--gamer-color);
  text-shadow: 0 0 15px rgba(255, 45, 149, 0.4);
  border-bottom-color: var(--gamer-border);
}

.gamer-theme .gallery-item {
  border-color: var(--gamer-border);
}

.gamer-theme .gallery-item:hover {
  box-shadow: 0 15px 40px rgba(255, 45, 149, 0.3), 0 0 40px rgba(0, 240, 255, 0.15);
}

.gamer-theme .video-wrapper {
  border-color: var(--gamer-border);
}

.gamer-theme .video-wrapper:hover {
  box-shadow: 0 15px 40px rgba(255, 45, 149, 0.3), 0 0 40px rgba(0, 240, 255, 0.15);
}

.gamer-theme .contact-section {
  background: rgba(255, 45, 149, 0.03);
  border-top-color: var(--gamer-border);
}

.gamer-theme .contact-title {
  color: var(--gamer-color);
  text-shadow: 0 0 20px rgba(255, 45, 149, 0.4);
}

.gamer-theme .contact-subtitle {
  color: var(--gamer-accent);
  opacity: 0.6;
}

.gamer-theme .social-link {
  background: var(--gamer-surface);
  border-color: var(--gamer-border);
  color: rgba(224, 224, 224, 0.6);
}

.gamer-theme .social-link:hover {
  color: var(--gamer-accent);
  border-color: var(--gamer-accent);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2), 0 0 40px rgba(255, 45, 149, 0.15);
}

.gamer-theme .email-link {
  color: rgba(224, 224, 224, 0.4);
}

.gamer-theme .email-link:hover {
  color: var(--gamer-accent);
}

.gamer-theme .footer {
  background: var(--gamer-bg);
  color: rgba(224, 224, 224, 0.25);
  border-top-color: var(--gamer-border);
}

/* ============================================
   BIKER THEME — WARM SUNSET POP
   ============================================ */
.biker-theme {
  background: var(--biker-bg);
  color: #f0e6d8;
}

.biker-theme .scene-inner {
  background: var(--biker-bg);
}

.biker-theme .page-hero {
  height: 55vh;
  min-height: 450px;
}

.biker-theme .page-hero-bg {
  filter: brightness(0.45) saturate(1.3) sepia(0.15);
}

.biker-theme .page-hero-overlay {
  background: linear-gradient(to bottom,
    rgba(26, 15, 10, 0.2) 0%,
    transparent 30%,
    rgba(255, 107, 53, 0.05) 60%,
    var(--biker-bg) 100%);
}

.biker-theme .page-hero-title {
  color: var(--biker-color);
  text-shadow:
    0 0 20px rgba(255, 107, 53, 0.5),
    0 0 40px rgba(255, 200, 87, 0.3);
}

.biker-theme .page-hero-subtitle {
  color: var(--biker-accent);
  opacity: 0.8;
}

.biker-theme .back-btn {
  background: rgba(26, 15, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--biker-border);
  color: var(--biker-accent);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.biker-theme .back-btn:hover {
  background: var(--biker-color);
  color: white;
  border-color: var(--biker-color);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.biker-theme .bio-text {
  color: rgba(240, 230, 216, 0.85);
}

.biker-theme .section-heading {
  color: var(--biker-color);
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
  border-bottom-color: var(--biker-border);
}

.biker-theme .gallery-item {
  border-color: var(--biker-border);
}

.biker-theme .gallery-item:hover {
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25), 0 0 30px rgba(255, 200, 87, 0.15);
}

.biker-theme .video-wrapper {
  border-color: var(--biker-border);
}

.biker-theme .video-wrapper:hover {
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25), 0 0 30px rgba(255, 200, 87, 0.15);
}

.biker-theme .contact-section {
  background: rgba(255, 107, 53, 0.03);
  border-top-color: var(--biker-border);
}

.biker-theme .contact-title {
  color: var(--biker-color);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.biker-theme .contact-subtitle {
  color: var(--biker-accent);
  opacity: 0.7;
}

.biker-theme .social-link {
  background: var(--biker-surface);
  border-color: var(--biker-border);
  color: rgba(240, 230, 216, 0.6);
}

.biker-theme .social-link:hover {
  color: var(--biker-accent);
  border-color: var(--biker-accent);
  box-shadow: 0 10px 30px rgba(255, 200, 87, 0.2), 0 0 30px rgba(255, 107, 53, 0.15);
}

.biker-theme .email-link {
  color: rgba(240, 230, 216, 0.4);
}

.biker-theme .email-link:hover {
  color: var(--biker-accent);
}

.biker-theme .footer {
  background: var(--biker-bg);
  color: rgba(240, 230, 216, 0.25);
  border-top-color: var(--biker-border);
}

/* ===== INNER PAGE HERO (shared) ===== */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  transform: scale(1.1);
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 50%, var(--darker));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== PAGE CONTENT (shared) ===== */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.bio-text + .bio-text {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== RESUME BUTTON ===== */
.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid var(--profession-color);
  border-radius: 50px;
  color: var(--profession-color);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.resume-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--profession-color);
  transition: left 0.35s ease;
  z-index: -1;
}

.resume-btn:hover {
  color: white;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
}

.resume-btn:hover::before {
  left: 0;
}

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

.resume-btn:hover i {
  transform: translateY(2px);
  animation: bounce-download 0.5s ease;
}

@keyframes bounce-download {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(-2px); }
}

/* ===== BACK BUTTON (shared) ===== */
.back-btn {
  position: fixed;
  top: 2rem; left: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--light);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ===== GALLERY (shared) ===== */
.gallery-section {
  padding: 2rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== SCROLL STRIP GALLERY ===== */
.scroll-gallery-section {
  padding: 2rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.scroll-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.scroll-strip::-webkit-scrollbar {
  height: 6px;
}

.scroll-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.scroll-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.scroll-strip::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scroll-item {
  flex: 0 0 220px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scroll-item:hover img {
  transform: scale(1.12);
}

.scroll-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  text-align: center;
}

/* Video overlay play button */
.scroll-video-item .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.scroll-video-item .play-overlay i {
  font-size: 1.2rem;
  color: white;
  margin-left: 3px;
}

.scroll-video-item:hover .play-overlay {
  background: rgba(255, 45, 149, 0.5);
  border-color: rgba(255, 45, 149, 0.7);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.4);
}

/* Scroll Arrows — removed, using wheel + drag scroll instead */

/* Gamer theme scroll strip */
.gamer-theme .scroll-item {
  border-color: var(--gamer-border);
}

.gamer-theme .scroll-item:hover {
  border-color: var(--gamer-accent);
  box-shadow: 0 20px 50px rgba(255, 45, 149, 0.3), 0 0 30px rgba(0, 240, 255, 0.1);
}

.gamer-theme .scroll-video-item:hover .play-overlay {
  background: rgba(255, 45, 149, 0.5);
  border-color: var(--gamer-accent);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.gamer-theme .scroll-strip::-webkit-scrollbar-thumb {
  background: var(--gamer-border);
}

/* Biker theme scroll strip */
.biker-theme .scroll-item {
  border-color: var(--biker-border);
}

.biker-theme .scroll-item:hover {
  border-color: var(--biker-accent);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), 0 0 20px rgba(255, 200, 87, 0.1);
}

.biker-theme .scroll-video-item:hover .play-overlay {
  background: rgba(255, 107, 53, 0.5);
  border-color: var(--biker-accent);
  box-shadow: 0 0 25px rgba(255, 200, 87, 0.3);
}

.biker-theme .scroll-strip::-webkit-scrollbar-thumb {
  background: var(--biker-border);
}

/* ===== VIDEO SECTION (shared) ===== */
.video-section {
  padding: 2rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== CONTACT SECTION (shared base) ===== */
.contact-section {
  padding: 5rem 2rem;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  margin-bottom: 3rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  min-width: 120px;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-5px);
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.25);
}

.social-link.email:hover { border-color: #ea4335; box-shadow: 0 10px 30px rgba(234, 67, 53, 0.2); }
.social-link.linkedin:hover { border-color: #0077b5; box-shadow: 0 10px 30px rgba(0, 119, 181, 0.2); }
.social-link.github:hover { border-color: #fff; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); }
.social-link.instagram:hover { border-color: #e1306c; box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2); }

.social-link i { font-size: 1.8rem; }

.social-link span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.email-link {
  display: inline-block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover { color: var(--light); }

/* ===== BLOGS BUTTON ===== */
.blogs-btn-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blogs-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.blogs-btn i {
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
  background: var(--darker);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .segments-container { flex-direction: column; align-items: center; }
  .segment-card { width: 100%; max-width: 340px; }
  .video-grid { grid-template-columns: 1fr; }
  .social-links { gap: 1rem; }
  .social-link { min-width: 100px; padding: 1rem 1.4rem; }
  .page-hero { height: 40vh; min-height: 300px; }
  .scroll-item { flex: 0 0 170px; }
}

/* ===== PHOTOSWIPE CUSTOM ===== */
.pswp__youtube-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 1280px);
  aspect-ratio: 16/9;
}

.pswp__youtube-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.pswp__bg {
  background: rgba(0, 0, 0, 0.92);
}

.pswp__caption {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  padding: 8px 12px;
}
