/* Activated reveal when section is in view */
.langs.in-view .langs-title {
  opacity: 1; transform: none; filter: blur(0); transition-delay: 40ms;
}

/* Exclaim badge attached to the monitor illustration */
.exclaim-badge {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%) scale(0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
  cursor: default;
  animation: floatY 6s ease-in-out 1.2s infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}
.exclaim-badge .mark {
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #cacaca;
  text-shadow: 0 0 6px rgba(165, 165, 165, 0.9), 0 0 18px rgba(134, 134, 134, 0.55), 0 0 28px rgba(102, 102, 102, 0.35);
}
.exclaim-badge.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.exclaim-badge .exclaim-text {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 10px;
  font: 600 12px/1.2 'Varela Round', system-ui, sans-serif;
  color: #111;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.exclaim-badge:hover .exclaim-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .exclaim-badge .exclaim-text { transition: none; }
}
.langs.in-view .langs-desc {
  opacity: 1; transform: none; filter: blur(0); transition-delay: 140ms;
}
.langs.in-view .langs-marquee {
  opacity: 1; transform: none; filter: blur(0); transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .langs-title,
  .langs-desc,
  .langs-marquee { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}
/* (old avatar wrap with ring removed) */

/* Font setup: Varela Round + smoothing */
@font-face {
  font-family: 'Varela Round';
  src: url('../font/VarelaRound-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hammersmith One';
  src: url('../font/HammersmithOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.intro {
  width: 100%; /* full width so image can reach the right edge */
  max-width: none;
  margin: calc(20px + 2cm) 0 0 0; /* moved higher */
  padding: 0 0 0 24px; /* left padding for nicer text alignment */
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  cursor: default; /* prevent text cursor in intro */
  min-height: 70vh; /* bring next section higher while keeping scroll */
  padding-bottom: 12vh; /* breathing room at bottom */
  position: relative; /* positioning context for arrow */
}
.intro h1, .intro .intro-text, .intro .chip { cursor: default; }
.intro h1 {
  margin: 0 0 10px;
  font-size: 30px; /* slightly smaller for Bungee */
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
}
.intro h1 .word {
  display: inline-block;
  transform: translateY(12px);
  opacity: 0;
  animation: wordUp 700ms cubic-bezier(.2,.7,.2,1) forwards;
}
.intro h1 .word:nth-child(1) { animation-delay: 0ms; }
.intro h1 .word:nth-child(2) { animation-delay: 240ms; }
.intro h1 .word:nth-child(3) { animation-delay: 480ms; }

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

@keyframes introTextIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro .intro-text {
  margin: 0;
  font-size: 20px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6; /* increase spacing between lines */
  opacity: 0; /* hidden until heading animation finishes */
  transform: translateY(6px);
  animation: introTextIn 450ms ease-out forwards;
  animation-delay: 1.0s; /* after last word (0.7s + 0.2s) + small buffer */
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px; /* pill */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.46));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 140ms ease, box-shadow 180ms ease, background-color 180ms ease;
  cursor: pointer;
  position: relative;
  /* fade-in first, then start breathing loop */
  opacity: 0;
  transform: translateY(4px);
  animation: btnIn 380ms ease-out 1.05s forwards,
             btnBreath 4.5s ease-in-out 1.6s infinite;
  overflow: hidden; /* clip sheen inside pill */
}
.btn-discord::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 35%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn-discord i {
  color: #5865F2; /* Discord blurple */
  font-size: 18px;
}
.btn-discord:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.52));
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn-discord:hover::after {
  animation: btnSheen 900ms ease;
}
.btn-discord:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-discord:focus-visible { outline: 2px solid rgba(88,101,242,0.7); outline-offset: 2px; }

@keyframes btnBreath {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06); }
  50% { transform: scale(1.02); box-shadow: 0 10px 24px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.08); }
}
@keyframes btnIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes btnSheen {
  0% { transform: translateX(-120%); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-discord { animation: none; }
  .btn-discord:hover::after { animation: none; }
}

/* Chip-style emphasis: bold text with a short rounded underline */
.chip {
  position: relative;
  font-weight: 700;
  padding-right: 2px; /* space so underline end doesn't touch glyph */
}
.chip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-2px - 0.5mm); /* slightly more gap below the word */
  height: 5px; /* thinner underline */
  width: 85%; /* end slightly before word end */
  background: rgba(173, 173, 173, 0.55); /* softer white */
  border-radius: 999px;
  transition: width 200ms ease, background-color 200ms ease;
}
.chip:hover::after {
  width: 90%;
  background: rgba(255, 255, 255, 0.75);
}

