* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fefeff;
  background-image: url("../assets/bg.jpg");
  background-repeat: repeat;
  background-position: top left;
  min-height: 110dvh;
  color: #37286b;
  cursor: url(../assets/Cursors/cursor2x.cur), auto;
  font-family: "font";
}
body::after {
  content: "";
  display: block;
  height: 5vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.12) 0,
      rgba(0, 0, 0, 0.12) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: overlay;
}
.section {
  display: flex;
  flex-direction: column;
}
.tabs {
  width: fit-content;
}
.xp-window {
  display: block;
  background: #210252;
  box-shadow: 0.1rem 0.2rem 0.35rem #150336;
  padding: 0.22rem;
  margin-bottom: 1rem;
}
.xp-window:hover .xp-content {
  background: #b8e2e3;
}
.xp-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
  padding: 0 0.5rem;
  background: linear-gradient(to bottom, #2b5fab 45%, #1f4f9c 100%);
  color: white;
  font-size: 1rem;
  font-family: Tahoma, Verdana, sans-serif;
  user-select: none;
}
.xp-title {
  font-weight: bold;
  text-shadow: 0.08rem 0.08rem 0 #000;
  user-select: none;
}
.xp-controls {
  display: flex;
  gap: 0.25rem;
}
.xp-controls button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-bottom: 2px solid #404040;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-top: 2px solid #fff;
  background-color: #c0c0c0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  cursor: url(../assets/Cursors/pointer2x.cur), auto;
}
.xp-controls .min {
  background-image: url("../assets/Minimize_Button.png");
}
.xp-controls .max {
  background-image: url("../assets/Maximize_Button.png");
}
.xp-controls .close {
  background-image: url("../assets/Close_Button.png");
}
.xp-controls button:hover {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background-color: #c0c0c0;
}
.xp-controls button:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(1px, 1px);
}
.xp-controls button:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(1px, 1px);
}
.xp-content {
  background: #f2eee7;
  color: black;
  padding: 0.25rem;
  margin-top: 0.25rem;
  width: auto;
  max-height: 100%;
  overflow-y: auto;
}
.main {
  width: 100%;
  padding: 0.2rem 1%;
  padding-top: 56px;
  font-size: 0;
  overflow-y: auto;
}
.left,
.middle,
.right {
  display: inline-block;
  vertical-align: top;
  padding: 1.25rem;
  font-size: 1.2rem;
}
.left {
  width: 25%;
}
.middle {
  width: 50%;
}
.right {
  width: 25%;
}
#Mail {
  height: 1rem;
}
#Contacts a {
  text-decoration: none;
  color: black;
  cursor: url(../assets/Cursors/pointer2x.cur), auto;
}
#Contacts a:hover {
  text-decoration: none;
  color: blue;
  cursor: url(../assets/Cursors/pointer2x.cur), auto;
  text-shadow: 0.08rem 0.08rem 0 #ffffff;
}
#Prices {
  text-align: center;
}
#Prices a {
  text-decoration: none;
  animation: softGlowLink 0.2s ease-in-out infinite alternate;
  text-decoration: underline;
  color: rgb(0, 0, 170);
}
#Prices a:hover {
  text-decoration: none;
  color: blue;
  cursor: url(../assets/Cursors/pointer2x.cur), auto;
  text-shadow: 0.08rem 0.08rem 0 #ffffff;
  animation: softGlowLink 0.2s ease-in-out infinite alternate;
}
#Webcam {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
#Webcam img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#boot-screen.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
#boot-screen.hidden.done {
  display: none;
}
.global-logo {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
.global-logo h1 {
  font-family: "font2", sans-serif;
  font-size: 2.8rem;
  color: rgb(34, 34, 143);
  letter-spacing: 1px;
  text-align: center;
  image-rendering: pixelated;
  animation: softGlow 0.4s ease-in-out infinite alternate;
  user-select: none;
}
@keyframes softGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.6);
  }
}
.h1 {
  font-size: 24px;
}
#win98-taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(40px, 6vh, 60px);
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  display: flex;
  align-items: center;
  padding: 4px;
  font-family: "Tahoma", sans-serif;
  z-index: 9999;
}
#start-btn {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: clamp(32px, 4vh, 45px);
  padding: 0 10px;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
