body {
  margin: 0;
  overflow: hidden;
  font-family: "Source Sans 3", sans-serif;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #85c1e9;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

#windowInnerH {
  position: fixed;
  left: 50%;
  top: 10%;
  font-size: 2rem;
}

#position {
  position: fixed;
  left: 50%;
  top: 20%;
  font-size: 3rem;
}

.loader > h1 {
  color: #2c3e50;
  margin: 25px;
  font-size: 2em;
  text-align: center;
  font-family: "Source Sans 3";
}

.balls {
  display: flex;
  align-content: center;
  justify-content: center;
}

.ball {
  background-color: #1f79b5;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin: 8px;
  animation: jump 0.5s ease-in-out infinite;
}

.ball:nth-child(1) {
  animation-delay: 0.1s;
}

.ball:nth-child(2) {
  animation-delay: 0.2s;
}

.ball:nth-child(3) {
  animation-delay: 0.3s;
}

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

.tapToMove-container {
  display: flex;
  opacity: 0;
}

.arrow {
  width: 50%;
  position: absolute;
  bottom: 0;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  opacity: 1;
  z-index: 1;
}

.arrow > img {
  transform: scale(0.5);
  opacity: 0.5;
  position: absolute;
  top: 12.5%;
}

.left-arrow {
}

.right-arrow {
  right: 0;
}

/* #swipeToMove-container {
  position: absolute;
  bottom: 0;
  height: 20vh;
  width: 100%;
  z-index: 1;
} */

#instruction-text {
  z-index: 1;
  font-size: 2.75rem;
  position: fixed;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Source Sans 3", sans-serif;
  color: white;
  text-align: center;
}

#container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  zoom: 70%;
}

@media (max-width: 1920px) {
  #container {
    zoom: 70%;
  }
}

@media (max-width: 1440px) {
  #container {
    zoom: 55%;
  }
}

@media (max-width: 1280px) {
  #container {
    zoom: 50%;
  }
}

@media (max-width: 1024px) {
  #container {
    zoom: 45%;
  }
}

@media (max-height: 930px) {
  #container {
    zoom: 60%;
  }
}

/* 480px and wider */
@media (max-width: 768px) {
  #container {
    zoom: 40%;
  }
}

@media (max-width: 480px) {
  #container {
    zoom: 30%;
  }
}

/* 1080px and taller */
@media (max-height: 1080px) {
  #container {
    zoom: 70%;
  }
}

/* 990px and taller */
@media (max-height: 990px) {
  #container {
    zoom: 65%;
  }
}

/* 960px and taller */
@media (max-height: 960px) {
  #container {
    zoom: 60%;
  }
}

/* 930px and taller */
@media (max-height: 930px) {
  #container {
    zoom: 55%;
  }
}

/* 870px and taller */
@media (max-height: 870px) {
  #container {
    zoom: 50%;
  }
}

@media (max-height: 580px) {
  #container {
    zoom: 35%;
  }
}

@media (max-width: 1920px) and (max-height: 1080px) {
  #container {
    zoom: 55%;
  }
}

/* 1050px and wider */
@media (max-width: 1440px) and (max-height: 990px) {
  #container {
    zoom: 50%;
  }
}

/* 900px and wider */
@media (max-width: 1280px) and (max-height: 960px) {
  #container {
    zoom: 45%;
  }
}

/* 750px and wider */
@media (max-width: 1024px) and (max-height: 930px) {
  #container {
    zoom: 40%;
  }
}

/* 600px and wider */
@media (max-width: 768px) and (max-height: 870px) {
  #container {
    zoom: 35%;
  }
}

/* 450px and wider */
@media (max-width: 480px) and (max-height: 810px) {
  #container {
    zoom: 30%;
  }
}

#sky {
  height: 100%;
  width: 100%;
  opacity: 0.9;
  background: url("./assets/Sky.webp");
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center;
  animation: moveHorizontally 350s linear infinite;
}

#clouds {
  position: absolute;
  top: -300px;
  left: 0;
  width: 100%;
  height: 1131px;
  background-image: url("assets/clouds.webp");
  background-position: left;
  background-size: cover;
  background-repeat: repeat-x;
  animation: moveHorizontally 1000s linear infinite;
}

#buildingLarge {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 800px;
  opacity: 0.95;
  background-image: url("assets/buildingLargeDetailed.webp");
  background-size: cover;
  background-repeat: repeat-x;
}

#buildingSmall {
  position: absolute;
  bottom: 19.5%;
  left: 0;
  filter: brightness(0.98);
  width: 100%;
  height: 500px;
  background-image: url("assets/frontLayer.webp");
  background-size: cover;
  background-repeat: repeat-x;
}

@keyframes moveHorizontally {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

#platform {
  visibility: none;
  position: absolute;
  bottom: 0;
  left: -500px;
  width: 19590px;
  height: 20%;
  background-image: url("assets/ground.webp");
  background-size: contain;
  background-repeat: repeat-x;
  background-position: left;
}