/* Right-side illustration in intro */
.intro-illustration-wrap { 
  top: 175px;
  margin-left: auto; 
  margin-right: 4cm; /* flush to the right edge */
  display: flex; 
  justify-content: flex-end; 
  align-items: flex-start;
  margin-top: 0; /* raise image a bit */
  position: relative; /* for glow pseudo-element */
}
.intro-illustration {
  position: relative; /* allow stacking over glow */
  display: block;
  width: min(40vw, 520px);
  height: auto;
  object-fit: contain;
  /* Force visible gray tones instead of near-black */
  filter: grayscale(100%) brightness(1.6) contrast(0.85);
  opacity: 0; /* fade in later */
  z-index: 1; /* above the glow */
  transform: translateY(12px);
  /* fade-in then gentle float */
  animation: avatarIn 500ms ease-out 1.2s forwards,
             floatY 6s ease-in-out 1.2s infinite;
}
.intro-illustration-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(260px, 42vw, 560px);
  margin: auto 0; /* vertically center */
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,255,255,0.38), rgba(255,255,255,0) 62%);
  filter: blur(32px);
  opacity: 0; /* glow also fades in */
  z-index: 0; /* ensure behind */
  animation: glowIn 400ms ease-out 1.2s forwards,
             floatY 6s ease-in-out 1.2s infinite;
}
.intro .intro-content { 
  text-align: left; 
  max-width: 720px; /* keep text column readable */
  margin-top: 4.5cm; /* push text lower */
  margin-left: 5cm; /* shift text 2cm to the right */
}

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

@keyframes glowIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

/* Gentle up-down floating */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .intro { flex-direction: column; text-align: center; padding: 0 16px; gap: 20px; }
  .intro .intro-content { text-align: center; }
  .intro-illustration { width: 80vw; }
  .intro { min-height: 180vh; padding-bottom: 14vh; }
}

/* Respect reduced motion: no word animation */
@media (prefers-reduced-motion: reduce) {
  .intro-illustration { animation: none; transform: none; opacity: 1; }
  .intro h1 .word { animation: none; transform: none; opacity: 1; }
  .intro .intro-text { animation: none; opacity: 1; transform: none; }
  .intro-illustration-wrap::before { animation: none; opacity: 0.7; }
}


html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
:root{ --anim-scale: 1; }
html, body { min-height: 100%; }
html, body {
  overflow-y: auto;   /* allow vertical scroll */
  overflow-x: hidden; /* prevent horizontal scroll */
}
/* Cross-browser hide scrollbar visuals */
html {
  -ms-overflow-style: none;    /* IE and old Edge */
  scrollbar-width: none;       /* Firefox */
}
html::-webkit-scrollbar {      /* Chrome, Safari */
  display: none;
}
body {
  margin: 0;
  font-family: 'Varela Round', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: url('../ico/background.jpg') center / cover no-repeat;
  min-height: 180vh; /* ensure vertical scroll regardless of route */
}

.secret-box {
  position: absolute;
  right: clamp(16px, 5vw, 60px);
  top: 65%;
  transform: translateY(-50%);
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  font-family: 'Hammersmith One', 'Varela Round', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .2px;
  background: linear-gradient(180deg, rgba(24,24,26,0.88), rgba(18,18,20,0.9));
  border: 2px solid #ffd54a;
  box-shadow: 0 0 12px rgba(255,213,74,0.65), 0 0 34px rgba(255,213,74,0.35);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  text-align: center;
  z-index: 4;
  animation: neonPulse 3.2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255,213,74,0.55), 0 0 28px rgba(255,213,74,0.28); border-color: #ffd54a; }
  50% { box-shadow: 0 0 22px rgba(255,213,74,0.85), 0 0 46px rgba(255,213,74,0.45); border-color: #ffe07a; }
}

@media (max-width: 720px) {
  .secret-box { right: 12px; font-size: 13px; padding: 12px 14px; }
}

/* Toasts */
.toast-container{
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  width: min(320px, 90vw);
  z-index: 1000;
}
.perf-hud {
  position: fixed;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  flex-direction: column-reverse;
  gap: 2px;
  align-items: flex-start;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: 600 12px/1 'Varela Round', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  z-index: 1000;
}
.perf-hud .fps, .perf-hud .hz { opacity: .9; }

