*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ============= BOOT LOADER ============= */
.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050608;
  color: #d8e1d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "IBM Plex Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: opacity 0.45s ease, visibility 0s 0.45s;
}
.boot-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Subtle dot grid behind the frame — neutral, no green. */
.boot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.04) calc(100% - 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.03) calc(100% - 1px));
  background-size: 32px 32px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.boot-frame {
  position: relative;
  width: min(440px, calc(100vw - 40px));
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Corner ticks */
.boot-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.6);
  pointer-events: none;
}
.boot-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.boot-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.boot-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.boot-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.boot-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}
.boot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  animation: bootPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes bootPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.7); }
}
.boot-id {
  color: #fff;
  font-weight: 600;
  flex: 1;
}
.boot-coord {
  color: rgba(216,225,217,0.45);
  font-variant-numeric: tabular-nums;
}

.boot-block {
  padding: 14px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.boot-row {
  font-size: 12px;
  color: #d8e1d9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boot-bar {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}
.boot-bar-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), #ffffff);
  transition: width 0.32s cubic-bezier(0.16,1,0.3,1);
}
.boot-bar-ticks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.boot-bar-ticks span {
  width: 1px;
  background: rgba(0,0,0,0.55);
}
.boot-meter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 11px;
}
.boot-meter-num {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.boot-meter-total {
  color: rgba(216,225,217,0.35);
}
.boot-meter-sep {
  color: rgba(216,225,217,0.35);
}
.boot-meter-label {
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(216,225,217,0.45);
  font-size: 9px;
}

.boot-list {
  border-top: 1px dashed rgba(255,255,255,0.14);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.boot-list-row {
  font-size: 11px;
  color: rgba(216,225,217,0.45);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.boot-list-row.is-doing {
  color: #fff;
}
.boot-list-row.is-done {
  color: rgba(216,225,217,0.75);
}

.boot-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,0.14);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(216,225,217,0.4);
}
.boot-cursor {
  color: #fff;
  font-size: 11px;
  animation: bootCursor 0.7s step-end infinite;
}
@keyframes bootCursor {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .boot-loader::before { animation: none; }
  .boot-pulse { animation: none; }
  .boot-cursor { animation: none; }
}

/* Page content fades in once the boot loader is done. */
body.page-about > main.about-page {
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
body.page-about.is-booted > main.about-page {
  opacity: 1;
}


/* Local aliases redirect to design tokens — flips automatically with .theme-dark */
:root {
  --bg: var(--color-bg);
  --text: var(--color-text);
  --dim: var(--color-text-dim);
  --border: var(--color-border);
  --accent: var(--color-accent);
}

body { background: var(--bg); }

html { scroll-behavior: smooth; touch-action: manipulation; -ms-touch-action: manipulation; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100vh;
}

/* ========== LAYOUT ========== */
.about-page {
  max-width: none;
  margin: 0;
  padding: 0;
}


/* Title inside split doesn't need hero padding/border */
.hero-split-right .about-name { margin-bottom: 12px; }
.hero-split-right .about-role { margin-bottom: 6px; }

.about-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
}

.about-role {
  font-size: 1.1rem;
  color: var(--dim);
  margin-bottom: 6px;
}

.about-location {
  font-size: 0.85rem;
  color: var(--text);
}

/* ========== SECTIONS ========== */
.about-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

/* ========== SPLIT LAYOUT: GB fixed left, content scrolls right ========== */
.hero-split {
  display: flex;
  width: 100%;
}
/* Belt-and-suspenders: clip any horizontal overflow on this page so we
   never get a system horizontal scrollbar (Chrome 100vw > viewport when
   the vertical scrollbar is present). */
html, body { overflow-x: hidden; }
.hero-split-left {
  width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-split-right {
  width: 50%;
  margin-left: 50%;
  padding: 60px 48px;
}
.split-about {
  margin-top: 32px;
}
.split-contact {
  margin-top: 32px;
}

.cart-picker {
  margin-top: 24px;
  margin-bottom: 32px;
}

.cart-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  width: 104px;
  padding: 20px 14px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dim);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cart-item:hover {
  border-color: var(--color-border-strong);
  color: var(--text);
}

.cart-item.inserted {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.cart-item.inserted .pixel-icon { color: var(--bg); }

.cart-item.loading {
  background: var(--color-hover-strong);
  border-color: var(--color-border-strong);
  color: var(--text);
}

.cart-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* First-load pulse so users notice the Portfolio cart. Removed as soon as
   any cart is clicked or another becomes inserted. */
.cart-item.pulse-hint {
  animation: cartPulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  border-color: var(--color-border-strong);
}
@keyframes cartPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--color-border-strong), 0 0 0 0 var(--color-border); }
  50%      { box-shadow: 0 0 0 6px transparent,              0 0 24px 4px var(--color-border-strong); }
}