.blink {
  animation: blink-animation 1s steps(5, start) 200;
  -webkit-animation: blink-animation 1s steps(5, start) 200;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

#main-layer {
  position: absolute;
  left: 1000px;
  bottom: 19.8%;
  width: 20000px;
}

.hobbies-observer {
  position: absolute;
  left: 2660px;
  bottom: 100px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.skill2-observer {
  position: absolute;
  left: 7650px;
  bottom: 100px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.skill1-observer {
  position: absolute;
  left: 9800px;
  bottom: 100px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.portfolio-observer {
  position: absolute;
  left: 14000px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work1-observer {
  position: absolute;
  left: 15200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work2-observer {
  position: absolute;
  left: 16200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work3-observer {
  position: absolute;
  left: 17200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work4-observer {
  position: absolute;
  left: 18200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work5-observer {
  position: absolute;
  left: 19200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.work6-observer {
  position: absolute;
  left: 20200px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.findMe-observer {
  position: absolute;
  left: 21300px;
  bottom: 400px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.find-me-text {
  cursor: default;
}

.splash-container {
  display: flex;
  align-items: end;
  position: absolute;
  bottom: 60px;
  left: -1100px;
  transform: scale(1.2);
}

.tree-bushy {
  background-image: url(assets/tree-bushy.webp);
  height: 371px;
  width: 239px;
}

.tree-triangle {
  background-image: url(assets/tree-triangle.webp);
  height: 483px;
  width: 183px;
}

.bush-light {
  background-image: url(assets/bush-light.webp);
  height: 66px;
  width: 119px;
}

.bush-dark {
  background-image: url(assets/bush-dark.webp);
  height: 66px;
  width: 119px;
}

.signboard {
  height: 600px;
  width: 500px;
  position: relative;
  top: 420px;
  left: 480px;
}

.signboard-pole {
  background: url(assets/signboard-pole.webp) center/contain no-repeat;
  position: absolute;
  height: 598px;
  width: 380px;
  bottom: -5px;
}

.signboard-resume {
  background-image: url(assets/signboard-resume.webp);
  height: 111px;
  width: 441px;
  position: absolute;
  top: 40px;
}

.signboard-shafiul {
  background-image: url(assets/signboard-shafiul.webp);
  height: 149px;
  width: 498px;
  position: relative;
  top: 180px;
  right: 100px;
}

.signboard-alam {
  background-image: url(assets/signboard-alam.webp);
  height: 147px;
  width: 404px;
  position: relative;
  top: 200px;
}

#tree-1 {
  position: absolute;
  left: 280px;
}

#tree-2 {
  position: absolute;
  left: 950px;
  bottom: 0;
}

#tree-3 {
  position: absolute;
  left: 840px;
}

#tree-4 {
  position: absolute;
  left: 200px;
}

#bush-1 {
  position: absolute;
  left: 560px;
}

#bush-2 {
  position: absolute;
  left: 480px;
}

#bush-3 {
  position: absolute;
  left: 670px;
}

#bush-4 {
  position: absolute;
  left: 750px;
}

.aboutMe-container {
  display: flex;
  align-items: end;
  position: absolute;
  left: 1400px;
  bottom: 0;
}

.aboutMe {
  background-image: url(assets/about-me.webp);
  width: 405px;
  height: 328px;
  left: -600px;
  position: absolute;
  margin-left: 160px;
  margin-right: 120px;
}

.birthPlace {
  background-image: url(assets/born&raised.webp);
  width: 318px;
  height: 678px;
  margin-right: 100px;
  position: absolute;
  left: 160px;
}

.hobbies {
  width: 430px;
  height: 392px;
  position: relative;
  bottom: -400px;
  left: 700px;
}

.hobbies-board {
  background-image: url(assets/hobbies.webp);
  width: 426px;
  height: 392px;
}

.hobbies-instruction {
  position: relative;
  bottom: 525px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  color: white;
  text-align: center;
  opacity: 0;
  font-size: 1.9rem;
}

.hobbies-text-card {
  position: absolute;
  bottom: 472px;
  left: -36px;
  width: 500px;
  padding: 28px 32px 36px;
  border-radius: 36px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 46px rgba(18, 52, 96, 0.16);
  border: 1px solid rgba(18, 52, 96, 0.14);
  color: #1f2d3d;
  display: flex;
  flex-direction: column;
  gap: 16px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transform-origin: bottom left;
  z-index: 1;
  pointer-events: none;
}

.hobbies-text-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hobbies-text-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #922b20;
}

.hobbies-paragraph {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  color: #2c3e50;
  opacity: 0;
  transform: translateY(12px);
}

.photography:hover,
.crafting:hover,
.travelling:hover,
.gaming:hover,
.cooking:hover {
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.crafting {
  width: 180px;
  height: 70px;
  border-radius: 32px;
  position: absolute;
  bottom: 135px;
  left: 25px;
}

.photography {
  width: 370px;
  height: 70px;
  border-radius: 40px;
  position: absolute;
  bottom: 40px;
  left: 30px;
}

.travelling {
  width: 180px;
  height: 70px;
  border-radius: 32px;
  position: absolute;
  bottom: 135px;
  left: 225px;
}

.cooking {
  width: 180px;
  height: 70px;
  border-radius: 32px;
  position: absolute;
  bottom: 225px;
  left: 25px;
}

.gaming {
  width: 180px;
  height: 70px;
  border-radius: 32px;
  position: absolute;
  bottom: 225px;
  left: 225px;
}

.pot {
  background-image: url(assets/pot.webp);
  width: 76px;
  height: 69px;
  position: absolute;
  bottom: 0;
  left: -110px;
  z-index: 1;
}

.cuttingBoard {
  background-image: url(assets/cuttingBoard.webp);
  width: 74px;
  height: 102px;
  position: absolute;
  bottom: 0;
  left: -50px;
}

.quest2 {
  background-image: url(assets/quest2.webp);
  width: 88px;
  height: 58px;
  position: absolute;
  top: -30px;
  right: 20px;
}

.luggage {
  background-image: url(assets/luggage.webp);
  width: 105px;
  height: 212px;
  position: absolute;
  bottom: 0;
  right: -80px;
}

.camera {
  background-image: url(assets/camera.webp);
  width: 79px;
  height: 55px;
  position: absolute;
  bottom: 0;
  right: -25px;
}

.flashLight {
  background: url(assets/flashLight.webp);
  position: absolute;
  width: 300px;
  height: 300px;
  background-size: contain;
  z-index: 1;
  bottom: -120px;
  right: -160px;
}

.gamepad {
  background-image: url(assets/gamepad.webp);
  width: 84px;
  height: 59px;
  position: absolute;
  top: -30px;
  left: 20px;
}

.education-container {
  display: flex;
  align-items: end;
  position: absolute;
  left: 3000px;
  bottom: 0;
}

.education {
  background-image: url(assets/education.webp);
  width: 405px;
  height: 328px;
  position: absolute;
}

.education1 {
  background-image: url(assets/education1.webp);
  width: 800px;
  height: 500px;
  left: 955px;
  z-index: 1;
  bottom: -450px;
  position: absolute;
}

.rumc {
  background-image: url(assets/rumc.webp);
  width: 1516px;
  height: 782px;
  left: 600px;
  bottom: -2px;
  position: absolute;
}

.education2 {
  background-image: url(assets/education2.webp);
  width: 812px;
  height: 312px;
  left: 2495px;
  z-index: 1;
  bottom: -360px;
  position: absolute;
}

.brac {
  background-image: url(assets/brac.webp);
  width: 787px;
  height: 1243px;
  left: 2500px;
  bottom: -10px;
  position: absolute;
}

.skills-container {
  display: flex;
  align-items: end;
  position: absolute;
  height: 80%;
  left: 6700px;
  bottom: -50px;
}

.skills {
  background-image: url(assets/skills.webp);
  width: 405px;
  height: 328px;
  position: absolute;
  margin-left: 75px;
}

.skill-design {
  height: 930px;
  width: 1770px;
  position: relative;
  left: 400px;
  scale: 0.9;
}

.skill-code {
  height: 930px;
  width: 1770px;
  position: relative;
  left: 0;
  scale: 0.9;
}

.skill-board {
  background-image: url(assets/skill-signboard.webp);
  width: 236px;
  height: 924px;
  left: 700px;
  bottom: 0;
  position: absolute;
}

.dash-lines {
  background-image: url(assets/dash-lines.webp);
  width: 1766px;
  height: 605px;
  left: 1000px;
  top: 42px;
  bottom: 0;
  z-index: -1;
  position: absolute;
  opacity: 0;
}

.skill-category-design {
  background-image: url(assets/skill-category-design.webp);
  width: 1129px;
  height: 92px;
  top: -225px;
  left: 1370px;
  position: absolute;
}

.skillsTitle {
  top: -85px;
  position: absolute;
}

.skill-trees {
  display: flex;
  align-items: end;
  bottom: -670px;
  position: absolute;
  left: 1080px;
  gap: 147px;
}

.tree-lightgreen {
  background-image: url(./assets/tree-lightgreen.webp);
  width: 232px;
  height: 644px;
}

.photoshop-tree {
  background-image: url(./assets/tree-45.webp);
  width: 156px;
  height: 822px;
}

.illustrator-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.figma-tree {
  background-image: url(./assets/tree-4.webp);
  width: 156px;
  height: 737px;
}

.canva-tree {
  background-image: url(./assets/tree-4.webp);
  width: 156px;
  height: 737px;
}

.afterEffects-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.premierePro-tree {
  background-image: url(./assets/tree-3.webp);
  width: 157px;
  height: 589px;
}

.htmlCss-tree {
  background-image: url(./assets/tree-4.webp);
  width: 156px;
  height: 737px;
}

.javascript-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.python-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.react-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.sql-tree {
  background-image: url(./assets/tree-35.webp);
  width: 157px;
  height: 664px;
}

.flutterDart-tree {
  background-image: url(./assets/tree-25.webp);
  width: 157px;
  height: 516px;
}

.skill-category-code {
  background-image: url(assets/skill-category-code.webp);
  width: 1129px;
  height: 92px;
  top: -225px;
  left: 1370px;
  position: absolute;
}

#design-skills {
  background-image: url(assets/design-skills.webp);
  left: 1100px;
  width: 1675px;
  height: 96px;
}

#code-skills {
  background-image: url(assets/code-skills.webp);
  left: 1100px;
  width: 1674px;
  height: 96px;
}

.portfolio-container {
  display: flex;
  align-items: end;
  position: absolute;
  left: 11900px;
  bottom: 0;
  scale: 0.9;
}

.portfolio-platform {
  background-image: url(assets/portfolio-platform.webp);
  width: 2200px;
  height: 200px;
  left: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 1;
}

.portfolio {
  background-image: url(assets/portfolio.webp);
  width: 405px;
  height: 328px;
  left: 60px;
  bottom: 190px;
  position: absolute;
}

.portfolio-tv {
  background-image: url(assets/portfolio-tv.webp);
  width: 1436px;
  height: 1002px;
  left: 600px;
  bottom: 200px;
  position: absolute;
}

.tv-controls {
  position: absolute;
  left: 50%;
  bottom: 55px;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
  z-index: 2;
}

.portfolio-tv-screen {
  width: 880px;
  height: 710px;
  position: absolute;
  border-radius: 130px;
  background-color: #081c2d;
  left: 279px;
  top: 148px;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

.portfolio-tv-screen::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 2px,
      rgba(8, 28, 45, 0.06) 2px,
      rgba(8, 28, 45, 0.06) 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0px,
      rgba(0, 0, 0, 0.1) 3px,
      transparent 3px,
      transparent 6px
    );
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: tv-static 1.3s steps(10) infinite;
  pointer-events: none;
}