/* Key HUD */
.key-hud {
  position: sticky;
  top: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 0 14px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  padding: 10px 12px;
  font: 600 12px/1.25 'Varela Round', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.key-hud .row { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.key-hud .key { font-weight: 800; padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,0.08); }
.key-hud .state { width: 8px; height: 8px; border-radius: 50%; background: #d64545; box-shadow: 0 0 8px rgba(214,69,69,0.4); transition: background 220ms ease, box-shadow 220ms ease; }
.key-hud .on  { background: #3ddc84; box-shadow: 0 0 10px rgba(61,220,132,0.55); }
.key-hud .label { opacity: .9; }

/* Animate Hz position when FPS toggles */
.perf-hud .hz { transition: transform 260ms ease, opacity 200ms ease; }
body.fps-on .perf-hud .hz { transform: translateY(0); }
body.fps-off .perf-hud .hz { transform: translateY(10px); }
body.fps-off .perf-hud .fps { opacity: 0; pointer-events: none; }
body.hz-off .perf-hud .hz { opacity: 0; pointer-events: none; }

/* Global pause (CSS animations) */
body.paused-all *,
body.paused-all *::before,
body.paused-all *::after {
  animation-play-state: paused !important;
}
.toast {
  position: relative;
  width: 100%;
  color: #fff;
  background: rgba(12,12,14,0.68);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  transform: translateX(120%) translateY(10px) scale(.98);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.22,.75,.2,1), opacity 260ms ease;
  overflow: hidden;
  z-index: 1;
}
.toast::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border width */
  background: linear-gradient(135deg, rgba(238, 238, 238, 0.6), rgba(175, 175, 175, 0.2), rgba(255,255,255,0.08));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .28;
}
.toast.show {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}
.toast.hiding {
  transform: translateX(120%) translateY(0) scale(.98);
  opacity: 0;
}
.toast-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 10px;
}
.toast-icon{ color:#fdfdfd; opacity:.95; font-size:16px; }
.toast-text { font-weight: 700; letter-spacing: .4px; }
.toast-close {
  margin-left: auto;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 140ms ease;
}
.toast-close:hover { color: #fff; transform: scale(1.05); }
.toast-close:active { transform: scale(.98); }
.toast-progress {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.toast-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: repeating-linear-gradient(90deg, rgb(143, 143, 143) 0 12px, rgba(143,143,143,0.7) 12px 24px);
  background-size: 200% 100%;
  animation: stripeMove 600ms linear infinite;
}

@keyframes stripeMove { to { background-position: 200% 0; } }

/* Glass cursor ring */
.cursor-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid transparent;
  opacity: 0; /* hidden until first mousemove */
  transition: opacity 240ms ease;
}
.cursor-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #333333, #333333);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

/* Rotating white arc around the glass cursor (smooth loader-like ring) */
.cursor-glass::after {
  content: "";
  position: absolute;
  inset: 0px; /* slightly outside to sit over the ring */
  border-radius: 50%;
  pointer-events: none;
  /* Two white arcs on opposite sides (approx 60deg each) */
  background: conic-gradient(
    from 0deg,
    /* gap */ rgba(255,255,255,0) 0 10deg,
    /* arc 1 */ rgba(255,255,255,0.95) 10deg 70deg,
    /* gap */ rgba(255,255,255,0) 70deg 190deg,
    /* arc 2 */ rgba(255,255,255,0.95) 190deg 250deg,
    /* gap */ rgba(255,255,255,0) 250deg 360deg
  );
  /* Punch a hole inside so it looks like a stroke */
  -webkit-mask: radial-gradient(circle, transparent 55%, #000 56%);
  mask: radial-gradient(circle, transparent 55%, #000 56%);
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.35));
  animation: ringSpin 1.2s linear infinite;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* Motion blur ghosts trailing the glass cursor */
.cursor-ghost {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998; /* just below the main glass */
  opacity: 0; /* controlled via JS and .cursor-off */
  will-change: transform, opacity;
  /* faint white arc-like glow similar to main ring */
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%);
  filter: blur(2px) saturate(120%);
  transition: opacity 240ms ease;
}

/* Toggle to fade-out cursor visuals */
body.cursor-off .cursor-glass { opacity: 0 !important; }
body.cursor-off .cursor-ghost { opacity: 0 !important; }

/* Dynamic-Island style navbar (detached, rounded, glassmorphism) */
.nav-island {
  position: relative;
  margin: 24px auto 0; /* detached from the top */
  padding: 6px 27px; /* +~19px per side ≈ +1cm total */
  width: fit-content; /* shrink to content */
  max-width: 90vw;
  display: block;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px; /* pill shape */
  backdrop-filter: blur(50px) saturate(120%);
  -webkit-backdrop-filter: blur(50px) saturate(120%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  overflow: hidden; /* so the label slides from inside */
  /* Drop-in animation from the top */
  animation: navDrop 600ms cubic-bezier(.2,.7,.2,1) both, navPulse 4s ease-in-out 1s infinite;
  position: relative;
}

.nav-island ul {
  margin: 0;
  padding: 0 8px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center; /* center icons in a compact row */
  gap: 18px;
}


/* Drop-in keyframes */
@keyframes navDrop {
  from { transform: translateY(-24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes navPulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  50% {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 16px 38px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
  }
}



/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-island { animation: none; }
}
.nav-island a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 2px; /* subtle inner spacing around the icon */
  color: #ffffff; /* icons white */
  text-decoration: none;
  border-radius: 12px;
  background: transparent; /* no fill by default */
  transition: color 160ms ease, transform 120ms ease;
}
.nav-island a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}
.nav-island a:hover {
  background: transparent; /* no fill on hover */
}

.nav-island a:active {
  transform: translateY(1px) scale(0.98);
}

.nav-island i {
  font-size: 18px; /* icon size */
  margin: 0 2px; /* delicate horizontal spacing */
  line-height: 1;
  transition: opacity 160ms ease;
}

/* Icon hover micro-interaction for all items with labels */
.has-label a { position: relative; }
.has-label a i {
  transition: opacity 160ms ease;
}
.has-label a:hover i {
  transform: none; /* disable lift/scale on hover */
}

/* Sliding label from the bottom (inside navbar) */
.has-label .nav-label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 12px); /* start lower inside the pill */
  opacity: 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2px;
  pointer-events: none;
  white-space: nowrap;
  transition: transform 200ms ease, opacity 200ms ease; /* no delay by default */
}

