@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');

/* ===================== COLOR VARIABLES ===================== */
:root {
  --bg: #121212;
  --bg-seethroug: #16161650;
  --bg-alt: #202020;
  --fg: #e6e6e6;
  --accent: #67E495;
  --border: #2f2f2f;
  --muted: #8b949e;

  --lang-python: #3572A5;
  --lang-js: #f1e05a;
  --lang-pyml: #ffca28;
  --lang-html: #e34c26;
}

/* Light theme */
body.light {
  --bg: #f6f8fa;
  --bg-seethroug: #f6f8fa50;
  --bg-alt: #ebebeb;
  --fg: #24292f;
  --border: #dfdfdf;
  --accent: #2ea043;
  --muted: #57606a;
}

/* ===================== BASE ===================== */
@media (pointer: fine) {
  body, html {
    cursor: none !important;
  }

  a, button {
    cursor: none;
  }
}

@media (pointer: coarse) {
  body, html {
    cursor: pointer !important;
  }

  a, button {
    cursor: pointer;
  }
}

body {
  user-select: none;
  margin: 0;
  width:100vw;
  height:100vh;
  font-family: "JetBrains Mono", monospace;
  /* font-family: 'Fira Code', monospace; */
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items:center;
  transition: 0.3s, color 0.3s;
}

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  color: var(--accent);
  font-size: 1.1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--bg-seethroug);
  padding: 1rem 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  z-index: 10;
  opacity: 0;
  height:50px;
  width:100vw;
  overflow:hidden;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

#navbar-Content {
  width:calc(100vw - 50px);
  max-width: 1000px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

@media (max-width:800px) {
  #nav-Section-Links {
    display: none;
  }
}

@media (min-width:800px) {
  #nav-Section-Links {
    display: flex;
    gap:20px;
  }
}


.nav-Buttons-Container {
  display:flex;
  gap:10px;
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar h1 {
  margin: 0;
  font-weight: 600;
}

.navbar .bracket {
  color: var(--accent);
}

.navbar nav a {
  color: var(--fg);
  /* margin-left: 1rem; */
  text-decoration: none;
  transition: color 0.2s;
}

.navbar nav a:hover {
  color: var(--accent);
}

/* ===================== HERO SECTION ===================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;

  /* Height rules */
  min-height: calc(100vh - 100px);
  max-height: 700px;

  /* Visuals */
  color: var(--fg);
  /* background: var(--bg); */
  /* padding: 3rem 1rem; */
  /* border-bottom: 1px solid var(--border); */

  /* Pop-up entrance (initial state) */
  opacity: 0;
  margin-top: 50px;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.8s ease, transform 0.8s ease;

  /* Width rules */
  width: calc(100vw - 50px);
  max-width: 900px;
}

#hero-tags {
  width:fit-content;
  height:fit-content;
  justify-self: center;
  margin-bottom: -20px;
}

.hero-tag {
  background:var(--bg-alt);
  border: 1px solid var(--border);
  padding:5px 15px;
  border-radius: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:.25s;
}

.hero-tag:hover {
  scale:1.03;
  transition:.15s;
}

/* When revealed by JS */
.hero-section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Content styling */
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-content .accent {
  color: var(--accent);
}

.hero-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

pre {
  color: red;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Primary Button (Accent Color) */
.btn-primary {
  background: var(--accent);
  color: #fff; 
  border: 1px solid var(--accent);
}

.hero-buttons > .btn-primary {
  color:var(--bg)
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

/* Secondary Button (Outline Style) */
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--fg);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Icon sizing inside buttons */
.btn-primary i,
.btn-secondary i {
  font-size: 1rem;
}



/* Mouse Scroll */
@media (max-width:800px) {
  .scroll-downs {
    display:none;
  }
}

@media (min-width:800px) {
  .scroll-downs {
    position: absolute;
    bottom: 0px;
    left:50%;
    transform:translate(-50%);
    width :30px;
    height:75px;
    display:flex;
    flex-direction: column;
  }
}

.mousey > span {
  position: absolute;
  left:50%;
  bottom:50px;
  transform:translate(-50%);
  text-align:center;
  margin: auto;
}

.mousey {
  width :26px;
  height: 40px;
  border: 2px solid var(--fg);
  border-radius: 25px;
  opacity:0.35;
  box-sizing: content-box;
  position:relative;
  transition:.15s;
}

.scroller {
  width: 3px;
  height: 6px;
  top:5px;
  position:absolute;
  left:calc(50% - 1px);
  transform:translate(-50%);
  border-radius: 25%;
  background-color: var(--fg);
  animation-name: scroll;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

@media (max-width: 500px) {
  .hero-section {
    text-align: left;
    align-items: left;
  }

  .hero-buttons {
    justify-content: left;
  }

  #hero-tags {
    width:fit-content;
    height:fit-content;
    justify-self: left;
    margin-bottom: -20px;
  }

  .hero-tag {
    background:var(--bg-alt);
    border: 1px solid var(--border);
    padding:5px 15px;
    border-radius: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:0s;
  }

  .hero-tag:hover {
    scale: 1;
    transition:0;
  }
}

/* ===================== ANIMATION SEQUENCE ===================== */

/* Make hero children fade in sequentially */
.hero-content > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible, fade them in */
.hero-section.visible .hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay order for staggered fade-ins */
.hero-content h1 {
  transition-delay: 0.1s;
}

.hero-content h2 {
  transition-delay: 0.2s;
}

.hero-content p {
  transition-delay: 0.3s;
}

.hero-buttons {
  transition-delay: 0.4s;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 700px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

/* ===================== THEME TOGGLE ===================== */
.toggle-btn {
  /* margin-left: 1rem; */
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  width:32px;
  transition: 0.3s ease, transform 0.3s ease;
  color: var(--fg);
  position:relative;
}

.social-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 6px;
  transition: 0.3s ease, transform 0.3s ease;
  color: var(--fg);
}

@media (min-width:500px) {
  .toggle-btn:hover {
    background: var(--bg-alt);
    /* transform: rotate(10deg);   */
    transition:.0s;
  }

  .social-btn:hover {
    background: var(--bg-alt);
    transition:.0s;
  }
}

#moon-icon, #sun-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

#moon-icon {
  width: 25px;
  height: 25px;
  position:absolute;
  top:calc(50% + 3px);
  left:calc(50% - 1.5px);
  transform:translate(-50%, -50%);
}