.portfolio-tv-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      transparent 52%,
      rgba(0, 0, 0, 0.35)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 3px,
      rgba(5, 17, 30, 0.12) 3px,
      rgba(5, 17, 30, 0.12) 6px
    );
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: tv-flicker 3.5s ease-in-out infinite,
    tv-glitch 2.8s steps(6) infinite;
  pointer-events: none;
}

.portfolio-tv-screen.tv-screen-engaged {
  box-shadow: none;
}

@keyframes tv-static {
  0% {
    transform: translate3d(0, 0, 0) scale(1.04);
    opacity: 0.32;
  }
  25% {
    transform: translate3d(-1.5%, 1.5%, 0) scale(1.05);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(1.4%, -1.2%, 0) scale(1.03);
    opacity: 0.38;
  }
  75% {
    transform: translate3d(-0.9%, -1.8%, 0) scale(1.06);
    opacity: 0.5;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.04);
    opacity: 0.34;
  }
}

@keyframes tv-glitch {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.32;
  }
  20% {
    transform: translate3d(2%, -1.5%, 0);
    opacity: 0.45;
  }
  40% {
    transform: translate3d(-1.5%, 1%, 0);
    opacity: 0.38;
  }
  60% {
    transform: translate3d(1%, 1.5%, 0);
    opacity: 0.5;
  }
  80% {
    transform: translate3d(-2%, -1%, 0);
    opacity: 0.36;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.4;
  }
}