.cart-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pixel-icon {
  width: 32px;
  height: 32px;
  color: var(--text);
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.cart-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid var(--color-border-strong);
  border-top-color: var(--color-text-dim);
  border-radius: 50%;
  animation: cartSpin 0.6s linear infinite;
}

/* On hover of an inserted cart, swap folder+name → eject glyph + "Eject".
   Keep original children in layout (visibility: hidden) so the button width
   stays constant; overlay the swap absolutely. */
.cart-item { position: relative; }
.cart-eject-swap {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
}
.cart-eject-swap svg { width: 20px; height: 20px; }
.cart-item.inserted:hover .cart-icon,
.cart-item.inserted:hover .cart-label { visibility: hidden; }
.cart-item.inserted:hover .cart-eject-swap { display: inline-flex; }

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

.cart-hint {
  font-size: 0.7rem;
  color: var(--text);
  margin-top: 10px;
}

.gameboy-container {
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
  position: relative;
}
.gameboy-container:active { cursor: grabbing; }
.gameboy-container canvas { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.gameboy-hint {
  position: absolute;
  bottom: 24px;
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* Skeleton loader */
.gb-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.gb-loader-blocks {
  display: flex;
  gap: 6px;
}
.gb-block {
  width: 8px;
  height: 8px;
  background: var(--color-text-dim);
  animation: gb-blink 1s ease infinite;
}
.gb-block:nth-child(2) { animation-delay: 0.15s; }
.gb-block:nth-child(3) { animation-delay: 0.3s; }
.gb-block:nth-child(4) { animation-delay: 0.45s; }
@keyframes gb-blink {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}

.section-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--dim);
  margin-bottom: 12px;
}

.about-text a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-strong);
  transition: border-color 0.2s;
}

.about-text a:hover {
  border-color: var(--text);
}

.about-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.about-icon-link {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s;
}

.about-icon-link:hover {
  background: transparent;
  opacity: 0.6;
}

.about-icon-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  width: 18px;
  height: 18px;
}

.bar-social i {
  font-size: 1.3rem;
  display: block;
  line-height: 1;
}

/* ========== SKILLS ========== */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  color: var(--dim);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.skill-tag i {
  font-size: 0.9rem;
  opacity: 0.5;
}

.skill-icon {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  border-radius: 3px;
}

.skill-tag:hover .skill-icon {
  opacity: 1;
}

.skill-tag:hover {
  border-color: var(--color-border-strong);
  color: var(--text);
}

.skill-tag:hover i {
  opacity: 0.8;
}

/* ========== CLIENTS ========== */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.clients-list span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
  cursor: default;
}

.clients-list span:hover {
  color: var(--text);
}

.clients-list span::after {
  content: ' / ';
  color: var(--text);
}

.clients-list span:last-child::after {
  content: '';
}

/* ========== AWARDS ========== */
.awards-list {
  display: flex;
  flex-direction: column;
}