body.light #moon-icon {
  display: none;
}

body:not(.light) #sun-icon {
  display: none;
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
  padding: 6rem 1.5rem;
  color: var(--fg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2.5rem;
  position: relative;
}

.about-text {
  z-index: 2;
  align-self: start;
  text-align:left;
}

.about-subtitle {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-status {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  opacity: 0.75;
  color: var(--bg);
}

/* Text highlights */
.highlight {
  color: var(--accent);
  font-style: italic;
}

.highlight-alt {
  color: var(--accent);
  font-weight: 500;
}

.faint {
  color: var(--muted);
  font-style: italic;
}

/* ===================== IMAGES (bottom-right overlap) ===================== */
.about-images {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.image-wrapper:first-child {
  width: 80%;
  align-self: flex-start;
  z-index: 1;
}

.image-wrapper:last-child {
  width: 75%;
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  transform: rotate(2deg);
}

.about-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.2);
  border-radius: 12px;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.about-images img:hover {
  filter: grayscale(0%);
  transform: scale(1.22);
}

/* Responsive layout */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-images {
    max-width: 80%;
    margin: 3rem auto 0;
    align-items: center;
  }

  .image-wrapper:last-child {
    position: absolute;
    bottom: -20px;
    right: -20px;
  }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  /* border-bottom: 1px solid var(--border); */
  /* background: var(--bg); */
}

.section h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ===================== REPO GRID ===================== */

#projects {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
}

.repo-grid {
  column-count: 2; /* 👈 number of columns (adjustable) */
  column-gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Force exactly 2 columns max on larger screens */
@media (max-width: 700px) {
  .repo-grid {
    column-count: 1;
  }
}


/* On phones → single column, limit to 4 cards visible (scrollable if more) */
@media (max-width: 699px) {
  .repo-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Limit to first 4 repo cards */
  .repo-card:nth-child(n + 5) {
    display: none;
  }
}

.repo-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding:5px 15px;
  transition: transform 0.2s, border-color 0.3s, 0.3s;
  opacity: 0;
  transform: translateY(10px);
  animation: cardFadeIn 0.5s ease forwards;
  display: inline-block;
  /* width: 100%; */
  margin: 0 0 1.5rem;
  break-inside: avoid; /* prevents cards from splitting between columns */
}

