/* ═══════════════════════════════════════════════════════════════
   SPACE THEME - Cosmic Portfolio Transformation
   ═══════════════════════════════════════════════════════════════ */

/* ─── GLOBAL CURSOR OVERRIDE ──────────────────────────────── */
*, *::before, *::after {
  cursor: none !important;
}

/* ─── ARTEMIS CURSOR ──────────────────────────────────────── */
#artemis-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  filter: drop-shadow(0 0 8px rgba(255, 150, 50, 0.5)) drop-shadow(0 0 20px rgba(255, 100, 30, 0.2));
  transition: filter 0.3s ease;
}

#artemis-cursor svg {
  display: block;
}

/* ─── SPACE BACKGROUND OVERRIDE ───────────────────────────── */
body {
  background: #030010 !important;
  overflow-x: hidden;
}

#space-canvas {
  background: radial-gradient(ellipse at 20% 50%, #0a0025 0%, #030010 50%, #000008 100%);
}

/* ─── GRAVITATIONAL PULL ON PLANETS ──────────────────────── */
.gravitational-pull {
  transform: translate(var(--grav-x, 0), var(--grav-y, 0)) scale(var(--grav-scale, 1)) !important;
  transition: transform 0.1s ease-out !important;
}

.gravitational-pull .slider--item-image {
  box-shadow:
    0 0 30px rgba(100, 150, 255, 0.3),
    0 0 60px rgba(100, 100, 255, 0.15),
    inset 0 0 20px rgba(80, 120, 255, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════════════
   PLANETARY ORBIT - Full Circle Layout
   ═══════════════════════════════════════════════════════════════ */

.work h2 {
  background: linear-gradient(135deg, #a0c4ff, #fff, #ffd6a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.planetary-orbit {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit ring visuals */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border: 1px solid rgba(100, 150, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-ring-rotate 120s linear infinite;
}

.orbit-ring--inner {
  width: 55%;
  height: 55%;
  border: 1px dashed rgba(100, 150, 255, 0.07);
  animation-direction: reverse;
  animation-duration: 80s;
}

@keyframes orbit-ring-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center star */
.orbit-center-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.star-core {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffd700 40%, #ff8c00 70%, transparent 100%);
  box-shadow:
    0 0 20px rgba(255, 200, 50, 0.6),
    0 0 40px rgba(255, 150, 30, 0.3),
    0 0 80px rgba(255, 100, 0, 0.15);
  animation: star-pulse 3s ease-in-out infinite;
}

.star-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.15) 0%, transparent 70%);
  animation: star-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes star-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 200, 50, 0.6), 0 0 40px rgba(255, 150, 30, 0.3); }
  50% { transform: scale(1.15); box-shadow: 0 0 30px rgba(255, 200, 50, 0.8), 0 0 60px rgba(255, 150, 30, 0.4); }
}

@keyframes star-glow-pulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* Planet items */
.planet-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  z-index: 2;
  /* Positioned via JS */
}

.planet-item a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planet-sphere {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.planet-sphere::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(100, 180, 255, 0.15),
    rgba(200, 100, 255, 0.1),
    rgba(100, 255, 200, 0.08),
    rgba(100, 180, 255, 0.15)
  );
  animation: planet-atmosphere 8s linear infinite;
  z-index: -1;
}

.planet-sphere::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.2), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.planet-sphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Planet label */
.planet-label {
  text-align: center;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 130px;
}

.planet-item:hover .planet-label,
.planet-item.is-active .planet-label {
  opacity: 1;
  transform: translateY(0);
}

.planet-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c0d8ff;
  text-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
  margin: 0;
  line-height: 1.3;
}

.planet-desc {
  font-size: 10px;
  color: rgba(180, 200, 220, 0.6);
  margin: 2px 0 0 0;
  line-height: 1.3;
}

/* Planet hover effects */
.planet-item:hover .planet-sphere {
  transform: scale(1.15);
}

.planet-item:hover .planet-sphere::before {
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
}