#start-btn img {
  width: 16px;
  height: 16px;
  image-rendering: pixelated;
  pointer-events: none;
}
#start-btn:hover {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#start-btn:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(1px, 1px);
}
.taskbar-spacer {
  flex: 1;
}
.tray {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tray button {
  height: 28px;
  width: 28px;
  padding: 0;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tray button:hover {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.tray button:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(1px, 1px);
}
#clock {
  width: clamp(110px, 18vw, 140px);
  font-size: clamp(12px, 2.2vw, 16px);
  padding: 4px 8px;
  background: #c0c0c0;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-family: "font";
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#sound-btn img {
  width: 14px;
  height: 14px;
  image-rendering: pixelated;
  display: block;
  user-select: none;
}
#start-btn img {
  content: url("../assets/start.png");
  user-select: none;
}
@font-face {
  font-family: "font";
  src: url("../fonts/ChiKareGo2.ttf") format("truetype");
}
@font-face {
  font-family: "font2";
  src: url("../fonts/m40.TTF") format("truetype");
}
.Weather button {
  width: 100%;
  padding: 6px;
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 0.8rem;
  background: #d4d0c8;
  border: 1px solid #404040;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #808080;
  cursor: url(../assets/Cursors/pointer2x.cur), auto;
}
.Weather button:active {
  box-shadow: inset -1px -1px #fff, inset 1px 1px #808080;
}
.bio-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.title {
  text-align: center;
  font-size: 24px;
}
.bio-title::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../assets/bio.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Welcome-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Welcome-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/hehe.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.VisitorCounter-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.VisitorCounter-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/visitor_counter.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Mail-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Mail-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Changelogs-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Changelogs-title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../assets/Changelogs.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Contacts-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Contacts-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Contacts.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Webcan-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Webcan-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Webcan.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Prices-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Prices-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Prices.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Faq-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Faq-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Faq.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.OtherProjects-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.OtherProjects-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Other_Projects.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Button-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Button-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
.Sticker-title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.Sticker-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../assets/Stickers.png");
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  color: white;
}
#themeToggle {
  width: 28px;
  height: 28px;
  padding: 0;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: url(../assets/Cursors/pointer2x.cur), pointer;
  user-select: none;
}
#themeToggle img {
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
  pointer-events: none;
}
#themeToggle:hover {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#themeToggle:active {
  transform: translate(1px, 1px);
}
#visitor-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#lang-btn img {
  width: 25px;
  height: 28px;
  image-rendering: pixelated;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
