/* ===========================
   VEDH SONAWANE — PORTFOLIO
   Editorial Dark Aesthetic
=========================== */

:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --text: #f0ede6;
  --text-muted: #6b6560;
  --text-dim: #3a3632;
  --accent: #d4ff6e;
  --accent-2: #ff6b35;
  --accent-3: #6eb5ff;
  --border: rgba(240, 237, 230, 0.08);
  --border-hover: rgba(240, 237, 230, 0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --font-body: 'Cabinet Grotesk', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ===========================
   NOISE TEXTURE
=========================== */
.noise {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  animation: noiseShift 8s steps(2) infinite;
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, -1%); }
  50% { transform: translate(1%, 2%); }
  75% { transform: translate(-1%, 1%); }
  100% { transform: translate(0, 0); }
}

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 255, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.15s var(--ease-out), top 0.15s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
}

body:has(a:hover, button:hover) .cursor {
  width: 16px;
  height: 16px;
}

body:has(a:hover, button:hover) .cursor-follower {
  width: 48px;
  height: 48px;
  border-color: rgba(212, 255, 110, 0.2);
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.secret-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
}

.secret-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(60deg);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding: 7rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 255, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.dot-pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-content {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-pfp {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
  margin-bottom: 0.5rem;
}

.hero-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.hero-pfp:hover img {
  filter: grayscale(0%);
}

.hero-pfp::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: 4px;
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.hero-pfp:hover::after {
  opacity: 1;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}

.hero-name .line {
  display: block;
  overflow: hidden;
  animation: slideUp 0.9s var(--ease-out) forwards;
  opacity: 0;
}

.hero-name .line:nth-child(1) { animation-delay: 0.1s; }
.hero-name .line:nth-child(2) { animation-delay: 0.25s; }

.hero-name .italic {
  font-style: italic;
  color: var(--text-muted);
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.hero-bio {
  max-width: 480px;
}

.hero-bio p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

.badge.available {
  border-color: var(--accent);
  color: var(--accent);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 255, 110, 0); }
  50% { box-shadow: 0 0 12px 2px rgba(212, 255, 110, 0.15); }
}

.visitor-counter {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.counter-num {
  color: var(--accent);
  margin-left: 0.25rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   SECTION LABELS
=========================== */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3rem;
}

/* ===========================
   LINKS GRID
=========================== */
.links-section {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.link-card {
  background: var(--bg);
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
  cursor: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.link-card:hover::before {
  opacity: 0.03;
  transform: translateY(0);
}

.link-card:hover {
  background: var(--bg-3);
}

.link-card.featured {
  background: var(--bg-2);
}

.link-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.link-icon {
  font-size: 1.2rem;
  color: var(--text-dim);
}

.link-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-spring), color 0.2s;
}

.link-card:hover .link-arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}

.link-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.link-card-body p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.github-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.github-stats .stat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
}

.save-contact {
  background: var(--bg-2);
}

/* ===========================
   PROJECTS
=========================== */
.projects-section {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
}

.projects-list {
  display: flex;
  flex-direction: column;
}

.project-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  cursor: none;
  transition: all 0.3s;
}

.project-item:hover {
  padding-left: 1rem;
}

.project-item:hover .project-title {
  color: var(--accent);
}

.project-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  padding-top: 0.4rem;
  letter-spacing: 0.1em;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1rem;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-stack span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-stack span::before { content: '·'; margin-right: 0.4rem; }

.project-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
}

.project-links a:hover {
  color: var(--accent);
}

/* ===========================
   CONTACT
=========================== */
.contact-section {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.section-label, .contact-content {
  position: relative;
  z-index: 1;
}

/* Interactive Grid Container */
.interactive-grid-container {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.interactive-grid-container > div {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background-position: center;
}

/* Base extremely thin grid on left */
.grid-left-base {
  background-size: 32px 32px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  /* Fade from center to left slightly, but mostly cut off at 50% */
  mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
}

/* Hover reveal grid on left */
.grid-left-hover {
  background-size: 32px 32px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.contact-section:hover .grid-left-hover {
  opacity: 1;
}

/* Right side static visible grid */
.grid-right-static {
  background-size: 32px 32px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  mask-image: linear-gradient(to right, transparent 50%, black 50%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 50%, black 50%, black 100%);
}

/* The Bending Lens Effect */
.grid-lens {
  background-size: 36px 36px; /* Slightly larger, causes the bending optical illusion */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  /* Create a circle mask at the mouse position */
  mask-image: radial-gradient(circle 150px at var(--mouse-x, -200px) var(--mouse-y, -200px), black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 150px at var(--mouse-x, -200px) var(--mouse-y, -200px), black 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-section:hover .grid-lens {
  opacity: 1;
}


.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-headline em {
  font-style: italic;
  color: var(--text-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: none;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-key {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-val {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-val:hover {
  color: var(--text);
}

.copy-hint {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.contact-item:hover .copy-hint {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ===========================
   SECRET OVERLAY
=========================== */
.secret-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.secret-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.secret-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: none;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.secret-close:hover {
  border-color: var(--text);
  color: var(--text);
}

.secret-content {
  text-align: center;
  max-width: 480px;
  padding: 2rem;
}

.secret-header {
  margin-bottom: 3rem;
}

.secret-eye {
  font-size: 3rem;
  color: var(--accent);
  animation: spinSlow 8s linear infinite;
  display: block;
  margin-bottom: 1rem;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.secret-content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.secret-content p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.game-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.konami-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.konami-display span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
}

.konami-display span.lit {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 255, 110, 0.07);
}

.konami-reward {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  animation: fadeIn 0.5s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.reward-text {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.secret-links {
  margin-top: 3rem;
}

.secret-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.secret-links a:hover {
  opacity: 0.7;
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: transform 0.4s var(--ease-spring), opacity 0.4s;
  opacity: 0;
  z-index: 10001;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-item {
    grid-template-columns: 40px 1fr;
  }

  .project-links {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1.25rem 1.25rem;
  }

  .hero {
    padding: 6rem 1.25rem 3rem;
  }

  .hero-name {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .links-section,
  .projects-section,
  .contact-section {
    padding: 4rem 1.25rem;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    align-items: flex-start;
  }

  body {
    cursor: auto;
  }

  .cursor, .cursor-follower {
    display: none;
  }
}

/* ===========================
   SELECTION
=========================== */
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 2px;
}