/* Individual planet glow colors */
.planet-item[data-index="0"] .planet-sphere {
  box-shadow: 0 0 20px rgba(70, 130, 255, 0.35), 0 0 40px rgba(70, 130, 255, 0.15);
}
.planet-item[data-index="1"] .planet-sphere {
  box-shadow: 0 0 20px rgba(220, 120, 50, 0.35), 0 0 40px rgba(220, 120, 50, 0.15);
}
.planet-item[data-index="2"] .planet-sphere {
  box-shadow: 0 0 20px rgba(200, 180, 100, 0.35), 0 0 40px rgba(200, 180, 100, 0.15);
}
.planet-item[data-index="3"] .planet-sphere {
  box-shadow: 0 0 20px rgba(80, 200, 150, 0.35), 0 0 40px rgba(80, 200, 150, 0.15);
}
.planet-item[data-index="4"] .planet-sphere {
  box-shadow: 0 0 20px rgba(180, 80, 180, 0.35), 0 0 40px rgba(180, 80, 180, 0.15);
}
.planet-item[data-index="5"] .planet-sphere {
  box-shadow: 0 0 20px rgba(100, 180, 100, 0.35), 0 0 40px rgba(100, 180, 100, 0.15);
}

/* Hover glow intensify */
.planet-item[data-index="0"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(70, 130, 255, 0.55), 0 0 60px rgba(70, 130, 255, 0.25);
}
.planet-item[data-index="1"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(220, 120, 50, 0.55), 0 0 60px rgba(220, 120, 50, 0.25);
}
.planet-item[data-index="2"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(200, 180, 100, 0.55), 0 0 60px rgba(200, 180, 100, 0.25);
}
.planet-item[data-index="3"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(80, 200, 150, 0.55), 0 0 60px rgba(80, 200, 150, 0.25);
}
.planet-item[data-index="4"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(180, 80, 180, 0.55), 0 0 60px rgba(180, 80, 180, 0.25);
}
.planet-item[data-index="5"]:hover .planet-sphere {
  box-shadow: 0 0 30px rgba(100, 180, 100, 0.55), 0 0 60px rgba(100, 180, 100, 0.25);
}

@keyframes planet-atmosphere {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* ═══════════════════════════════════════════════════════════════
   OLD SLIDER PLANETS (kept for compatibility)
   ═══════════════════════════════════════════════════════════════ */

/* Planet wrapper */
.work--lockup .slider--item-image {
  position: relative;
  border-radius: 50% !important;
  overflow: visible !important;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work--lockup .slider--item-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(100, 180, 255, 0.15),
    rgba(200, 100, 255, 0.1),
    rgba(100, 255, 200, 0.08),
    rgba(100, 180, 255, 0.15)
  );
  animation: planet-atmosphere 8s linear infinite;
  z-index: -1;
}

.work--lockup .slider--item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.work--lockup .slider--item-image img {
  border-radius: 50%;
  transition: all 0.4s ease;
}

.slider--item-title {
  color: #c0d8ff !important;
  text-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
  letter-spacing: 2px;
}

.slider--item-center .slider--item-title {
  color: #fff !important;
  text-shadow: 0 0 15px rgba(100, 180, 255, 0.5);
}

.slider--item-description {
  color: rgba(180, 200, 220, 0.7) !important;
}

/* Slider nav as space controls */
.work--lockup .slider--prev,
.work--lockup .slider--next {
  background: rgba(20, 30, 60, 0.6) !important;
  border: 1px solid rgba(100, 150, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.work--lockup .slider--prev:hover,
.work--lockup .slider--next:hover {
  background: rgba(30, 50, 100, 0.8) !important;
  border-color: rgba(100, 180, 255, 0.5);
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.2);
}

.work--lockup .slider--prev svg,
.work--lockup .slider--next svg {
  fill: rgba(150, 200, 255, 0.8) !important;
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
}

/* ═══════════════════════════════════════════════════════════════
   SKILLS AS METEORS
   ═══════════════════════════════════════════════════════════════ */

.meteor-skill {
  position: relative;
  overflow: visible !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Meteor fire trail */
.meteor-skill::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    to left,
    hsla(var(--meteor-hue, 30), 100%, 70%, 0.8),
    hsla(var(--meteor-hue, 30), 100%, 50%, 0.4),
    transparent
  );
  border-radius: 2px;
  transition: width 0.5s ease;
  animation: meteor-trail-shimmer 2s ease-in-out infinite;
  animation-delay: var(--meteor-delay, 0s);
}

.meteor-skill:hover::before {
  width: 80px;
}