@keyframes tv-flicker {
  0%,
  100% {
    opacity: 0.22;
  }
  15% {
    opacity: 0.3;
  }
  30% {
    opacity: 0.18;
  }
  45% {
    opacity: 0.27;
  }
  60% {
    opacity: 0.19;
  }
  80% {
    opacity: 0.26;
  }
}

.instruction-tv {
  position: absolute;
  inset: 140px 120px;
  border-radius: 50px;
  font-size: 2.4rem;
  color: rgba(231, 244, 255, 0.92);
  text-align: center;
  display: grid;
  place-items: center;
  background: rgba(4, 24, 41, 0.82);
  border: 1px solid rgba(31, 121, 181, 0.35);
  backdrop-filter: blur(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 1;
}

.design-box-header,
.developer-box-header {
  font-size: 1.6rem;
  color: rgba(215, 236, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.developer-box-header {
  margin-top: -10px;
}

.design-box-header h1,
.developer-box-header h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: inherit;
  text-align: center;
}

.design-box-bg,
.developer-box-bg {
  position: absolute;
  inset: 58px 68px 66px;
  border-radius: 62px;
  padding: 28px 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(5, 18, 32, 0.9);
  border: 1px solid rgba(31, 121, 181, 0.35);
  box-shadow: inset 0 0 30px rgba(4, 12, 22, 0.7);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-sizing: border-box;
}

.design-box-bg {
  padding: 24px 32px 24px;
}

.developer-intro {
  margin: -4px auto 4px;
  max-width: 560px;
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(210, 232, 252, 0.82);
  text-align: center;
}

.tv-panel {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.tv-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.design-box-tv {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  align-content: center;
  justify-content: center;
  justify-items: center;
}

.developer-box-tv {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  align-items: stretch;
  padding: 6px 36px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
}

.design-box-tv > div,
.developer-box-tv > div {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 154px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0c1f33;
  border: 1px solid rgba(31, 121, 181, 0.2);
  box-shadow: 0 18px 35px rgba(7, 17, 31, 0.45);
  transition: transform 0.45s ease, box-shadow 0.45s ease,
    border-color 0.45s ease, background-color 0.45s ease;
  cursor: pointer;
  padding: 14px;
}

.design-box-tv > div {
  min-height: 138px;
  padding: 12px;
  width: 100%;
  max-width: 220px;
}

.developer-box-tv > div {
  flex: 0 1 240px;
  max-width: 240px;
}

.design-box-tv > div::before,
.developer-box-tv > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.design-box-tv > div:hover,
.design-box-tv > div:focus-visible,
.developer-box-tv > div:hover,
.developer-box-tv > div:focus-visible {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(31, 121, 181, 0.7);
  box-shadow: 0 28px 55px rgba(10, 34, 62, 0.5);
  background-color: #102943;
}

.design-box-tv > div:hover::before,
.design-box-tv > div:focus-visible::before,
.developer-box-tv > div:hover::before,
.developer-box-tv > div:focus-visible::before {
  opacity: 1;
}

.design-box-tv div:focus,
.developer-box-tv div:focus,
#tv-btn:focus {
  outline: none !important;
  caret-color: transparent !important;
}

#tv-btn,
#dbox,
#drbox {
  user-select: none;
}

.text-overlay-box,
.text-overlay-box-developer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(8, 28, 45, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(31, 121, 181, 0.4);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  text-align: center;
  pointer-events: none;
}

.design-box-tv .text-overlay-box {
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 16px;
  padding: 10px 14px;
}

.text-overlay-box > h1,
.text-overlay-box-developer > h1 {
  font-size: 1.45rem;
  color: rgba(230, 244, 255, 0.95);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.design-box-tv .text-overlay-box > h1 {
  font-size: 1.3rem;
}

#text-overlay-box-animated,
#text-overlay-box-promos {
  position: static;
}

.gif-box1 {
  background: url("assets/tv-thumbnail/uiux-min.webp");
}

.gif-box2 {
  background: url("assets/tv-thumbnail/animatedsmp-min.webp");
}

.gif-box3 {
  background: url("assets/tv-thumbnail/statics-min.webp");
}

.gif-box4 {
  background: url("assets/tv-thumbnail/promosandmore-min.webp");
}

.gif-box5 {
  background: url("assets/tv-thumbnail/logos-min.webp");
}

.gif-box6 {
  background: url("assets/tv-thumbnail/all.webp");
}

.gif-box7 {
  background-image: url("assets/tv-thumbnail/webdev.webp");
  background-size: cover;
  background-position: center;
}

.gif-box8 {
  background-image: linear-gradient(
    135deg,
    rgba(34, 109, 168, 0.85),
    rgba(15, 58, 100, 0.92)
  );
}

.developer-box1 {
  background-color: rgba(16, 58, 92, 0.92);
  background-image: linear-gradient(
    140deg,
    rgba(16, 58, 92, 0.92),
    rgba(39, 118, 172, 0.88)
  );
  border-color: rgba(50, 140, 200, 0.45);
}

.developer-box2 {
  background-color: rgba(20, 50, 80, 0.92);
  background-image: linear-gradient(
    140deg,
    rgba(20, 50, 80, 0.92),
    rgba(53, 130, 186, 0.88)
  );
  border-color: rgba(63, 152, 210, 0.45);
}

#gif-box {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.45s ease, opacity 0.45s ease;
  filter: saturate(1.05) contrast(0.95);
  background-color: inherit;
}

