* {
  box-sizing: border-box;
}

.fixed-blur-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.1);
  padding: 1rem;
  text-align: center;
}

.fixed-blur-footer a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.fixed-blur-footer a:hover {
  color: #409EFF;
}

.footer-records {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-download {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

body {
	margin: 0;
	padding: 0;
  min-height: 100dvh;
  padding-bottom: 110px;
	font-family: "Segoe UI", sans-serif;
	    background: #111 no-repeat center center fixed;
	background-size: cover;
	color: #eee;
  display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--wallpaper-image, none) no-repeat center center;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
  transition: opacity 0.4s ease;
}

.container {
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 1200px;
  gap: 2rem;
  padding: 2rem;
  position: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  margin-bottom: 1rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.1);
  width: 100%;
}

.contact-info p {
  margin: 0.3rem 0;
  color: white;
}

.wallpaper-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
}

.wallpaper-download:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.wallpaper-download:hover .wallpaper-title {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1.1);
}

.wallpaper-title {
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.right {
  flex: 2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.top-modules {
  display: flex;
  gap: 1rem;
}

.module {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255, 0.1);
  padding: 1rem;
  text-align: center;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #ddd;
  margin: 0;
}

.quote-source {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 5px;
  text-align: right;
}

.date {
  font-size: 0.9rem;
  color: #bbb;
  font-weight: normal;
}

.clock {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ccc;
}

.sites-container {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.site-block {
  min-width: 140px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  color: #eee;
  font-size: 2rem;
}

.site-block:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-title {
  font-size: 1rem;
  font-weight: bold;
}

.socials-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 1rem;
}

.social-block {
  flex: 0 0 auto;
  min-width: 10px;
  max-width: 3rem;
  max-height: 3rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
  color: #eee;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.icon-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-block:hover .social-title {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}

.social-title {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.music-drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.music-drawer-mask.show {
  opacity: 1;
  visibility: visible;
}

.music-tab {
  position: fixed;
  left: 0;
  bottom: 6rem;
  z-index: 10002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 3.6rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: 0.2s;
}

.music-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.music-drawer {
  position: fixed;
  left: 0;
  bottom: 6rem;
  z-index: 10001;
  width: min(420px, 92vw);
  padding: 1rem;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  background: transparent;
  border: none;
  box-shadow: none;
}

.music-drawer.show {
  transform: translateX(0);
}

.music-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
  outline: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.music-control:focus,
.music-control:active,
.music-control:hover {
  color: #66ccff;
}

.music-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.music-info p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.music-lyrics {
  height: 120px;
  padding: 0.75rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  text-align: center;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
}

.music-control {
  width: auto;
  height: auto;
  font-size: 1.6rem;
  line-height: 1;
}

.music-control i {
  font-size: inherit;
}

.music-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.music-progress-bar {
  height: 100%;
  width: 0;
  background: #fff;
}

.music-time {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.music-volume {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.music-volume input {
  flex: 1;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
  @media (max-width: 768px) {
  body {
    align-items: flex-start;
    padding-bottom: 150px;
  }

  .container {
    width: 100%;
    gap: 1rem;
    padding: 1rem;
  }

  .left,
  .right {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

  .top-modules {
    flex-direction: column;
    gap: 1rem;
  }

  .module {
    flex: 1;
  }

  .sites-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-block {
    min-width: 0;
    padding: 0.8rem;
    font-size: 1.5rem;
  }

  .site-title {
    font-size: 0.95rem;
  }

  .socials-container {
    justify-content: center;
  }

  .fixed-blur-footer {
    border-radius: 12px 12px 0 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .footer-records {
    gap: 0.25rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .footer-records span {
    width: 100%;
  }

  .footer-download {
    right: 0.25rem;
  }

  .wallpaper-download {
    width: 2rem;
    height: 2rem;
  }

  .music-drawer {
    width: min(360px, 92vw);
    bottom: 6.5rem;
  }

  .music-tab {
    bottom: 6.5rem;
  }
}

  @media (max-width: 375px) {
  .container {
    padding: 0.75rem;
  }

  .contact-info p:first-child {
    font-size: 21px !important;
  }

  .sites-container {
    grid-template-columns: 1fr;
  }
}