/* Meteor glow body */
.meteor-skill::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 4px;
  background: radial-gradient(
    ellipse at center,
    hsla(var(--meteor-hue, 30), 80%, 60%, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.meteor-skill:hover::after {
  opacity: 1;
}

.meteor-skill:hover {
  color: #fff !important;
  text-shadow: 0 0 10px hsla(var(--meteor-hue, 30), 100%, 70%, 0.5);
  transform: translateX(5px);
}

.meteor-skill h3 {
  position: relative;
  padding-left: 18px;
}

.meteor-skill h3::before {
  content: '☄';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.7;
  animation: meteor-wobble 3s ease-in-out infinite;
  animation-delay: var(--meteor-delay, 0s);
}

@keyframes meteor-trail-shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes meteor-wobble {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  25% { transform: translateY(-50%) translateX(2px); }
  75% { transform: translateY(-50%) translateX(-1px); }
}

/* ═══════════════════════════════════════════════════════════════
   HOBBIES AS ASTEROID BELT
   ═══════════════════════════════════════════════════════════════ */

.about--options {
  position: relative;
  justify-content: center !important;
  gap: 25px;
}

/* Override old background images from main.css */
.about--options > a {
  background-image: none !important;
  border-color: transparent !important;
  width: auto !important;
  height: auto !important;
}


/* Orbit ring behind the asteroids */
.about--options::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 160px);
  height: 120px;
  border: 1px dashed rgba(120, 120, 150, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-rotate 60s linear infinite;
}

.about--options::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 100px);
  height: 80px;
  border: 1px dotted rgba(100, 120, 160, 0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-rotate 45s linear infinite reverse;
}

.asteroid-hobby {
  position: relative;
  border: 2px solid rgba(100, 130, 180, 0.3) !important;
  border-radius: 12px !important;
  overflow: visible !important;
  background: rgba(15, 20, 40, 0.6) !important;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: asteroid-float 4s ease-in-out infinite;
  animation-delay: calc(var(--orbit-angle, 0deg) / 90 * 0.8s);
}