.design-box-tv > div:hover #gif-box,
.design-box-tv > div:focus-visible #gif-box,
.developer-box-tv > div:hover #gif-box,
.developer-box-tv > div:focus-visible #gif-box {
  transform: scale(1.05);
  opacity: 0.72;
}

.design-box1,
.design-box2,
.design-box3,
.design-box4,
.design-box5,
.design-box6,
.developer-box1,
.developer-box2 {
  width: 100%;
  height: 100%;
  min-height: 184px;
  border-radius: 26px;
  background-color: transparent;
  grid-area: auto;
}

.tv-designer-btn,
.tv-developer-btn {
  background-color: #f28c18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 74px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, color 0.3s ease;
  position: relative;
  box-shadow: 0 18px 28px rgba(9, 31, 52, 0.35);
  padding: 0 14px;
}

.tv-designer-btn:hover::before,
.tv-developer-btn:hover::before {
  content: attr(data-text);
  background-color: rgba(6, 22, 38, 0.92);
  color: #ffffff;
  border-radius: 30px;
  position: absolute;
  top: -85px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  box-shadow: 0 12px 30px rgba(7, 24, 40, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tv-designer-btn:hover,
.tv-developer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(240, 140, 24, 0.45);
  background-color: #f28c18;
  color: #ffffff;
}

.tv-designer-btn:active,
.tv-developer-btn:active {
  transform: translateY(2px);
  box-shadow: inset 0 12px 16px rgba(0, 0, 0, 0.2);
  background-color: #d07212;
  color: #ffffff;
}

.tv-control.is-active {
  background-color: #f28c18;
  box-shadow: 0 20px 32px rgba(240, 137, 26, 0.45);
  color: #ffffff;
}

.tv-control:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

.tv-status-bar {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  color: rgba(210, 233, 250, 0.85);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.portfolio-tv-screen[data-active-panel] .instruction-tv {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  pointer-events: none;
}

.work-experience-container {
  display: flex;
  align-items: end;
  position: absolute;
  left: 13900px;
  bottom: 0;
}

.work-experiences {
  display: flex;
  gap: 200px;
  align-items: end;
  position: absolute;
  bottom: -500px;
  left: 1000px;
}

.work-experience {
  background-image: url(assets/work-experience.webp);
  width: 405px;
  height: 328px;
  margin-left: 350px;
  margin-right: 0;
}

.work-experience-1 {
  background-image: url(assets/wxp-b6.svg);
  width: 800px;
  height: 950px;
  scale: 1.1;
}

.work-experience-2 {
  background-image: url(assets/wxp-b5.svg);
  width: 800px;
  height: 950px;
  scale: 1.1;
}

.work-experience-3 {
  background-image: url(assets/wxp-b4.svg);
  width: 800px;
  height: 930px;
  scale: 1.1;
}

.work-experience-4 {
  background-image: url(assets/wxp-b3.svg);
  width: 800px;
  height: 920px;
  scale: 1.1;
}

.work-experience-5 {
  background-image: url(assets/wxp-b2.svg);
  width: 800px;
  height: 950px;
  scale: 1.1;
}

.work-experience-6 {
  background-image: url(assets/wxp-b1.svg);
  width: 800px;
  height: 950px;
  scale: 1.1;
}

.work-bushFront,
.work-bushBack {
  pointer-events: none !important;
}

.work-bushBack {
  background-image: url(assets/work-bushBack.webp);
  height: 167px;
  width: 318px;
}

.work-bushFront {
  background-image: url(assets/work-bushFront.webp);
  height: 579px;
  width: 995px;
}

#wbb-1 {
  position: absolute;
  left: 235px;
  bottom: 560px;
}

#wbf-1 {
  position: absolute;
  left: -120px;
  bottom: 400px;
}