.repo-subtitle {
  width:100%;
  text-align:center;
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.repo-title {
  text-align:center;
  max-width: 750px;
  font-size: 1.8rem;
  /* line-height: 1.5; */
  margin: 0px;
  font-weight: 600;
  color:var(--fg);
}

.repo-description {
  text-align:center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 75px;
  max-width: 750px;
}

.repo-card p {
  color: color-mix(in srgb, var(--fg) 80%, var(--muted) 20%);
  /* Slightly lighter or darker tone based on the theme */
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Optional: make the text slightly brighter in light mode */
body.light .repo-card p {
  color: color-mix(in srgb, var(--fg) 70%, var(--muted) 30%);
}

.repo-meta {
  margin-top: 0.5rem;
  margin-bottom:15px;
  font-size: 0.9rem;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.python { background: var(--lang-python); }
.js { background: var(--lang-js); }
.pyml { background: var(--lang-pyml); }
.html { background: var(--lang-html); }

@media (max-width:500px) {
  .repo-text {
    display:flex;
    flex-direction: column;
  }

  .repo-subtitle {
    text-align:left;
  }

  .repo-title {
    text-align:left;
  }

  .repo-description {
    text-align:left;
  }
}

/* ===================== REPO ICONS ===================== */
.repo-header {
  height:50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

@media(pointer:fine) {
  .repo-card > .repo-header > .repo-links {
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(4px);
    transition:.15s;
    padding:5px;
    border-radius: 10px;
  }

  .repo-card:hover > .repo-header > .repo-links {
    display: flex;
    gap: 0.4rem;
    opacity: 1;
    transform: translateY(0px);
    transition:.15s;
    padding:5px;
    border-radius: 10px;
  }

  body:not(.light) .repo-card:hover {
    transform: translateY(-4px);
    /* border-color: var(--accent); */
    background: var(--border);
  }

  body.light .repo-card:hover {
    transform: translateY(-4px);
    /* border-color: var(--accent); */
    background: var(--border);
  }
}

@media(pointer:coarse) {
  .repo-card > .repo-header > .repo-links {
    display: flex;
    gap: 0.4rem;
    opacity: 1;
    transform: translateY(0px);
    transition:.15s;
    padding:5px;
    border-radius: 10px;
  }
}


/* .repo-card:hover > .repo-header > .repo-links {
  transform: translateY(0px);
  opacity: 1;
  transition:.15s;
}

.repo-card:hover > .repo-header > .repo-links:hover {
  background:var(--border);
  transform: translateY(0px);
  opacity: 1;
  transition:.15s;
} */

.repo-links a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}

/* .repo-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
} */

.icon {
  width: 25px;
  height: 25px;
}

/* ===================== REPO TAGS ===================== */
.repo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
  margin-bottom: 15px;
}

.tag {
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 5px;
  background: transparent;
  /* background:var(--border); */
  transition: all 0.25s ease;
}


/* ===================== CONTACT SECTION ===================== */
.contact-section {
  text-align: center;
  position:relative;
  /* margin-top: 100px; */
  padding: 2rem 1rem 4rem;
  /* background: var(--bg); */
  color: var(--fg);
  /* border-top: 1px solid var(--border); */
}

.contact-section h2 {
  font-size: 50px;
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 1rem;
  z-index: 1; 
  position:relative;
}

.contact-text {
  text-align:center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-size: 1rem;
  z-index: 1;
  position:relative;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bg);
  background:var(--accent); /* GitHub-style green */
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease, transform 0.3s ease;
  position: relative;
}

.contact-email:hover {
  background: var(--accent);
  transform: translateY(-2px);
  opacity: 0.75;
  transition: .15s;
}

.icon-mail {
  width: 18px;
  height: 18px;
  fill: var(--bg);
  position:relative;
}

.social-links {
  height:fit-content;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position:relative;
}

.social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 120px;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}


/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 1rem;
  /* border-top: 1px solid var(--border); */
  color: var(--muted);
}

/* ===================== ANIMATIONS ===================== */
@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


::-webkit-scrollbar {
  width:0px;
  height:0px;
}

/* ===================== CUSTOM CURSOR ===================== */
@media (pointer:fine) {
  #custom-cursor {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1);
    z-index: 20000;
    opacity:0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0; top: 0;
    transform: translate(-50%, -50%); /* <-- centers on the coordinates */
    pointer-events: none;
    will-change: transform, left, top;
  }

  #custom-cursor.hover-target {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: white;
    mix-blend-mode: difference; 
  }
}



/* ===================== EMAIL POPUP ===================== */
.email-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.email-popup.visible {
  opacity: 1;
  pointer-events: auto;
}

.email-popup-content {
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 320px;
  width: 90%;
}

.email-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}

.email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  padding:10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: "JetBrains Mono", monospace;
}

.email-btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

.close-popup {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
  font-family: "JetBrains Mono", monospace;
}

.close-popup:hover {
  background: var(--accent);
}

#highlight-light-container {
  position:absolute;
  top:-75px;
  left:50%;
  transform:translate(-50%);
  width:100vw;
  height:500px;
  overflow: hidden;
  transition:.15s;
}

#highlight-light {
  --size: 600px;
  width:var(--size);
  height:var(--size);
  overflow: hidden;
  position:absolute;
  top:25%;
  margin-top: 35px;
  left:50%;
  transform:translate(-50%) rotate(45deg);
  z-index: 0;
  transition:.15s;
}

#light-element {
  --size: 600px;
  --negative-size:calc((var(--size) * -1) / 2.5);
  width:var(--size);
  height:var(--size);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 0, 0.497) 0%,
    transparent 70%
  );
  /* background:yellow; */
  position:absolute;
  top: var(--negative-size);
  left: var(--negative-size);
  /* transform:translate(50%, 50%); */
  transition:.15s;
}

#highlight-light-icon {
  width:35px;
  height:35px;
}