/* Darken only the icon slightly on hover */
.nav-island a:hover i {
  opacity: 0.5;
}

@media (max-width: 520px) {
  .nav-island {
    margin-top: 16px;
    padding: 6px 8px;
  }
  .nav-island a { width: 38px; height: 38px; }
  .nav-island i { font-size: 16px; }
}

/* --- Code page random number display --- */
.rand-wrap {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none; /* do not block the whole page */
}
.rand-list {
  display: flex;
  gap: 16px;
  font-family: 'Press Start 2P', system-ui, monospace;
  color: #fff;
  /* smaller than before */
  font-size: clamp(18px, 4vw, 42px);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
  user-select: none;
  pointer-events: auto; /* allow clicks only on the code digits area */
}
.digit-col {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 1ch; /* keep columns stable */
}
.digit-col.locked { cursor: not-allowed; }
.digit-col .digit {
  line-height: 1;
}
.digit-col .digit-underline {
  width: 0.9em;
  height: 2px; /* thin floor line */
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.rand-title {
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
  color: rgba(255,255,255,0.95);
  font-size: clamp(12px, 2vw, 20px);
  letter-spacing: .5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  user-select: none;
}

/* Bottom-centered gentle floating arrow (SVG chevron, no background) */
.arrow-down {
  position: sticky; /* stays relative to section, sticks in viewport */
  left: 48.5%;
  top: calc(80vh - 90px); /* ~20px above bottom for 70px svg */
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none; /* nie jest guzikiem */
  cursor: default;
  z-index: 3; /* above section content */
  transition: opacity 300ms ease; /* fade on scroll */
  will-change: opacity; /* smoother fade */
  animation: arrowFloatY 3.5s ease-in-out infinite;
}
.arrow-down svg { width: 22px; height: 22px; opacity: 0.95; }
.arrow-down path { stroke: #fff; stroke-linecap: round; stroke-linejoin: round; }

/* hint above the arrow */
.arrow-down .hint {
  position: static;
  color: rgba(255,255,255,0.88);
  font-family: 'Hammersmith One', 'Varela Round', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .2px;
  opacity: 0;
  animation: hintIn 600ms ease forwards 400ms;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .arrow-down { animation: none; }
}

/* --- Languages section (JĘZYKI) --- */
.langs {
  width: 100%;
  padding: 60px 0 40px;
  color: #fff;
}
.langs-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* center heading and description */
  position: relative; /* anchor for absolute tooltip */
}
.langs-title {
  margin: 0 0 8px 0;
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
  font-size: clamp(28px, 6vw, 54px);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  /* reveal initial state */
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}
.langs-desc {
  margin: 0 0 18px 0;
  font-size: clamp(13px, 2.5vw, 16px);
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}

/* Marquee container with edge fade */
.langs-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0 17px; /* extra bottom space for the global tooltip */
  --scroll-duration: 26s;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}