#wbb-2 {
  position: absolute;
  left: 1235px;
  bottom: 560px;
}

#wbf-2 {
  position: absolute;
  left: 880px;
  bottom: 400px;
}

#wbb-3 {
  position: absolute;
  left: 2235px;
  bottom: 560px;
}

#wbf-3 {
  position: absolute;
  left: 1880px;
  bottom: 400px;
}

#wbb-4 {
  position: absolute;
  left: 3235px;
  bottom: 560px;
}

#wbf-4 {
  position: absolute;
  left: 2880px;
  bottom: 400px;
}

#wbb-5 {
  position: absolute;
  left: 4235px;
  bottom: 560px;
}

#wbf-5 {
  position: absolute;
  left: 3880px;
  bottom: 400px;
}

#wbb-6 {
  position: absolute;
  left: 5235px;
  bottom: 560px;
}

#wbf-6 {
  position: absolute;
  left: 4880px;
  bottom: 400px;
}

.find-me-container {
  display: flex;
  align-items: end;
  position: absolute;
  left: 21300px;
  bottom: -1000px;
}

.social-link-container {
  position: absolute;
  left: 177px;
  bottom: 440px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  opacity: 0;
  transform: scale(1);
}

.social-link-container > div:nth-child(3n) {
  grid-column-gap: 0;
}

.find-me {
  background-image: url(assets/find-me.webp);
  width: 800px;
  height: 1000px;
  bottom: -20px;
  position: absolute;
}