.award-row {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.award-row:first-child {
  border-top: 1px solid var(--border);
}

.award-name {
  font-size: 0.85rem;
  color: var(--text);
  flex-shrink: 0;
}

.award-line {
  flex: 1;
  height: 0;
  background: none;
  margin: 0 16px;
  min-width: 20px;
}

.award-year {
  font-size: 0.75rem;
  color: var(--text);
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.about-footer {
  padding: 40px 0;
  font-size: 0.7rem;
  color: var(--text);
}

/* ========== BOTTOM BAR ========== */
/* About-specific bar overrides */

/* contraction animation on page load */

.bar-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.92) translateY(8px);
  transform-origin: bottom center;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s 0.3s, opacity 0.3s cubic-bezier(0.32,0.72,0,1),
              transform 0.3s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.bar-dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1) translateY(0);
  transition: visibility 0s, opacity 0.35s cubic-bezier(0.32,0.72,0,1),
              transform 0.35s cubic-bezier(0.32,0.72,0,1);
}

.bar-nav-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}

.bar-nav-link:hover { background: rgba(255,255,255,0.1); }
.bar-nav-link.active { background: rgba(255,255,255,0.15); color: #fff; font-weight: 600; }

.watermark {
  position: fixed;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
  z-index: 90;
  text-decoration: none;
  cursor: pointer;
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .about-page { padding: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-split {
    flex-direction: column;
  }
  .hero-split-left {
    width: 100%;
    height: 100svh;
    position: relative;
  }
  .hero-split-right {
    width: 100%;
    margin-left: 0;
    padding: 40px 20px 100px;
  }
}

/* ========== CONTACT FORM POPUP ========== */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.contact-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0s;
}
.contact-form {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.contact-overlay.open .contact-form {
  transform: translateY(0) scale(1);
}
.contact-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.contact-close:hover { color: #fff; }
.contact-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.3);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.form-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-chip {
  cursor: pointer;
}
.form-chip input { display: none; }
.form-chip span {
  display: block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.form-chip:hover span {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}
.form-chip input:checked + span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.form-submit {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.contact-note {
  margin-top: 12px;
  font-size: 0.75rem;
  text-align: center;
  min-height: 1.2em;
}
@media (max-width: 768px) {
  .form-row { flex-direction: column; }
  /* Fullscreen contact form on mobile — no rounded corners, no gap */
  .contact-overlay { padding: 0; }
  .contact-form {
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border: none;
    padding: 64px 20px 28px;
  }
  .contact-close { top: 20px; right: 20px; font-size: 1.75rem; }
}

/* ===== Dark theme overrides ===== */
body.theme-dark {
  background: #0a0a0a;
  color: #f0f0f0;
}
body.theme-dark .about-page,
body.theme-dark .panel-block,
body.theme-dark .lab-section,
body.theme-dark .hero-split-right,
body.theme-dark .contact-form {
  background: transparent;
  color: #f0f0f0;
}
body.theme-dark p,
body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark span,
body.theme-dark li,
body.theme-dark a,
body.theme-dark label,
body.theme-dark .panel-title,
body.theme-dark .panel-text,
body.theme-dark .contact-title,
body.theme-dark .contact-sub,
body.theme-dark .contact-form input,
body.theme-dark .contact-form textarea,
body.theme-dark .cart-item,
body.theme-dark .cart-label {
  color: #f0f0f0;
}
body.theme-dark .panel-text,
body.theme-dark .contact-sub,
body.theme-dark .panel-meta {
  color: rgba(240,240,240,0.7);
}
body.theme-dark .cart-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}
body.theme-dark .cart-item.inserted {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #0a0a0a;
}
body.theme-dark .cart-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}
body.theme-dark .contact-form input,
body.theme-dark .contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
}
body.theme-dark .contact-overlay {
  background: rgba(0,0,0,0.7);
}
body.theme-dark .contact-form {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Borders / dividers / spinner for dark theme */
body.theme-dark {
  --border: rgba(255,255,255,0.12);
}
body.theme-dark .panel-block,
body.theme-dark .lab-section {
  border-color: rgba(255,255,255,0.12);
}
body.theme-dark *[class*="divider"],
body.theme-dark hr {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.12);
}
body.theme-dark .gb-skeleton,
body.theme-dark .gb-loader-blocks > * {
  border-color: rgba(255,255,255,0.18);
  background-color: rgba(255,255,255,0.04);
}