#flag_gay {
  width: 26px;
  height: 18px;
  border: 1px solid #2c2c54;
}
.counter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  text-decoration: none;
  cursor: url(../assets/Cursors/pointer2x.cur), pointer;
}
.counter-link:hover img {
  filter: brightness(1.1);
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.counter-link:active img {
  transform: translate(1px, 1px);
  filter: brightness(0.95);
}
.xp-content .welcome-layout {
  display: grid;
  grid-template-columns: 1fr clamp(180px, 22vw, 300px);
  gap: 12px;
  align-items: center;
}
.xp-content .welcome-text {
  overflow-y: auto;
  padding-right: 4px;
}
.welcome-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.welcome-image-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.xp-content .welcome-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}
.xp-content .welcome-text::-webkit-scrollbar {
  width: 14px;
}
.xp-content .welcome-text::-webkit-scrollbar-track {
  background: #c0c0c0;
  border-left: 2px solid #808080;
}
.xp-content .welcome-text::-webkit-scrollbar-thumb {
  background: #d4d0c8;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
}
.xp-content .welcome-text::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
}
.mini-changelog {
  padding: 8px 12px;
  background: #fff;
  color: blue;
  font-family: "font";
  font-size: 1.2rem;
  border: 2px dotted blue;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.mini-changelog .changelog-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.3rem;
  color: darkblue;
}
.mini-changelog .new-gif {
  width: 30px;
  height: auto;
  image-rendering: pixelated;
}
.mini-changelog .changelog-body p {
  line-height: 1.4;
}
.changelog-full-link {
  align-self: flex-start;
  margin-top: 8px;
  text-decoration: none;
  color: rgb(0, 0, 170);
  font-weight: bold;
  animation: softGlowLink 0.2s ease-in-out infinite alternate;
  text-decoration: underline;
}
@keyframes softGlowLink {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.3);
  }
}
.changelog-full-link:hover {
  cursor: url(../assets/Cursors/pointer2x.cur), pointer;
  background-color: lightskyblue;
}
.projects-marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px;
  background: #eae8d9;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.projects-track {
  display: flex;
  gap: clamp(8px, 1.5vw, 16px);
  width: max-content;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-question {
  background-color: #f0f0f0;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: 2px solid #37286b;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  font-family: "font";
  border-radius: 4px;
  margin-bottom: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  color: darkblue;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-question:hover {
  background-color: #e0e0e0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.faq-answer {
  padding: 10px;
  display: none;
  background-color: #e0e0e0;
  color: blue;
  font-family: "font";
  border-left: 3px solid #37286b;
  border-radius: 4px;
}
.faq-question:focus {
  outline: none;
}
.faq-question:hover {
  background-color: #e0e0e0;
}
.faq-question:active {
  transform: translate(1px, 1px);
}
.small {
  font-size: 14px;
  color: gray;
}
.new-gif {
  content: url("../assets/New.gif");
  image-rendering: pixelated;
  width: auto;
  height: auto;
}
.price-grid {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  margin: 10px 20px;
  flex-wrap: nowrap;
}
.price-box {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 3px ridge #37286b;
  padding: clamp(5px, 2vw, 60px);
  text-align: center;
  font-family: "font";
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-box:hover {
  transform: scale(1.05);
}
.price-box h3 {
  color: darkblue;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 8px;
}
.price-amount {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: bold;
  color: #37286b;
  animation: softGlow 0.4s ease-in-out infinite alternate;
  margin: 8px 0;
}
.price-box p {
  color: #2c2c54;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.3;
}
.price-info {
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  color: darkblue;
  font-weight: bold;
  font-family: "font";
  text-decoration: underline;
  animation: softGlowLink 0.2s ease-in-out infinite alternate;
  cursor: url(../assets/Cursors/pointer2x.cur), pointer;
}
.price-info:hover {
  background-color: lightskyblue;
}
.mini-changelog-button {
  display: inline-block;
  width: auto;
  width: 100%;
  padding: clamp(14px, 3vw, 12px) 0;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  background: #fff;
  color: blue;
  font-family: "font";
  text-align: center;
  border: 2px dotted blue;
  text-decoration: none;
  animation: softGlowLink 0.2s ease-in-out infinite alternate;
  transition: all 0.2s ease;
}
.mini-changelog-button:hover {
  background-color: lightskyblue;
  cursor: url(../assets/Cursors/pointer2x.cur), pointer;
}
.gifs {
  width: clamp(72px, 10vw, 102.5px);
  height: clamp(31px, 4vw, 40px);
  object-fit: cover;
  image-rendering: pixelated;
  display: inline-block;
}
.project-btn {
  width: 165px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.project-btn img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  image-rendering: pixelated;
  display: block;
}
#boot-screen {
  position: fixed;
  inset: 0;
  background: #040a1a;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boot-warp {
  transform: scale(2.2);
  filter:
    blur(0.25px)
    contrast(1.15)
    brightness(1.05);
}
.boot-frame {
  width: 78vw;
  height: 68vh;
  border: 2px solid rgba(140, 180, 255, 0.35);
  background:
    radial-gradient(
      rgba(80, 120, 200, 0.08),
      transparent 70%
    );
  box-shadow:
    0 0 35px rgba(120, 160, 255, 0.25),
    inset 0 0 60px rgba(80, 120, 200, 0.18),
    inset 0 0 120px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "font";
  color: #9fc9ff;
  text-align: center;
}
.boot-text {
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: 4px;
  text-shadow:
    0 0 2px #9fc9ff,
    0 0 8px rgba(140,180,255,0.6),
    0 0 18px rgba(140,180,255,0.35);
  animation: textFlicker 2.4s infinite;
}
.boot-sub {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.7;
  text-shadow:
    0 0 6px rgba(140,180,255,0.35);
}
#boot-screen.hide {
  animation: bootFade 0.8s ease forwards;
}
#xp-popup {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 18px 14px;
  background: #fff;
  color: rgb(0, 0, 0);
  font-family: 'font';
  font-size: 18px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #404040;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#xp-popup.show {
  opacity: 1;
}
body.dark #xp-popup {
  background: #1c1c2b;
  color: #e0e0ff;
  border-color: #5a5a8a;
  box-shadow: 2px 2px 0 #000;
}
@keyframes bootFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
body.dark .mini-changelog-button {
  background: #1c1c2b;
  color: #7aa2ff;
  border-color: #7aa2ff;
  animation: softGlowDark 0.2s ease-in-out infinite alternate;
}
body.dark .mini-changelog-button:hover {
  background-color: #2c2c54;
}
body.dark .price-box {
  background: #0e0e16;
  border: 3px ridge #5a5a8a;
  color: #e0e0ff;
}
body.dark .price-box h3 {
  color: #9bb0ff;
}
body.dark .price-box p {
  color: #a7c7ff;
}
body.dark .price-amount {
  color: #7aa2ff;
}
body.dark .price-info {
  color: #7aa2ff;
  animation: softGlowDark 0.2s ease-in-out infinite alternate;
}
body.dark .price-info:hover {
  background-color: #2c2c54;
}
body.dark .new-gif {
  content: url("../assets/Dark_Theme/New_Dark.gif");
}
html[lang="pt"] .new-gif {
  content: url("../assets/NOVO.gif");
}
html[lang="pt"] body.dark .new-gif {
  content: url("../assets/Dark_Theme/NOVO_DARK.gif");
}
body.dark {
  background-color: #fefeff;
  background-image: url("../assets/Dark_Theme/bg_dark.jpg");
  background-repeat: repeat;
  background-position: top left;
  cursor: url(../assets/Cursors/cursor2x.cur), auto;
  font-family: "font";
}
body.dark .xp-window {
  background: #12002e;
}
body.dark .xp-content {
  background: #1c1f2b;
  color: #e0e0ff;
}
body.dark .xp-titlebar {
  background: linear-gradient(to bottom, #2c2c54, #1b1b3a);
}
body.dark #Contacts a {
  color: #e0e0ff;
}
body.dark #Contacts a:hover {
  color: #7aa2ff;
  text-shadow: 0.08rem 0.08rem 0 #000;
}
body.dark .xp-window:hover .xp-content {
  background: #334455;
}
body.dark #win98-taskbar {
  background: #2c2c54;
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #1b1b3a;
  border-bottom: 2px solid #1b1b3a;
}
body.dark .xp-controls button {
  background-color: #2c2c54;
  border-top: 2px solid #5a5a8a;
  border-left: 2px solid #5a5a8a;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
}
body.dark .xp-controls button:hover {
  background-color: #161628;
  border-top: 2px solid #0f0f1a;
  border-left: 2px solid #0f0f1a;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark .xp-controls button:active {
  background-color: #161628;
  border-top: 2px solid #0f0f1a;
  border-left: 2px solid #0f0f1a;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
  transform: translate(1px, 1px);
}
body.dark .xp-controls .min {
  background-image: url("../assets/Dark_Theme/Minimize_Button_Dark.png");
}
body.dark .xp-controls .max {
  background-image: url("../assets/Dark_Theme/Maximize_Button_Dark.png");
}
body.dark .xp-controls .close {
  background-image: url("../assets/Dark_Theme/Close_Button_Dark.png");
}
body.dark #start-btn img {
  content: url("../assets/Dark_Theme/start_Dark.png");
}
body.dark #clock {
  color: #e0e0ff;
  background: #1c1c2b;
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark .tray button {
  background: #1c1c2b;
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark .tray button:hover {
  background-color: #1c1c2b;
  border-top: 2px solid #0f0f1a;
  border-left: 2px solid #0f0f1a;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
  color: #e0e0ff;
}
body.dark .start {
  background: #2c2c54;
}
body.dark .tray button {
  background: #1c1c2b;
  border-top: 2px solid #5a5a8a;
  border-left: 2px solid #5a5a8a;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
  color: #e0e0ff;
}
body.dark .tray button:hover {
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark .tray button:active {
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
  transform: translate(1px, 1px);
}
body.dark #start-btn {
  background: #1c1c2b;
  border-top: 2px solid #5a5a8a;
  border-left: 2px solid #5a5a8a;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
  color: #e0e0ff;
}
body.dark #start-btn:hover {
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark #start-btn:active {
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
  transform: translate(1px, 1px);
}
body.dark .bio-title::before {
  background-image: url("../assets/Dark_Theme/bio_Dark.png");
}
body.dark .Welcome-title::before {
  background-image: url("../assets/Dark_Theme/hehe_Dark.png");
}
body.dark .VisitorCounter-title::before {
  background-image: url("../assets/Dark_Theme/visitor_counter_Dark.png");
}
body.dark .Mail-title::before {
  background-image: url("../assets/Dark_Theme/Mail_Dark.png");
}
body.dark .Changelogs-title::before {
  background-image: url("../assets/Dark_Theme/Changelogs_Dark.png");
}
body.dark .Contacts-title::before {
  background-image: url("../assets/Dark_Theme/Contacts_Dark.png");
}
body.dark .Webcan-title::before {
  background-image: url("../assets/Dark_Theme/Webcan_Dark.png");
}
body.dark .Prices-title::before {
  background-image: url("../assets/Dark_Theme/Prices_Dark.png");
}
body.dark .Faq-title::before {
  background-image: url("../assets/Dark_Theme/Faq_Dark.png");
}
body.dark .OtherProjects-title::before {
  background-image: url("../assets/Dark_Theme/Other_Projects_Dark.png");
}
body.dark .Button-title::before {
  background-image: url("../assets/Dark_Theme/mark_Dark.png");
}
body.dark .Sticker-title::before {
  background-image: url("../assets/Dark_Theme/Stickers_Dark.png");
}
body.dark #themeToggle {
  background: #1c1c2b;
  border-top: 2px solid #5a5a8a;
  border-left: 2px solid #5a5a8a;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
  color: #e0e0ff;
}
body.dark #themeToggle:hover {
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark #visitor-counter {
  color: #e0e0ff;
}
body.dark .counter-link:hover img {
  filter: brightness(1.1);
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark #Prices a {
  color: #7aa2ff;
}
body.dark #Prices a:hover {
  color: #7aa2ff;
  text-shadow: 0.08rem 0.08rem 0 #000;
}
body.dark .mini-changelog {
  background: #1c1c2b;
  color: #a7c7ff;
  border-color: #7aa2ff;
}
body.dark .mini-changelog .changelog-header {
  color: #9bb0ff;
}
body.dark .changelog-full-link {
  color: #7aa2ff;
  animation: softGlowDark 0.2s ease-in-out infinite alternate;
}
@keyframes softGlowDark {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}
body.dark .projects-marquee {
  background: #1c1c2b;
  border-top: 2px solid #1a1a2e;
  border-left: 2px solid #1a1a2e;
  border-right: 2px solid #5a5a8a;
  border-bottom: 2px solid #5a5a8a;
}
body.dark .xp-content .welcome-text::-webkit-scrollbar-track {
  background: #1c1c2b;
  border-left: 2px solid #0f0f1a;
}
body.dark .xp-content .welcome-text::-webkit-scrollbar-thumb {
  background: #2c2c54;
  border-top: 2px solid #5a5a8a;
  border-left: 2px solid #5a5a8a;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
}
body.dark #flag_gay {
  border: 1px solid #5a5a8a;
}
body.dark .global-logo h1 {
  font-family: "font2", sans-serif;
  font-size: 2.8rem;
  color: #5a5a8a;
  letter-spacing: 1px;
  text-align: center;
  image-rendering: pixelated;
  animation: softGlow 0.4s ease-in-out infinite alternate;
}
body.dark .small {
  font-size: 14px;
  color: #5a5a8a;
}
body.dark .changelog-full-link:hover {
  background-color: #2c2c54;
}
@media (max-width: 768px) {
  .main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .left,
  .middle,
  .right {
    width: 100%;
    padding: 0;
    display: block;
  }
  .global-logo {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }
  .xp-window {
    width: 100%;
    max-width: 95vw;
  }
  .xp-content {
    overflow: hidden;
  }
  .welcome-image-wrapper {
    overflow: hidden;
    line-height: 0;
  }
  .welcome-image-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .faq-question {
    font-size: 0.8rem;
  }
  .main::after {
    content: "";
    display: block;
    height: 1rem;
  }
  body::after {
    content: "";
    display: block;
    height: 5vh;
  }
  #clock {
  width: clamp(90px, 17vw, 120px);
}
}
@media (max-width: 700px) {
  .price-grid {
    flex-wrap: wrap;
  }
  .price-box {
    flex: 1 1 100%;
  }
  .faq-question {
    font-size: 0.7rem;
  }
  body::after {
    content: "";
    display: block;
    height: 5vh;
  }
}
@media (max-width: 1200px) {
  .welcome-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .welcome-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .welcome-image-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  body::after {
    content: "";
    display: block;
    height: 5vh;
  }
}
@media (max-width: 1400px) {
  .welcome-text {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 6px;
  }
  .faq-question {
    font-size: 0.8rem;
  }
  .mini-changelog .changelog-body p {
    font-size: 15px;
  }
  .changelog-full-link {
    font-size: 16px;
  }
  .counter-label {
    font-size: 12px;
  }
  body::after {
    content: "";
    display: block;
    height: 5vh;
  }
}
@media (max-width: 1366px) {
  .global-logo {
    position: relative;
    top: 20;
    left: 0;
    transform: none;
    width: 100%;
    text-align: center;
  }
  .main {
    padding-top: 12px;
  }
  body::after {
    content: "";
    display: block;
    height: 5vh;
  }
}
@media (max-width: 480px) {
  #clock {
    width: clamp(84px, 30vw, 110px);
    font-size: clamp(11px, 3.2vw, 14px);
    padding: 3px 6px;
  }
}



body.firefox,
body.firefox a,
body.firefox button,
body.firefox input,
body.firefox textarea,
body.firefox select {
  cursor: auto !important;
}