.gmail {
  height: 128px;
  width: 128px;
  background: white;
  border-radius: 20px;
  grid-area: 1 / 1 / 2 / 2;
}

.gmail-icon {
  background: url(./assets/icons/gmail.webp);
  height: 128px;
  width: 128px;
  transform: scale(0.9);
}

.linkedIn {
  height: 128px;
  width: 128px;
  background: url(./assets/icons/linkedin.webp);
  grid-area: 1 / 2 / 2 / 3;
}

.instagram {
  height: 128px;
  width: 128px;
  background: url(./assets/icons/instagram.webp);
  grid-area: 1 / 3 / 2 / 4;
}
.facebook {
  height: 128px;
  width: 128px;
  background: url(./assets/icons/facebook.webp);
  grid-area: 2 / 1 / 3 / 2;
}

.github {
  height: 128px;
  width: 128px;
  background-color: white;
  background: url(./assets/icons/github.webp);
  grid-area: 2 / 2 / 3 / 3;
}

.behance {
  height: 128px;
  width: 128px;
  background: url(./assets/icons/behance.webp);
  grid-area: 2 / 3 / 3 / 4;
}

.find-me-text {
  right: 13px;
  top: -125px;
  text-align: center;
  font-size: 1.4rem;
  height: 100%;
  width: 100%;
  position: relative;
  color: brown;
  grid-area: 1 / 1 / 2 / 5;
}

#find-me-icon {
  -webkit-transform: scale(1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  cursor: pointer;
}

#find-me-icon:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1);
}

#tree-5 {
  position: absolute;
  left: -500px;
}

#tree-6 {
  position: absolute;
  left: -250px;
}

#fwbb-5 {
  position: absolute;
  left: -50px;
}

#tree-7 {
  position: absolute;
  left: 215px;
}

#tree-8 {
  position: absolute;
  left: 1075px;
}

#tree-9 {
  position: absolute;
  left: 825px;
}

#fwbb-6 {
  position: absolute;
  left: 520px;
}

#tree-10 {
  position: absolute;
  left: 402px;
}

#bird-blue {
  position: absolute;
  background: url("./assets/blueBirdLeftScaled.webp");
  top: -80%;
  right: -200%;
  width: 240px;
  height: 192px;
  display: none;
  z-index: 1;
}

#bird-yellow {
  position: absolute;
  background: url("./assets/yellowBirdLeftScaled.webp");
  top: -75%;
  right: -200%;
  width: 240px;
  height: 192px;
  display: none;
  z-index: 1;
}

#cat,
#cat-hitbox {
  outline: none !important;
  caret-color: transparent !important;
  -webkit-user-select: none;
  user-select: none;
}
#cat-hitbox:focus,
#cat:focus {
  outline: none !important;
}

#cat {
  position: absolute;
  bottom: -14px;
  left: 1720px;
  background: url("./assets/catWalkRightScaled.webp");
  width: 228px;
  height: 192px;
}

#cat {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  cursor: default;
}

.meow-pop {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 18px;
  white-space: nowrap;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
}

.meow-pop::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 18px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.55) transparent transparent transparent;
}

#cat-hitbox {
  position: fixed;
  pointer-events: auto;
  z-index: 9999;
  background: transparent;
  display: none;
}

#character,
#endCharacterAnimation {
  pointer-events: none !important;
  cursor: default !important;
}

#character {
  position: absolute;
  bottom: 19.8%;
  left: 40%;
  width: 320px;
  height: 320px;
  background: url("./assets/character/scooter-right.png");
  z-index: 1;
  visibility: visible;
}

#endCharacterAnimation {
  position: absolute;
  bottom: 19.8%;
  left: 40%;
  width: 320px;
  height: 400px;
  background: url("./assets/character/endCharacterAnimation.png");
  z-index: 1;
  visibility: hidden;
}

.endMessage,
.endMessage-bg {
  pointer-events: none;
}

.endMessage {
  position: absolute;
  top: -870px;
  text-align: center;
  left: 21395px;
  width: 300px;
  opacity: 0;
}

.endMessage-bg {
  background-color: rgba(40, 116, 164, 0.95);
  width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 25px;
  border: 5px solid white;
}

.endMessage p {
  margin: 0;
  padding: 30px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 2.5rem;
  color: white;
  opacity: 0;
}

.endMessage p span {
  opacity: 0;
}

/* .closeButton {
  color: white;
  position: absolute;
  top: 1%;
  right: 1.5%;
  cursor: pointer;
  padding: 10px;
  transform: scale(1.8);
} */

@property --chatbot-launcher-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.chatbot-launcher {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f79b5, #2980b9);
  color: #ffffff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;

  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  isolation: isolate;
}