/* Rocky texture overlay */
.asteroid-hobby::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 30%, rgba(180, 170, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(150, 140, 130, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(160, 155, 140, 0.06) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

/* Asteroid micro-ring */
.asteroid-hobby::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 30%;
  transform: translate(-50%, -50%) rotateX(70deg);
  border: 1px solid rgba(140, 160, 200, 0.15);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.asteroid-hobby:hover::after {
  opacity: 1;
}

.asteroid-hobby:hover {
  border-color: hsla(var(--asteroid-hue, 220), 60%, 60%, 0.5) !important;
  box-shadow:
    0 0 20px hsla(var(--asteroid-hue, 220), 60%, 50%, 0.2),
    0 0 40px hsla(var(--asteroid-hue, 220), 60%, 40%, 0.1);
  transform: translateY(-5px) scale(1.05);
  background: rgba(20, 30, 60, 0.8) !important;
}

.asteroid-hobby h3 {
  color: rgba(200, 210, 230, 0.9) !important;
  text-shadow: 0 0 8px rgba(100, 150, 255, 0.2);
  font-size: 14px !important;
  padding: 8px 15px;
  margin: 0;
  text-align: center;
}

.asteroid-hobby:hover h3 {
  color: #fff !important;
  text-shadow: 0 0 12px hsla(var(--asteroid-hue, 220), 80%, 70%, 0.5);
}

@keyframes asteroid-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   DEVELOPER PROFILE - MISSION DOSSIER
   ═══════════════════════════════════════════════════════════════ */

.profile-hud {
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-hud h2 {
  background: linear-gradient(135deg, #a0c4ff, #fff, #ffd6a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.profile-subtitle {
  color: rgba(150, 180, 220, 0.6);
  font-size: 12px;
  margin-top: -5px;
  letter-spacing: 3px;
}

/* Profile Orbit Container */
.profile-orbit {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 15px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Profile avatar star */
.profile-avatar {
  flex-direction: column;
  gap: 0;
}

.profile-initials {
  font-size: 16px !important;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 220, 150, 1), rgba(255, 180, 80, 0.9)) !important;
  width: 36px !important;
  height: 36px !important;
  letter-spacing: 1px;
}

.profile-name {
  color: rgba(220, 230, 255, 0.9);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
  white-space: nowrap;
}

.profile-alias {
  color: rgba(150, 180, 220, 0.5);
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Stat Orbs */
.stat-orb {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  cursor: pointer;
}

.stat-orb-sphere {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 35, 0.75);
  border: 1px solid rgba(100, 150, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.stat-orb:hover .stat-orb-sphere {
  transform: scale(1.18);
  border-color: rgba(150, 200, 255, 0.5);
}

.stat-value {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 8px;
  color: rgba(180, 200, 220, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* Stat orb glow colors by index */
.stat-orb[data-index="0"] .stat-orb-sphere {
  box-shadow: 0 0 18px rgba(70, 200, 150, 0.3), 0 0 40px rgba(70, 200, 150, 0.1);
}
.stat-orb[data-index="0"]:hover .stat-orb-sphere {
  box-shadow: 0 0 25px rgba(70, 200, 150, 0.5), 0 0 60px rgba(70, 200, 150, 0.2);
}

.stat-orb[data-index="1"] .stat-orb-sphere {
  box-shadow: 0 0 18px rgba(255, 160, 60, 0.3), 0 0 40px rgba(255, 160, 60, 0.1);
}
.stat-orb[data-index="1"]:hover .stat-orb-sphere {
  box-shadow: 0 0 25px rgba(255, 160, 60, 0.5), 0 0 60px rgba(255, 160, 60, 0.2);
}

.stat-orb[data-index="2"] .stat-orb-sphere {
  box-shadow: 0 0 18px rgba(100, 130, 255, 0.3), 0 0 40px rgba(100, 130, 255, 0.1);
}
.stat-orb[data-index="2"]:hover .stat-orb-sphere {
  box-shadow: 0 0 25px rgba(100, 130, 255, 0.5), 0 0 60px rgba(100, 130, 255, 0.2);
}

.stat-orb[data-index="3"] .stat-orb-sphere {
  box-shadow: 0 0 18px rgba(220, 80, 200, 0.3), 0 0 40px rgba(220, 80, 200, 0.1);
}
.stat-orb[data-index="3"]:hover .stat-orb-sphere {
  box-shadow: 0 0 25px rgba(220, 80, 200, 0.5), 0 0 60px rgba(220, 80, 200, 0.2);
}

.stat-orb[data-index="4"] .stat-orb-sphere {
  box-shadow: 0 0 18px rgba(80, 220, 255, 0.3), 0 0 40px rgba(80, 220, 255, 0.1);
}
.stat-orb[data-index="4"]:hover .stat-orb-sphere {
  box-shadow: 0 0 25px rgba(80, 220, 255, 0.5), 0 0 60px rgba(80, 220, 255, 0.2);
}

/* Profile Links */
.profile-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.profile-links .asteroid-hobby {
  padding: 0;
}

/* ─── SPACE PANELS (Expandable Detail) ────────────────────── */
.space-panel {
  position: absolute;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: rgba(8, 12, 30, 0.94);
  border-left: 1px solid rgba(100, 150, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

.space-panel.is-open {
  right: 0;
}

.space-panel-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: 1px solid rgba(100, 150, 255, 0.2);
  color: rgba(200, 220, 255, 0.7);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.space-panel-close:hover {
  border-color: rgba(150, 200, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 12px rgba(100, 150, 255, 0.3);
}

.space-panel-title {
  background: linear-gradient(135deg, #a0c4ff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.space-panel-content {
  padding-top: 5px;
}

/* Timeline entries */
.timeline-entry {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(100, 150, 255, 0.06);
}

.timeline-entry:last-child {
  border-bottom: none;
}

.timeline-date {
  color: rgba(100, 180, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  min-width: 44px;
  letter-spacing: 0.5px;
  padding-top: 2px;
}

.timeline-body h4 {
  color: rgba(230, 240, 255, 0.95);
  font-size: 13px;
  margin: 0 0 4px;
  font-weight: 700;
}

.timeline-role {
  color: rgba(150, 180, 220, 0.6);
  font-size: 11px;
  font-weight: 400;
}

.timeline-location {
  color: rgba(120, 160, 200, 0.5);
  font-size: 10px;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.timeline-body p {
  color: rgba(180, 200, 220, 0.65);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* Role cards */
.role-card {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(100, 150, 255, 0.06);
  align-items: flex-start;
}

.role-card:last-child {
  border-bottom: none;
}

.role-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 25, 50, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(150, 200, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.role-body h4 {
  color: rgba(230, 240, 255, 0.95);
  font-size: 13px;
  margin: 0 0 4px;
  font-weight: 700;
}

.role-body p {
  color: rgba(180, 200, 220, 0.65);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* Skill tags */
.skill-category {
  margin-bottom: 18px;
}

.skill-category-title {
  color: rgba(150, 180, 220, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 10px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(15, 25, 50, 0.7);
  border: 1px solid hsla(var(--tag-hue, 200), 60%, 50%, 0.25);
  color: hsla(var(--tag-hue, 200), 60%, 80%, 0.9);
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  border-color: hsla(var(--tag-hue, 200), 70%, 60%, 0.5);
  box-shadow: 0 0 12px hsla(var(--tag-hue, 200), 60%, 50%, 0.2);
  background: rgba(20, 35, 65, 0.8);
}

/* Panel divider and section titles */
.space-panel-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 150, 255, 0.15), transparent);
  margin: 18px 0;
}

.space-panel-section-title {
  color: rgba(150, 180, 220, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

/* Scrollbar styling for panels */
.space-panel::-webkit-scrollbar {
  width: 4px;
}

.space-panel::-webkit-scrollbar-track {
  background: transparent;
}

.space-panel::-webkit-scrollbar-thumb {
  background: rgba(100, 150, 255, 0.15);
  border-radius: 2px;
}

.space-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 150, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER SPACE ADAPTATION
   ═══════════════════════════════════════════════════════════════ */

.header--logo p {
  background: linear-gradient(135deg, #7eb8ff, #c4a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.header--cta {
  background: linear-gradient(135deg, rgba(15, 51, 255, 0.8), rgba(100, 50, 200, 0.8)) !important;
  border: 1px solid rgba(100, 150, 255, 0.3) !important;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease !important;
}

.header--cta:hover {
  box-shadow: 0 0 25px rgba(80, 100, 255, 0.3);
  border-color: rgba(130, 180, 255, 0.5) !important;
}

.header--nav-toggle span,
.header--nav-toggle::before,
.header--nav-toggle::after {
  background-color: rgba(180, 210, 255, 0.8) !important;
}

/* ─── SIDE NAV SPACE THEME ────────────────────────────────── */
.l-side-nav::before {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(80, 130, 255, 0.3),
    rgba(100, 80, 200, 0.2),
    transparent
  ) !important;
}

.side-nav li.is-active {
  color: #6494ff !important;
  text-shadow: 0 0 10px rgba(100, 148, 255, 0.5);
}

.side-nav li.is-active span {
  color: rgba(180, 210, 255, 0.9) !important;
}

.side-nav > li::before {
  color: rgba(100, 130, 180, 0.4) !important;
}

.side-nav li.is-active::before {
  color: rgba(180, 210, 255, 0.8) !important;
}

/* ─── INTRO BANNER SPACE ──────────────────────────────────── */
.intro--banner h1 {
  background: linear-gradient(135deg, #e0eeff, #fff, #c8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(100, 150, 255, 0.2));
}

.intro--banner::before {
  background: linear-gradient(to right, rgba(80, 130, 255, 0.3), rgba(100, 80, 200, 0.2), transparent) !important;
}

.intro--banner::after {
  background: linear-gradient(90deg, #4a7aff, #7c4aff) !important;
  box-shadow: 0 0 15px rgba(80, 130, 255, 0.5);
}

.intro--banner button {
  color: rgba(200, 220, 255, 0.9) !important;
}

.intro--banner button .btn-background {
  background: linear-gradient(135deg, rgba(15, 51, 255, 0.8), rgba(100, 50, 200, 0.7)) !important;
}

/* ─── ABOUT BANNER SPACE ──────────────────────────────────── */
.about--banner h2 {
  background: linear-gradient(135deg, #e0eeff, #fff, #c8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about--banner::before {
  border-color: rgba(100, 150, 255, 0.4) !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
}

.about--banner::after {
  background: linear-gradient(135deg, #4a7aff, #7c4aff) !important;
  box-shadow: 0 0 10px rgba(80, 130, 255, 0.4);
}

.about--banner h2::before {
  background: radial-gradient(circle, #4a7aff, #2a4acc) !important;
  box-shadow: 0 0 15px rgba(80, 130, 255, 0.4);
}

.about--banner h2::after {
  background: linear-gradient(135deg, #7c4aff, #4a7aff) !important;
}

/* ─── CONTACT SPACE THEME ─────────────────────────────────── */
.contact--lockup .modal {
  background: rgba(8, 12, 30, 0.85) !important;
  border: 1px solid rgba(100, 150, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(50, 80, 150, 0.1) !important;
}

.contact--lockup .modal--options li:nth-child(1) {
  background: linear-gradient(135deg, #1769ff, #4a3fff) !important;
}

.contact--lockup .modal--options li:nth-child(2) {
  background: linear-gradient(135deg, #ea4c89, #c44a8a) !important;
}

.contact--lockup .modal--options li:nth-child(3) {
  background: linear-gradient(135deg, #4a7aff, #7c4aff) !important;
}

/* ─── HIRE / FORM SPACE THEME ─────────────────────────────── */
.hire h2 {
  background: linear-gradient(135deg, #a0c4ff, #fff, #d4b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-request--options label {
  border-color: rgba(100, 150, 255, 0.3) !important;
  color: rgba(180, 210, 255, 0.8);
  transition: all 0.3s ease !important;
}

.work-request--options label:hover {
  border-color: rgba(130, 180, 255, 0.5) !important;
  box-shadow: 0 0 15px rgba(100, 150, 255, 0.15);
}

.work-request--options input[type="checkbox"]:checked + label {
  background: linear-gradient(135deg, rgba(15, 51, 255, 0.8), rgba(100, 50, 200, 0.7)) !important;
  border-color: rgba(130, 180, 255, 0.5) !important;
  box-shadow: 0 0 20px rgba(80, 130, 255, 0.25);
}

.work-request--information input[type="text"],
.work-request--information input[type="email"] {
  border-bottom-color: rgba(100, 150, 255, 0.3) !important;
  color: rgba(200, 220, 255, 0.9) !important;
}

.work-request--information input:focus {
  border-bottom-color: rgba(130, 180, 255, 0.6) !important;
  background: rgba(15, 20, 40, 0.5) !important;
  box-shadow: 0 1px 0 rgba(100, 150, 255, 0.3);
}

.work-request input[type="submit"] {
  background: linear-gradient(135deg, rgba(15, 51, 255, 0.9), rgba(100, 50, 200, 0.8)) !important;
  border: 1px solid rgba(100, 150, 255, 0.3) !important;
  color: rgba(220, 230, 255, 0.95) !important;
  letter-spacing: 2px;
  transition: all 0.3s ease !important;
}

.work-request input[type="submit"]:hover {
  box-shadow: 0 0 30px rgba(80, 130, 255, 0.3);
  border-color: rgba(150, 200, 255, 0.5) !important;
  transform: translateY(-2px);
}

/* ─── OUTER NAV SPACE THEME ───────────────────────────────── */
.container {
  outline-color: rgba(50, 80, 200, 0.6) !important;
}

.effect-rotate-left--animate .container {
  outline-color: rgba(80, 130, 255, 0.4) !important;
}

.outer-nav > li {
  color: rgba(180, 210, 255, 0.9);
  text-shadow: 0 0 20px rgba(100, 150, 255, 0.3);
}

.outer-nav > li::before {
  background: linear-gradient(90deg, #4a7aff, #7c4aff) !important;
  box-shadow: 0 0 20px rgba(80, 130, 255, 0.3);
}

/* ─── SCROLLBAR SPACE THEME ───────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #030010;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #4a7aff, #7c4aff);
  border-radius: 3px;
}

/* ─── SELECTION COLOR ─────────────────────────────────────── */
::selection {
  background: rgba(80, 130, 255, 0.4) !important;
  color: #fff;
}

::-moz-selection {
  background: rgba(80, 130, 255, 0.4) !important;
  color: #fff;
}

/* ─── GENERAL TEXT GLOW ───────────────────────────────────── */
.intro--options h3,
.intro--options p {
  transition: all 0.3s ease;
}

.intro--options > a:hover h3 {
  text-shadow: 0 0 10px hsla(var(--meteor-hue, 30), 100%, 70%, 0.4);
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE GAME CONTROLLER
   ═══════════════════════════════════════════════════════════════ */

.space-controller {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  pointer-events: none;
}

.controller-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 12px;
  background: linear-gradient(
    to top,
    rgba(5, 8, 25, 0.95) 0%,
    rgba(8, 12, 35, 0.88) 70%,
    rgba(10, 15, 40, 0.75) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(100, 150, 255, 0.15);
  box-shadow:
    0 -4px 30px rgba(0, 0, 0, 0.5),
    0 -1px 0 rgba(80, 130, 255, 0.1),
    inset 0 1px 0 rgba(100, 150, 255, 0.05);
  pointer-events: auto;
}

/* D-Pad */
.dpad {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.dpad-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(20, 30, 60, 0.7);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 6px;
  color: rgba(150, 200, 255, 0.8);
  padding: 0;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.dpad-btn svg {
  width: 16px;
  height: 16px;
}

.dpad-btn:active {
  background: rgba(60, 100, 200, 0.6);
  border-color: rgba(130, 180, 255, 0.5);
  box-shadow: 0 0 12px rgba(100, 150, 255, 0.3);
  color: #fff;
  transform: scale(0.92);
}

.dpad-up {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dpad-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.dpad-down {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dpad-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.dpad-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 20, 45, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 8px rgba(80, 130, 255, 0.1);
}

.dpad-center svg {
  filter: drop-shadow(0 0 4px rgba(255, 100, 30, 0.5));
}

/* Section indicators */
.controller-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 10px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100, 130, 180, 0.3);
  border: 1px solid rgba(100, 150, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.indicator-dot.active {
  background: linear-gradient(135deg, #4a7aff, #7c4aff);
  border-color: rgba(130, 180, 255, 0.5);
  box-shadow: 0 0 10px rgba(80, 130, 255, 0.4);
  width: 20px;
  border-radius: 10px;
}

/* Action button (menu) */
.action-buttons {
  flex-shrink: 0;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(20, 30, 60, 0.7);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 50%;
  padding: 0;
  gap: 3px;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.action-btn span {
  display: block;
  width: 14px;
  height: 2px;
  background: rgba(150, 200, 255, 0.7);
  border-radius: 1px;
  transition: all 0.2s ease;
}

.action-btn span:nth-child(1) { width: 12px; }
.action-btn span:nth-child(2) { width: 16px; }
.action-btn span:nth-child(3) { width: 12px; }

.action-btn:active {
  background: rgba(60, 100, 200, 0.6);
  border-color: rgba(130, 180, 255, 0.5);
  box-shadow: 0 0 12px rgba(100, 150, 255, 0.3);
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  
   ═══════════════════════════════════════════════════════════════ */

/* --- TOUCH DEVICE CURSOR HIDE --- */
@media (hover: none) and (pointer: coarse) {
  *, *::before, *::after {
    cursor: auto !important;
  }
  
  #artemis-cursor {
    display: none !important;
  }
}

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .planetary-orbit {
    width: 480px;
    height: 480px;
  }

  .planet-sphere {
    width: 80px;
    height: 80px;
  }

  .star-core {
    width: 18px;
    height: 18px;
  }
}

/* --- MOBILE (max-width: 767px) --- */
@media (max-width: 767px) {
  /* Show game controller */
  .space-controller {
    display: block;
  }

  /* Completely hide device notification - we now support mobile */
  .device-notification {
    display: none !important;
  }

  /* Add bottom padding for controller */
  .l-viewport {
    padding-bottom: 0;
  }

  /* Side nav hidden on mobile already */

  /* Intro adjustments */
  .intro {
    padding: 0 15px;
  }

  .intro--banner h1 {
    font-size: 36px;
  }

  .intro--banner img {
    width: 200px;
    opacity: 0.3;
  }

  .intro--options {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
  }

  .intro--options > a {
    display: block !important;
    max-width: 48% !important;
    margin: 0 !important;
  }

  .intro--options h3 {
    font-size: 12px;
  }

  .intro--options p {
    font-size: 11px;
    margin: 0;
  }

  /* Planetary orbit - smaller on mobile */
  .planetary-orbit {
    width: 320px;
    height: 320px;
  }

  .planet-sphere {
    width: 56px;
    height: 56px;
  }

  .planet-sphere::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .planet-name {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .planet-desc {
    font-size: 8px;
  }

  .planet-label {
    max-width: 90px;
  }

  .star-core {
    width: 14px;
    height: 14px;
  }

  .star-glow {
    width: 40px;
    height: 40px;
  }

  .work h2 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 5px !important;
  }

  /* Profile section mobile */
  .about {
    padding: 0 15px;
  }

  .profile-hud h2 {
    font-size: 24px;
  }

  .profile-orbit {
    width: 280px;
    height: 280px;
    margin: 10px auto 5px;
  }

  .stat-orb-sphere {
    width: 52px;
    height: 52px;
  }

  .stat-value {
    font-size: 15px;
  }

  .stat-label {
    font-size: 7px;
  }

  .profile-initials {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .profile-name {
    font-size: 9px;
    margin-top: 5px;
  }

  .profile-alias {
    font-size: 8px;
  }

  .profile-links {
    gap: 8px;
    margin-top: 8px;
  }

  .profile-links .asteroid-hobby h3 {
    font-size: 10px !important;
    padding: 5px 10px;
  }

  /* Space panel slides up from bottom on mobile */
  .space-panel {
    top: auto;
    bottom: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    border-left: none;
    border-top: 1px solid rgba(100, 150, 255, 0.15);
    border-radius: 16px 16px 0 0;
    padding-bottom: 120px;
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .space-panel.is-open {
    right: 0;
    bottom: 0;
  }

  .asteroid-hobby h3 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    font-size: 11px !important;
    padding: 6px 10px;
    margin: 0 !important;
    text-align: center;
  }

  /* Contact section mobile */
  .contact {
    background-size: cover;
  }

  .contact--lockup {
    max-width: 95% !important;
    padding: 0 10px;
  }

  .contact--lockup .modal {
    padding: 25px 20px;
  }

  .contact--lockup .modal--information p {
    font-size: 12px;
  }

  .contact--lockup .modal--information a {
    font-size: 12px;
  }

  /* Hire section mobile */
  .hire {
    padding: 0 15px;
    max-width: 100% !important;
  }

  .hire h2 {
    font-size: 22px;
  }

  .work-request--options {
    margin: 15px 0;
  }

  .work-request--options label {
    width: 130px !important;
    font-size: 11px !important;
    line-height: 40px;
    margin-bottom: 10px !important;
  }

  .work-request--information {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .work-request--information .information-name,
  .work-request--information .information-email {
    width: 100%;
    font-size: 20px;
  }

  .work-request input[type="submit"] {
    width: 100%;
    line-height: 44px;
    font-size: 13px;
  }

  /* Header mobile adjustments */
  .header {
    height: 55px;
    padding: 0 10px;
  }

  .header--logo p {
    font-size: 14px;
  }

  /* Outer nav mobile */
  .outer-nav > li {
    font-size: 32px;
  }

  /* Canvas cursor adjustments */
  #artemis-cursor svg {
    width: 28px;
    height: 56px;
  }
}

/* --- SMALL MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
  .planetary-orbit {
    width: 280px;
    height: 280px;
  }

  .planet-sphere {
    width: 48px;
    height: 48px;
  }

  .planet-name {
    font-size: 8px;
  }

  .planet-desc {
    display: none;
  }
  
  .planet-label {
    max-width: 70px;
  }

  .intro--banner h1 {
    font-size: 30px;
  }

  .intro--options > a {
    max-width: 100% !important;
  }

  .profile-orbit {
    width: 240px;
    height: 240px;
  }

  .stat-orb-sphere {
    width: 44px;
    height: 44px;
  }

  .stat-value {
    font-size: 13px;
  }

  .stat-label {
    font-size: 6px;
  }

  .profile-hud h2 {
    font-size: 20px;
  }

  .work-request--options .options-a,
  .work-request--options .options-b {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100% !important;
  }

  .work-request--options label {
    width: 110px !important;
    font-size: 10px !important;
    line-height: 36px;
  }
}

/* --- Override main.css hiding sections on small screens --- */
@media (max-width: 600px) {
  .profile-links {
    display: flex !important;
  }

  .intro--options {
    display: flex !important;
  }
}

@media (max-width: 600px) and (max-height: 750px) {
  .intro--options {
    display: flex !important;
  }
}

/* --- Fix landscape blocking on mobile --- */
@media (max-width: 736px) and (orientation: landscape) {
  .device-notification {
    display: none !important;
  }
}

@media (max-width: 359px) {
  .device-notification {
    display: none !important;
  }
}

/* Safe area for controller on notch phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .controller-body {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

/* --- Ensure sections take full height including controller area --- */
@media (max-width: 767px) {
  .l-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .l-section .work,
  .l-section .intro,
  .l-section .about,
  .l-section .hire {
    padding-bottom: 110px;
  }
  
  .l-section .contact {
    padding-bottom: 110px;
  }
}