.langs-marquee .track {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: nowrap; /* no wrapping to preserve seamless line */
  min-width: 200%; /* duplicate icons allow -50% shift */
  animation: langsScroll var(--scroll-duration) linear infinite;
  will-change: transform;
}

.langs-marquee i {
  font-size: clamp(28px, 6vw, 46px);
  color: rgba(255,255,255,0.95); /* default: white */
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
  transition: transform 160ms ease, opacity 160ms ease, color 160ms ease;
  flex: 0 0 auto; /* fixed-size items for stable spacing */
  position: relative; /* anchor for tooltip */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.langs-marquee i:hover {
  transform: translateY(-3px) scale(1.06);
  opacity: 1;
  color: var(--brand, rgba(255,255,255,0.95)); /* restore brand color on hover */
}

/* Brand colors (used via --brand var) */
.langs-marquee .fa-python   { --brand: #3776AB; }
.langs-marquee .fa-js       { --brand: #F7DF1E; }
.langs-marquee .fa-html5    { --brand: #E34F26; }
.langs-marquee .fa-css3-alt { --brand: #1572B6; }
.langs-marquee .fa-node-js  { --brand: #339933; }
.langs-marquee .fa-react    { --brand: #61DAFB; }
.langs-marquee .fa-git-alt  { --brand: #F05032; }
.langs-marquee .fa-php      { --brand: #777BB4; }

/* Tooltip bubble under icons (uses data-label) */
/* Per-icon tooltip disabled in favor of one global tooltip below the bar */
.langs-marquee i::after { content: none; }

/* Global tooltip positioned under hovered icon */
.langs-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, 8px);
  background: #ffffff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 7px 10px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 3;
}
.langs-tooltip.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Pause on hover handled via JS on icon hover */

@keyframes langsScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .langs-marquee .track { animation: none; }
}

/* Sequential reveal */
.nav-island,
.footer-wrap > .footer-col,
.footer-col.links .link-list li,
.footer-col.social .social-links a { opacity: 0; transform: translateY(6px); transition: opacity 220ms ease, transform 220ms ease; }
body.ui-ready .nav-island { opacity: 1; transform: none; transition-delay: 40ms; }
body.ui-ready .footer-wrap > .footer-col { opacity: 1; transform: none; transition-delay: 80ms; }
body.ui-ready .footer-col.links .link-list li:nth-child(1) { opacity: 1; transform: none; transition-delay: 100ms; }
body.ui-ready .footer-col.links .link-list li:nth-child(2) { opacity: 1; transform: none; transition-delay: 140ms; }
body.ui-ready .footer-col.links .link-list li:nth-child(3) { opacity: 1; transform: none; transition-delay: 180ms; }
body.ui-ready .footer-col.social .social-links a:nth-child(1) { opacity: 1; transform: none; transition-delay: 120ms; }
body.ui-ready .footer-col.social .social-links a:nth-child(2) { opacity: 1; transform: none; transition-delay: 160ms; }
body.ui-ready .footer-col.social .social-links a:nth-child(3) { opacity: 1; transform: none; transition-delay: 200ms; }
@media (prefers-reduced-motion: reduce) {
  .nav-island,
  .footer-wrap > .footer-col,
  .footer-col.links .link-list li,
  .footer-col.social .social-links a { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* Footer */
.site-footer {
  margin-top: 15vw;
  color: #fff;
  background: rgba(0,0,0,0.72);
  border-top: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  height: 120px;
  opacity: .45;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'><defs><linearGradient id='g1' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%230e0e0e'/><stop offset='60%' stop-color='%23222222'/><stop offset='100%' stop-color='%23444444'/></linearGradient></defs><path d='M0,60 C 160,40 320,80 480,58 C 640,36 880,90 1200,60 L1200,0 L0,0 Z' fill='url(%23g1)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 64' preserveAspectRatio='none'><defs><linearGradient id='g2a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.12)'/><stop offset='100%' stop-color='rgba(255,255,255,0.02)'/></linearGradient></defs><path d='M0,44 C 150,28 300,62 450,40 C 650,20 950,68 1200,44 L1200,0 L0,0 Z' fill='url(%23g2a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'><defs><linearGradient id='g3a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.16)'/><stop offset='100%' stop-color='rgba(255,255,255,0.03)'/></linearGradient></defs><path d='M0,32 C 180,20 360,40 540,28 C 760,16 980,46 1200,32 L1200,0 L0,0 Z' fill='url(%23g3a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 36' preserveAspectRatio='none'><defs><linearGradient id='g4a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.24)'/><stop offset='100%' stop-color='rgba(255,255,255,0.05)'/></linearGradient></defs><path d='M0,24 C 200,14 400,28 600,18 C 820,8 1020,24 1200,20 L1200,0 L0,0 Z' fill='url(%23g4a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'><defs><linearGradient id='g5a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.28)'/><stop offset='100%' stop-color='rgba(255,255,255,0.06)'/></linearGradient></defs><path d='M0,18 C 220,10 440,22 660,14 C 880,8 1060,20 1200,18 L1200,0 L0,0 Z' fill='url(%23g5a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 22' preserveAspectRatio='none'><defs><linearGradient id='g6a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.34)'/><stop offset='100%' stop-color='rgba(255,255,255,0.08)'/></linearGradient></defs><path d='M0,14 C 240,8 480,16 720,10 C 960,6 1100,12 1200,12 L1200,0 L0,0 Z' fill='url(%23g6a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20' preserveAspectRatio='none'><defs><linearGradient id='g7a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.36)'/><stop offset='100%' stop-color='rgba(255,255,255,0.08)'/></linearGradient></defs><path d='M0,12 C 260,6 520,16 780,10 C 980,6 1100,14 1200,12 L1200,0 L0,0 Z' fill='url(%23g7a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 18' preserveAspectRatio='none'><defs><linearGradient id='g8a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.30)'/><stop offset='100%' stop-color='rgba(255,255,255,0.06)'/></linearGradient></defs><path d='M0,10 C 240,6 520,14 800,8 C 980,6 1100,12 1200,10 L1200,0 L0,0 Z' fill='url(%23g8a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 16' preserveAspectRatio='none'><defs><linearGradient id='g9a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.24)'/><stop offset='100%' stop-color='rgba(255,255,255,0.05)'/></linearGradient></defs><path d='M0,9 C 220,5 520,12 820,7 C 1000,5 1120,10 1200,9 L1200,0 L0,0 Z' fill='url(%23g9a)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'><defs><linearGradient id='g10a' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.20)'/><stop offset='100%' stop-color='rgba(255,255,255,0.04)'/></linearGradient></defs><path d='M0,8 C 200,4 520,10 860,6 C 1040,4 1140,9 1200,8 L1200,0 L0,0 Z' fill='url(%23g10a)'/></svg>");
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x;
  background-size: 1200px 100%, 1000px 100%, 800px 100%, 700px 100%, 600px 100%, 500px 100%, 420px 100%, 360px 100%, 320px 100%, 280px 100%;
  background-position: 0 -2px, 0 -18px, 0 -30px, 0 -42px, 0 -56px, 0 -70px, 0 -84px, 0 -98px, 0 -112px, 0 -126px;
  animation: wave1 22s linear infinite;
  animation-duration: calc(22s / clamp(0.05, var(--anim-scale, 1), 1));
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  height: 110px;
  opacity: .34;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 64' preserveAspectRatio='none'><defs><linearGradient id='g2' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%23090909'/><stop offset='60%' stop-color='%23262626'/><stop offset='100%' stop-color='%23414141'/></linearGradient></defs><path d='M0,44 C 180,28 360,66 540,42 C 760,16 1000,74 1200,44 L1200,0 L0,0 Z' fill='url(%23g2)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 58' preserveAspectRatio='none'><defs><linearGradient id='g2b' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='%230b0b0b'/><stop offset='60%' stop-color='%23212121'/><stop offset='100%' stop-color='%233a3a3a'/></linearGradient></defs><path d='M0,38 C 160,24 340,60 520,38 C 740,18 980,68 1200,40 L1200,0 L0,0 Z' fill='url(%23g2b)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 52' preserveAspectRatio='none'><defs><linearGradient id='g2c' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.10)'/><stop offset='100%' stop-color='rgba(255,255,255,0.02)'/></linearGradient></defs><path d='M0,34 C 200,22 400,50 600,32 C 820,14 1020,56 1200,34 L1200,0 L0,0 Z' fill='url(%23g2c)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'><defs><linearGradient id='g2d' x1='0' y1='0' x2='0' y2='1'><stop offset='0%' stop-color='rgba(255,255,255,0.16)'/><stop offset='100%' stop-color='rgba(255,255,255,0.03)'/></linearGradient></defs><path d='M0,30 C 220,18 420,40 640,26 C 860,12 1040,48 1200,30 L1200,0 L0,0 Z' fill='url(%23g2d)'/></svg>");
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
  background-size: 1200px 100%, 1000px 100%, 900px 100%, 750px 100%;
  background-position: 0 -18px, 0 -34px, 0 -50px, 0 -66px;
  animation: wave2 34s linear infinite reverse;
  animation-duration: calc(34s / clamp(0.05, var(--anim-scale, 1), 1));
  pointer-events: none;
}
@keyframes wave1 { from { background-position-x: 0; } to { background-position-x: -1200px; } }
@keyframes wave2 { from { background-position-x: 0; } to { background-position-x: 1200px; } }
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 16px 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(16px, 4vw, 42px);
}
.footer-col .col-title {
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .6px;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.95);
  font-size: clamp(18px, 2.4vw, 22px);
}
.footer-col.brand .brand-name {
  font-family: 'Bungee', 'Varela Round', system-ui, sans-serif;
  font-size: clamp(18px, 3.8vw, 28px);
  letter-spacing: .2px;
}
.footer-col.brand .brand-desc {
  margin: 8px 0 0 0;
  color: rgba(255,255,255,0.8);
}
.footer-col.links .link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer-col.links { position: relative; }
.footer-col.social { position: relative; }
.footer-col.links .link-list { margin-top: 6px; }
.footer-col.social .social-links { margin-top: 6px; }
.footer-col.links .link-list li { position: relative; padding-left: 0; line-height: 1.5; }
.footer-col.links .link-list a { display: inline-block; transition: color 160ms ease; }
.social-links { display: flex; gap: 12px; align-items: center; justify-content: flex-start; }
.footer-col.social .social-links a { text-decoration: none; }
.footer-col.social .social-links a.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}
.footer-col.social .social-links a.social-link:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.45); background: transparent; }
.footer-col.social .social-links a.social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 35%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}
.footer-col.social .social-links a.social-link:hover::after { animation: btnSheen 900ms ease; }
.footer-col.social .social-links a.social-link i { color: rgba(255,255,255,0.95); transition: color 160ms ease, -webkit-text-fill-color 160ms ease, transform 140ms ease; }
.footer-col.social .social-links a.social-link.discord:hover i { background-image: linear-gradient(90deg, rgb(0, 55, 255), rgb(0, 50, 129)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.footer-col.social .social-links a.social-link.tiktok:hover i { background-image: linear-gradient(90deg, rgb(255,0,80), rgb(0,242,234)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.footer-col.social .social-links a.social-link.instagram:hover i { background-image: linear-gradient(90deg, rgb(69,100,220), rgb(170,44,192), rgb(236,0,117)); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.footer-col.links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-col.links a:hover {
  color: #ffffff;
}
.footer-col.links .link-list a {
  position: relative;
}
.footer-col.links .link-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 90%;
  background: rgba(235,235,235,0.75);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  opacity: 0.85;
  transition: transform 558ms ease;
}
.footer-col.links .link-list a:hover::after {
  transform: scaleX(1);
}
.footer-col.social a:not(.social-link):hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.social-link i { font-size: 18px; line-height: 1; }
.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.footer-bar .policies {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.footer-bar .policies a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.footer-bar .policies a:hover { color: #fff; }
.footer-bar .dot { opacity: .5; }

@media (max-width: 820px) {
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-col.brand { order: 1; }
  .footer-col.links { order: 2; }
  .footer-col.social { order: 3; }
}