.chatbot-launcher::after {
  --chatbot-launcher-border-angle: 0deg;
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  padding: 4px;
  box-sizing: border-box;
  background: conic-gradient(
    from var(--chatbot-launcher-border-angle),
    rgba(239, 83, 80, 0.95),
    rgba(183, 28, 28, 0.95),
    rgba(239, 83, 80, 0.95)
  );
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.chatbot-launcher.chatbot-launcher--border-animate::after {
  opacity: 1;
  animation: chatbot-launcher-border-rotate 1s linear infinite;
}

@keyframes chatbot-launcher-border-rotate {
  from {
    --chatbot-launcher-border-angle: 0deg;
  }
  to {
    --chatbot-launcher-border-angle: 360deg;
  }
}

.chatbot-launcher--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: none;
  box-shadow: none;
}

.chatbot-launcher:hover::after,
.chatbot-launcher:focus-visible::after {
  opacity: 1;
  animation: none !important;
}

.chatbot-launcher:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.chatbot-launcher:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.chatbot-launcher-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.chatbot-launcher-icon__bubble {
  fill: currentColor;
}

.chatbot-launcher-icon__dot {
  fill: #e4f3ff;
}

.chatbot-launcher-label {
  line-height: 1;
}

.chatbot-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 54, 0.45);
  backdrop-filter: blur(1px);
}

.chatbot-modal__dialog {
  position: relative;
  width: min(420px, 92vw);
  max-height: min(640px, 92vh);
  margin: 24px;
  border-radius: 24px;
  background: #eceff1;
  box-shadow: 0 24px 60px rgba(23, 56, 89, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatbotSlideUp 0.25s ease-out;
}

.chatbot-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: #123;
  font-size: 1.6rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chatbot-modal__close:hover,
.chatbot-modal__close:focus-visible {
  background: rgba(31, 121, 181, 0.2);
  transform: rotate(90deg);
  outline: none;
}

.chatbot-modal__title {
  margin: 0;
  padding: 28px 32px 16px 32px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #123;
}

.chatbot-modal__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 32px 28px 32px;
  box-sizing: border-box;
  gap: 18px;
  overflow: hidden;
}

.chatbot-messages {
  flex: 1 1 auto;
  min-height: 0;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(31, 121, 181, 0.15);
  padding: 18px;
  overflow-y: auto;
  box-shadow: inset 0 1px 3px rgba(15, 41, 64, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 121, 181, 0.35) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 8px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(31, 121, 181, 0.4);
  border-radius: 8px;
}

.chatbot-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f3b4d;
}

.chatbot-form__controls {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.chatbot-form__controls input {
  flex: 1;
  border-radius: 16px;
  border: 1px solid rgba(31, 121, 181, 0.2);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-form__controls input:focus {
  outline: none;
  border-color: rgba(31, 121, 181, 0.8);
  box-shadow: 0 0 0 3px rgba(31, 121, 181, 0.15);
}

.chatbot-form__submit {
  border: none;
  border-radius: 16px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
  background: linear-gradient(135deg, #1d8448, #1f884c);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-form__submit:hover,
.chatbot-form__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 121, 181, 0.3);
  outline: none;
}

.chatbot-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.chatbot-message:last-child {
  margin-bottom: 0;
}

.chatbot-message__avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 121, 181, 0.12);
  color: #1f79b5;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
}

.chatbot-message__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chatbot-message__bubble {
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(31, 121, 181, 0.08);
  line-height: 1.55;
  color: #123;
  box-shadow: 0 2px 10px rgba(15, 41, 64, 0.08);
}

.chatbot-message--user {
  justify-content: flex-end;
}

.chatbot-message--user .chatbot-message__bubble {
  background: linear-gradient(135deg, #1f79b5, #2c9cd9);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 121, 181, 0.25);
}

.chatbot-message--assistant .chatbot-message__avatar {
  background: rgba(31, 121, 181, 0.15);
  color: #1f79b5;
}

.chatbot-message--assistant .chatbot-message__bubble {
  background: rgba(255, 255, 255, 0.95);
}

.chatbot-message--status .chatbot-message__avatar {
  display: none;
}

.chatbot-message--status .chatbot-message__bubble {
  font-style: italic;
  color: #4a6072;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

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

@media (max-width: 1024px) {
  .chatbot-launcher {
    padding: 10px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .chatbot-launcher {
    padding: 10px;
  }

  .chatbot-launcher-label {
    display: none;
  }
}

@media (max-width: 600px) {
  .chatbot-modal {
    align-items: stretch;
    justify-content: stretch;
  }

  .chatbot-modal__dialog {
    width: 100%;
    max-height: none;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }

  .chatbot-modal__title {
    padding: 24px 24px 12px 24px;
  }

  .chatbot-modal__body {
    padding: 0 24px 24px 24px;
  }
}

[hidden] {
  display: none !important;
}

#main-layer,
.portfolio-container {
  -webkit-user-select: none;
  user-select: none;
}
