.iphone-frame {
  position: relative;
  width: 393px;
  height: 852px;
  max-height: 90vh;
  max-width: calc(393px * min(1, (90vh / 852px)));
  border-radius: 55px;
  border: 12px solid rgba(20, 20, 30, 0.95);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  backdrop-filter: blur(36px) saturate(180%);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.iphone-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 20;
}
.iphone-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.iphone-close-icon:before,
.iphone-close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 18px;
  background: #fff;
  transform-origin: center;
}
.iphone-close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.iphone-close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.iphone-close:hover {
  background: #fff3;
}
.iphone-close:hover .iphone-close-icon:before,
.iphone-close:hover .iphone-close-icon:after {
  background: #ffffffe6;
}
.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translate(-50%);
  width: 126px;
  height: 37px;
  background: #000000f2;
  border-radius: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 12px #0009, inset 0 1px 1px #ffffff05;
}
.camera-cutout {
  width: 8px;
  height: 8px;
  background: #0a1428e6;
  border-radius: 50%;
  box-shadow: 0 0 4px #3c78ff4d, inset 0 0 2px #6496ff33;
  position: relative;
}
.camera-cutout:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 3px;
  height: 3px;
  background: #508cff66;
  border-radius: 50%;
}
.sensor-cutout {
  width: 6px;
  height: 6px;
  background: #050a14f2;
  border-radius: 50%;
}
.iphone-body {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.iphone-shader-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 43px;
}
.iphone-shader-container canvas {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 43px;
  transform: translate(-50%, -50%) scale(1.5) !important;
  transform-origin: center center !important;
  opacity: 0.1;
  mix-blend-mode: screen;
}
.iphone-glass-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0.5;
  overflow: hidden;
  border-radius: 43px;
  background: linear-gradient(135deg, #08181266, #050a1280, #08181266);
  backdrop-filter: blur(4px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  pointer-events: none;
}
.glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  mix-blend-mode: screen;
}
.glass-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(120, 255, 200, 0.3),
    transparent 70%
  );
  top: -50px;
  left: -50px;
  animation: floatOrb1 20s ease-in-out infinite;
}
.glass-orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(42, 160, 255, 0.25),
    transparent 70%
  );
  bottom: -30px;
  right: -30px;
  animation: floatOrb2 18s ease-in-out infinite;
}
.glass-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(200, 255, 230, 0.2),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatOrb3 22s ease-in-out infinite;
}
@keyframes floatOrb1 {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  33% {
    transform: translate(40px, 60px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 40px) scale(0.95);
  }
}
@keyframes floatOrb2 {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  33% {
    transform: translate(-50px, -40px) scale(1.05);
  }
  66% {
    transform: translate(30px, -60px) scale(0.9);
  }
}
@keyframes floatOrb3 {
  0%,
  to {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-30%, -60%) scale(1.15);
  }
}
.iphone-content {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.iphone-content::-webkit-scrollbar {
  width: 4px;
}
.iphone-content::-webkit-scrollbar-track {
  background: transparent;
}
.iphone-content::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .iphone-frame {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .dynamic-island,
  .camera-cutout,
  .sensor-cutout {
    display: none;
  }
  .iphone-close {
    top: max(1rem, env(safe-area-inset-top, 0px));
    right: 1rem;
    z-index: 1000;
  }
  .iphone-body {
    border-radius: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .iphone-shader-container {
    display: block !important;
    border-radius: 0 !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0 !important;
  }
  .iphone-shader-container canvas {
    border-radius: 0 !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .iphone-glass-layer {
    border-radius: 0 !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0 !important;
  }
  .iphone-content {
    padding: 0;
    border-radius: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    position: relative;
    width: 100vw;
    max-width: 100vw;
  }
}
.page-container {
  position: relative;
  width: 100%;
  color: #fff;
}
.hero-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.header {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.logo-icon {
  width: 3rem;
  height: 3rem;
  margin-top: 0.2rem;
}
.logo-text {
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.02em;
}
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero {
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.gradient-text {
  color: #fff;
}
@keyframes shimmer {
  0%,
  to {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.subtitle {
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #ffffffe6;
  margin-bottom: 3rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 30px #ffffff4d;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px #fff6;
}
.btn-secondary {
  position: relative;
  background: linear-gradient(135deg, #ffffff1f, #ffffff0a);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px #00000026, inset 0 1px 2px #ffffff4d,
    inset 0 -1px 2px #00000026, 0 1px #ffffff26;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-secondary:hover:before {
  left: 100%;
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #ffffff2e, #ffffff14);
  border-color: #fff6;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px #00000040, 0 4px 12px #ffffff1a, inset 0 1px 3px #fff6,
    inset 0 -1px 3px #00000026, 0 1px #ffffff4d;
}
.footer {
  padding: 2rem;
  text-align: center;
  color: #fff9;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .header {
    padding: 1.5rem 2rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  .hero {
    padding: 1rem;
  }
  .title {
    font-size: 4rem;
  }
  .subtitle {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-height: 700px) {
  .header {
    padding: 1rem 1.5rem;
  }
  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .logo-text {
    font-size: 1.5rem;
  }
  .hero {
    padding: 0.5rem;
  }
  .title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 1rem;
  }
  .subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
  }
  .cta-buttons {
    gap: 1rem;
  }
  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }
}
@media (max-height: 650px) {
  .header {
    padding: 0.75rem 1.5rem;
  }
  .logo-icon {
    width: 2rem;
    height: 2rem;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .hero {
    padding: 0.25rem;
  }
  .title {
    font-size: clamp(1.75rem, 6vw, 3rem);
    margin-bottom: 0.75rem;
  }
  .subtitle {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
  }
  .cta-buttons {
    gap: 0.75rem;
  }
  .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .modal-overlay {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    overflow: hidden;
  }
}
.modal-content {
  position: relative;
  width: 375px;
  height: 812px;
  max-height: 90vh;
  max-width: calc(375px * min(1, (90vh / 812px)));
  padding: 0;
  overflow: hidden;
  border-radius: 40px;
  border: 8px solid rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #08181259, #050a128c);
  box-shadow: 0 24px 60px #00000073, 0 0 0 1px #ffffff1a inset,
    0 0 60px #20c88c40, 0 0 0 4px #ffffff0d;
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  backdrop-filter: blur(36px) saturate(180%);
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.modal-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 126px;
  height: 30px;
  background: #000000e6;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  box-shadow: 0 2px 8px #0000004d;
}
.modal-content:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(120, 255, 200, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 30%,
      rgba(42, 160, 255, 0.18),
      transparent 65%
    ),
    radial-gradient(circle at 50% 80%, rgba(0, 80, 60, 0.35), transparent 70%);
  filter: blur(50px);
  animation: liquidDrift 18s ease-in-out infinite;
  opacity: 0.85;
  border-radius: 32px;
}
.modal-content .modal-background-effect {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  bottom: -30%;
  left: -10%;
  pointer-events: none;
  z-index: -1;
  background: conic-gradient(
    from 180deg,
    #78ffc833,
    #050a121a,
    #2aa0ff4d,
    #050a120d
  );
  mix-blend-mode: screen;
  filter: blur(40px);
  animation: liquidPulse 12s ease-in-out infinite;
  opacity: 0.65;
}
@keyframes liquidDrift {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(0.96);
  }
  50% {
    transform: translate3d(8%, 6%, 0) scale(1.05);
  }
  to {
    transform: translate3d(-4%, 4%, 0) scale(1.02);
  }
}
@keyframes liquidPulse {
  0% {
    transform: rotate(0) scale(0.95);
    opacity: 0.45;
  }
  40% {
    transform: rotate(120deg) scale(1.05);
    opacity: 0.75;
  }
  to {
    transform: rotate(360deg) scale(1);
    opacity: 0.5;
  }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 20;
}
.modal-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.modal-close-icon:before,
.modal-close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 18px;
  background: #fff;
  transform-origin: center;
}
.modal-close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close:hover {
  background: #fff3;
}
.modal-close:hover .modal-close-icon:before,
.modal-close:hover .modal-close-icon:after {
  background: #ffffffe6;
}
.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-title {
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.modal-tagline {
  font-size: 1rem;
  color: #ffffffb3;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.01em;
}
.modal-body {
  position: relative;
  color: #ffffffd9;
  line-height: 1.6;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.modal-body::-webkit-scrollbar {
  width: 4px;
}
.modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 2px;
}
.modal-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.feature-card {
  background: #ffffff08;
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: #ffffff0d;
  border-color: #ffffff26;
  transform: translateY(-2px);
}
.feature-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.feature-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.feature-card:hover .feature-icon svg {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.25));
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.feature-description {
  font-size: 0.95rem;
  margin: 0;
  color: #ffffffa6;
  font-weight: 300;
  line-height: 1.5;
}
.modal-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-launch-info {
  font-size: 0.9rem;
  color: #ffffff80;
  margin: 0 0 0.5rem;
  font-weight: 300;
}
.modal-launch-date {
  font-size: 0.85rem;
  color: #fff6;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.modal-cta {
  width: 100%;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .modal-content {
    width: min(375px, 90vw);
    height: min(812px, 90vh);
    border-width: 6px;
    border-radius: 32px;
  }
  .modal-content:before {
    width: 100px;
    height: 24px;
    border-radius: 0 0 16px 16px;
  }
  .modal-body {
    padding: 0;
  }
  .modal-title {
    font-size: 2rem;
  }
  .modal-tagline {
    font-size: 0.9rem;
  }
  .modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .feature-card {
    padding: 1.25rem;
  }
  .feature-icon {
    margin-bottom: 0.75rem;
    height: 40px;
  }
  .feature-icon svg {
    width: 40px;
    height: 40px;
  }
  .feature-title {
    font-size: 1rem;
  }
  .feature-description {
    font-size: 0.9rem;
  }
  .modal-footer {
    padding-top: 1.5rem;
  }
  .modal-launch-info {
    font-size: 0.85rem;
  }
  .modal-launch-date {
    font-size: 0.8rem;
  }
}
.coming-soon-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(68, 214, 173, 0.12),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(41, 131, 255, 0.15),
      transparent 65%
    ),
    linear-gradient(180deg, #000408f2, #000000fa);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  backdrop-filter: blur(28px) saturate(130%);
  padding: 2rem;
}
.coming-soon-inner {
  width: min(680px, 90vw);
}
.coming-soon-panel {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, #0618128c, #060c12c7);
  box-shadow: 0 40px 120px #0000008c, 0 0 0 1px #ffffff14 inset;
  overflow: hidden;
}
.coming-soon-panel:before,
.coming-soon-panel:after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  bottom: -40%;
  left: -30%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.6;
  animation: liquidDrift 18s ease-in-out infinite;
}
.coming-soon-panel:before {
  background: radial-gradient(
      circle at 25% 30%,
      rgba(102, 255, 210, 0.28),
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(31, 127, 255, 0.22),
      transparent 65%
    );
}
.coming-soon-panel:after {
  background: conic-gradient(
    from 90deg,
    #7affd42e,
    #060c1205,
    #2ab4ff42,
    #060c120f
  );
  animation: liquidPulse 12s ease-in-out infinite;
  opacity: 0.45;
}
.coming-soon-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffffbf;
  background: #ffffff0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 1;
}
.coming-soon-title {
  position: relative;
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(
    130deg,
    #e9fff5,
    #88d39b 50%,
    #50bd6e 75%,
    #28b257 87.5%,
    #18af51,
    #00ac4b,
    #00a849,
    #00a447
  );
  background: linear-gradient(
    130deg,
    #e9fff5,
    #88d39b 50%,
    #50bd6e 75%,
    #28b257 87.5%,
    #18af51,
    color(xyz 0.159 0.299 0.115),
    color(xyz 0.147 0.285 0.102),
    color(xyz 0.135 0.271 0.09)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}
.coming-soon-subtitle {
  position: relative;
  margin-top: 1rem;
  max-width: 28rem;
  color: #e6f5f0c7;
  font-size: 1.1rem;
  line-height: 1.8;
  z-index: 1;
}
.coming-soon-actions {
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  z-index: 1;
}
.coming-soon-actions .btn {
  min-width: 160px;
}
@media (max-width: 768px) {
  .coming-soon-panel {
    padding: 2.25rem;
  }
  .coming-soon-subtitle {
    font-size: 1rem;
  }
  .coming-soon-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.top-right-controls {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.music-player {
  pointer-events: none;
}
.music-player-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #08181240, #050a1266);
  box-shadow: 0 8px 24px #0000004d, 0 0 0 1px #ffffff14 inset,
    0 0 30px #20c88c26;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  pointer-events: all;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.music-player-content:before,
.music-player-content:after {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  bottom: -30%;
  left: -30%;
  pointer-events: none;
  z-index: -1;
}
.music-player-content:before {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(120, 255, 200, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(42, 160, 255, 0.12),
      transparent 65%
    );
  filter: blur(30px);
  animation: liquidDrift 16s ease-in-out infinite;
  opacity: 0.7;
}
.music-player-content:after {
  top: -15%;
  right: -10%;
  bottom: -20%;
  left: -10%;
  background: conic-gradient(
    from 180deg,
    #78ffc81f,
    #050a120d,
    #2aa0ff2e,
    #050a1208
  );
  mix-blend-mode: screen;
  filter: blur(25px);
  animation: liquidPulse 10s ease-in-out infinite;
  opacity: 0.5;
}
.music-player-content:hover {
  border-color: #ffffff40;
  box-shadow: 0 12px 32px #0006, 0 0 0 1px #ffffff1f inset, 0 0 40px #20c88c33;
  transform: translateY(-1px);
}
.music-player-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.music-player-prev,
.music-player-next {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.music-player-toggle:hover {
  background: #fff3;
  transform: scale(1.1);
}
.music-player-prev:hover,
.music-player-next:hover {
  transform: scale(1.15);
}
.music-player-toggle .music-player-icon {
  width: 12px;
  height: 12px;
  color: #ffffffe6;
  stroke-width: 2.5;
}
.music-player-prev .music-player-icon,
.music-player-next .music-player-icon {
  width: 14px;
  height: 14px;
  color: #ffffffb3;
  stroke-width: 2.5;
}
.music-player-prev:hover .music-player-icon,
.music-player-next:hover .music-player-icon {
  color: #fffffff2;
}
.music-player-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #ffffffd9;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.music-player-artist {
  color: #ffffffe6;
}
.music-player-separator {
  color: #fff6;
  font-weight: 300;
}
.music-player-track {
  color: #ffffffbf;
}
@media (max-width: 768px) {
  .top-right-controls {
    top: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .join-button.leaderboard-active,
  .music-player {
    display: none;
  }
}
.leaderboard-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 2;
}
.shader-clipped-to-phone {
  clip-path: polygon(
    calc(50% - min(187.5px, calc(187.5px * min(1, (90vh / 812px)))))
      calc(50% - min(406px, 45vh)),
    calc(50% + min(187.5px, calc(187.5px * min(1, (90vh / 812px)))))
      calc(50% - min(406px, 45vh)),
    calc(50% + min(187.5px, calc(187.5px * min(1, (90vh / 812px)))))
      calc(50% + min(406px, 45vh)),
    calc(50% - min(187.5px, calc(187.5px * min(1, (90vh / 812px)))))
      calc(50% + min(406px, 45vh))
  );
}
@media (max-width: 768px) {
  .shader-clipped-to-phone {
    clip-path: polygon(
      calc(50% - min(187.5px, 45vw)) calc(50% - min(406px, 45vh)),
      calc(50% + min(187.5px, 45vw)) calc(50% - min(406px, 45vh)),
      calc(50% + min(187.5px, 45vw)) calc(50% + min(406px, 45vh)),
      calc(50% - min(187.5px, 45vw)) calc(50% + min(406px, 45vh))
    );
  }
}
.join-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #08181240, #050a1266);
  box-shadow: 0 8px 24px #0000004d, 0 0 0 1px #ffffff14 inset,
    0 0 30px #20c88c26;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: #ffffffe6;
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.join-button:before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  bottom: -30%;
  left: -30%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(120, 255, 200, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(42, 160, 255, 0.12),
      transparent 65%
    );
  filter: blur(30px);
  animation: liquidDrift 16s ease-in-out infinite;
  opacity: 0.7;
}
.join-button:after {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  bottom: -20%;
  left: -10%;
  background: conic-gradient(
    from 180deg,
    #78ffc81f,
    #050a120d,
    #2aa0ff2e,
    #050a1208
  );
  mix-blend-mode: screen;
  filter: blur(25px);
  animation: liquidPulse 10s ease-in-out infinite;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.join-button svg {
  width: 14px;
  height: 14px;
}
.join-button:hover {
  border-color: #ffffff40;
  box-shadow: 0 12px 32px #0006, 0 0 0 1px #ffffff1f inset, 0 0 40px #20c88c33;
  transform: translateY(-1px);
}
.join-button.authenticated {
  background: linear-gradient(145deg, #78ffc833, #2aa0ff33);
  border-color: #78ffc859;
  box-shadow: 0 8px 24px #0000004d, 0 0 0 1px #78ffc833 inset,
    0 0 35px #20c88c4d;
}
.back-button {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #08181240, #050a1266);
  box-shadow: 0 8px 24px #0000004d, 0 0 0 1px #ffffff14 inset,
    0 0 30px #20c88c26;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: #ffffffe6;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.back-button svg {
  width: 18px;
  height: 18px;
}
.back-button:hover {
  border-color: #ffffff40;
  background: linear-gradient(145deg, #08181259, #050a1280);
  box-shadow: 0 12px 32px #0006, 0 0 0 1px #ffffff1f inset, 0 0 40px #20c88c33;
  transform: translate(-2px);
}
.auth-success,
.auth-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #08181280, #050a12b3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}
.auth-success p {
  color: #78ffc8e6;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.auth-error p {
  color: #ff6464e6;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.leaderboard-panel {
  position: relative;
  width: 100%;
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #08181266, #050a1299);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  backdrop-filter: blur(40px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 60px #00000080, 0 0 0 1px #ffffff14 inset;
  overflow: hidden;
}
.leaderboard-panel:before,
.leaderboard-panel:after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  bottom: -40%;
  left: -40%;
  pointer-events: none;
  z-index: -1;
}
.leaderboard-panel:before {
  background: radial-gradient(
      circle at 80% 20%,
      rgba(120, 255, 200, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 160, 255, 0.15),
      transparent 65%
    );
  filter: blur(50px);
  animation: liquidDrift 18s ease-in-out infinite;
  opacity: 0.7;
}
.leaderboard-panel:after {
  top: -20%;
  right: -10%;
  bottom: -30%;
  left: -10%;
  background: conic-gradient(
    from 270deg,
    #78ffc826,
    #050a120d,
    #2aa0ff33,
    #050a1208
  );
  mix-blend-mode: screen;
  filter: blur(40px);
  animation: liquidPulse 12s ease-in-out infinite;
  opacity: 0.6;
}
.leaderboard-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.leaderboard-title-section {
  text-align: center;
}
.leaderboard-main-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.leaderboard-subtitle {
  font-size: 1rem;
  color: #ffffffb3;
  margin: 0;
}
.leaderboard-progress-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.leaderboard-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leaderboard-progress-label {
  font-size: 0.875rem;
  color: #fff9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.leaderboard-progress-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00a447;
  color: oklch(62.7% 0.194 149.214);
}
.leaderboard-progress-bar-container {
  height: 12px;
  background: #ffffff1a;
  border-radius: 999px;
  overflow: hidden;
}
.leaderboard-progress-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    #00a447,
    #00a573f2,
    #00a79de6,
    #00a6cbd9 75%,
    #16a3e5d2,
    #2aa0ffcc
  );
  background: linear-gradient(
    90deg,
    color(xyz 0.135 0.271 0.09),
    color(xyz 0.159 0.285 0.202 / 0.95),
    color(xyz 0.194 0.3 0.369 / 0.9),
    color(xyz 0.243 0.315 0.62 / 0.85) 75%,
    #16a3e5d2,
    #2aa0ffcc
  );
  border-radius: 999px;
  transition: width 0.3s ease;
  box-shadow: 0 0 15px #20c88c80;
}
.leaderboard-user-card {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff08;
  position: relative;
  z-index: 1;
}
.leaderboard-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.leaderboard-user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #78ffc84d, #2aa0ff4d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.leaderboard-user-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.leaderboard-user-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.leaderboard-user-rank {
  font-size: 0.875rem;
  color: #ffffffb3;
}
.leaderboard-user-points {
  text-align: right;
}
.leaderboard-user-points-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.leaderboard-user-points-label {
  font-size: 0.75rem;
  color: #fff9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.leaderboard-tasks {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.leaderboard-tasks-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.leaderboard-tasks-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.leaderboard-task {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 12px;
  background: #ffffff0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.leaderboard-task:hover {
  background: #ffffff14;
  border-color: #ffffff26;
}
.leaderboard-task-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.leaderboard-task-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leaderboard-task-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.leaderboard-task-points {
  font-size: 0.875rem;
  font-weight: 700;
  color: #00a447;
  color: oklch(62.7% 0.194 149.214);
}
.leaderboard-content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.leaderboard-content-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #08181280, #050a12b3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 2;
}
.leaderboard-content-header span:last-child {
  text-align: right;
}
.leaderboard-entries {
  padding: 0.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.leaderboard-content::-webkit-scrollbar {
  width: 8px;
}
.leaderboard-content::-webkit-scrollbar-track {
  background: #ffffff0d;
  border-radius: 4px;
}
.leaderboard-content::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 4px;
}
.leaderboard-content::-webkit-scrollbar-thumb:hover {
  background: #ffffff4d;
}
.leaderboard-entry {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff08;
  transition: all 0.2s ease;
}
.leaderboard-entry:hover {
  background: #ffffff0f;
  border-color: #ffffff26;
}
.leaderboard-entry-qualified {
  border-left: 3px solid oklch(62.7% 0.194 149.214);
}
.leaderboard-entry-current {
  background: linear-gradient(90deg, #78ffc826, #ffffff0d);
  border-color: #78ffc84d;
  box-shadow: 0 0 20px #20c88c33;
}
.leaderboard-rank {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fffc;
  text-align: center;
}
.leaderboard-entry-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.leaderboard-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #78ffc840, #2aa0ff40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.leaderboard-entry-current .leaderboard-avatar {
  background: linear-gradient(135deg, #78ffc866, #2aa0ff66);
  border-color: #78ffc866;
  box-shadow: 0 0 10px #20c88c4d;
}
.leaderboard-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaderboard-points {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffffe6;
  text-align: right;
}
@media (max-width: 1024px) {
  .leaderboard-section {
    padding: 1.5rem;
  }
  .leaderboard-panel {
    height: calc(100vh - 3rem);
  }
  .back-button {
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
  .back-button svg {
    width: 16px;
    height: 16px;
  }
  .leaderboard-main-title {
    font-size: 1.5rem;
  }
  .leaderboard-header {
    padding: 1.5rem;
  }
  .leaderboard-user-card,
  .leaderboard-tasks {
    padding: 1.25rem 1.5rem;
  }
  .leaderboard-content-header,
  .leaderboard-entries {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .leaderboard-entry {
    grid-template-columns: 60px 1fr 100px;
  }
}
@media (max-width: 768px) {
  .leaderboard-section {
    padding: 1rem;
  }
  .leaderboard-panel {
    height: calc(100vh - 2rem);
  }
  .back-button {
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  .back-button:hover {
    transform: translate(2px);
  }
  .back-button svg {
    width: 14px;
    height: 14px;
  }
  .leaderboard-main-title {
    font-size: 1.25rem;
  }
  .leaderboard-subtitle {
    font-size: 0.875rem;
  }
  .leaderboard-header {
    padding: 1rem;
    gap: 1rem;
  }
  .leaderboard-user-card {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .leaderboard-user-points {
    text-align: left;
    width: 100%;
  }
  .leaderboard-tasks {
    padding: 1rem;
  }
  .leaderboard-content-header,
  .leaderboard-entries {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .leaderboard-entry {
    grid-template-columns: 50px 1fr 80px;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  .leaderboard-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.footer-link {
  color: #fffc;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
.task-list {
  position: relative;
  padding: calc(3rem + 20px) 1.5rem 1.5rem;
}
.task-list-header {
  margin-bottom: 2rem;
}
.task-list-title {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.task-list-subtitle {
  font-size: 0.95rem;
  color: #fff9;
  margin-bottom: 1.5rem;
}
.task-progress {
  margin-top: 1rem;
}
.task-progress-bar {
  width: 100%;
  height: 8px;
  background: #ffffff1a;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.task-progress-fill {
  height: 100%;
  background: #ffffffe6;
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.task-progress-text {
  font-size: 0.875rem;
  color: #ffffffb3;
  font-weight: 600;
}
.task-list-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff0d;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.task-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff14;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.task-item:hover:before {
  opacity: 1;
}
.task-item:hover {
  border-color: #ffffff4d;
  transform: translateY(-2px);
}
.task-item.completed {
  background: #ffffff1a;
  border-color: #ffffff4d;
}
.task-item.completed:before {
  opacity: 0;
}
.task-item.expanded {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.task-item.expanded:hover {
  transform: translateY(0);
}
.task-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffffe6;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.task-item-icon svg {
  width: 20px;
  height: 20px;
}
.task-item.completed .task-item-icon {
  color: #fff;
}
.task-item-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.task-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fffffff2;
  margin-bottom: 0.25rem;
}
.task-item-description {
  font-size: 0.875rem;
  color: #ffffff80;
}
.task-item-check {
  width: 24px;
  height: 24px;
  color: #fff6;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.task-item-check svg {
  width: 24px;
  height: 24px;
}
.task-item.completed .task-item-check {
  color: #fff;
}
.task-complete-message {
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
  background: #ffffff1a;
  border: none;
  border-radius: 20px;
}
.task-complete-icon {
  margin-bottom: 0.75rem;
  color: #fffffff2;
}
.task-complete-icon svg {
  width: 40px;
  height: 40px;
}
.task-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.task-item:active {
  transform: translateY(-1px);
}
.task-complete-message h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fffffff2;
}
.task-complete-message p {
  font-size: 1rem;
  color: #ffffffb3;
}
.docs-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  background: transparent;
  overflow: hidden;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  .docs-container {
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    overflow-x: hidden;
    width: 100vw;
    position: relative;
  }
}
.docs-nav {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.375rem 0.5rem;
  padding-bottom: max(0.375rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to bottom, #000000d9, #000000f2);
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(0%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  order: 2;
  box-shadow: 0 -2px 16px #0000004d;
}
@media (max-width: 768px) {
  .docs-nav {
    padding: 0.5rem;
    padding-bottom: max(4rem, env(safe-area-inset-bottom, 0px));
  }
}
.docs-nav-header,
.docs-logo,
.docs-version {
  display: none;
}
.docs-nav-sections {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 0;
  gap: 0;
  max-width: 100%;
}
.docs-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.375rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #fff9;
  font-size: 0.65rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  overflow: visible;
  min-height: auto;
}
.docs-nav-item:hover {
  color: #ffffffd9;
}
.docs-nav-item:active {
  transform: scale(0.92);
}
.docs-nav-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.docs-nav-item.active {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #fff;
  font-weight: 700;
}
.docs-nav-item.active:before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: 50%;
  transform: translate(-50%);
  width: 32px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 100%
  );
  border-radius: 2px;
  animation: slideInIndicator 0.3s ease-out;
}
@keyframes slideInIndicator {
  0% {
    width: 0;
    opacity: 0;
  }
  to {
    width: 32px;
    opacity: 1;
  }
}
.docs-nav-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.docs-nav-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  opacity: 0.65;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.docs-nav-item.active .docs-nav-icon svg {
  opacity: 1;
  transform: scale(1.05);
}
.docs-nav-label {
  font-size: 0.625rem;
  letter-spacing: 0.01em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.docs-nav-item.active .docs-nav-label {
  opacity: 1;
}
.docs-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 1.25rem calc(4rem + env(safe-area-inset-bottom, 0px));
  padding-top: calc(3.5rem + env(safe-area-inset-top, 0px));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  order: 1;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 768px) {
  .docs-content {
    padding: 1.5rem 1.25rem calc(9rem + env(safe-area-inset-bottom, 0px))
      1.25rem !important;
    padding-top: calc(1.5rem + env(safe-area-inset-top, 0px)) !important;
    display: block;
    overflow-x: hidden;
    max-width: 100vw;
  }
}
.docs-content::-webkit-scrollbar {
  width: 6px;
}
.docs-content::-webkit-scrollbar-track {
  background: transparent;
}
.docs-content::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 3px;
}
.docs-section {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  animation: fadeInSection 0.35s ease-out;
  overflow-x: visible;
}
@media (max-width: 768px) {
  .docs-section {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-x: visible;
  }
}
.docs-video-cover {
  width: calc(100% + 2.5rem);
  margin: 0 -1.25rem 2rem;
  margin-top: calc(-3.5rem - env(safe-area-inset-top, 0px));
  border-radius: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0000004d;
}
.docs-video-cover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120, 255, 200, 0.4) 20%,
    rgba(42, 160, 255, 0.5) 50%,
    rgba(120, 255, 200, 0.4) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px #20c88c4d;
  z-index: 2;
  animation: videoGlow 3s ease-in-out infinite;
}
@keyframes videoGlow {
  0%,
  to {
    opacity: 0.6;
    box-shadow: 0 0 20px #20c88c4d, 0 4px 12px #0003;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 30px #20c88c80, 0 6px 20px #0000004d;
  }
}
.docs-video-cover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.docs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.docs-video-zoomed {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .docs-video-cover {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: calc(-1.5rem - env(safe-area-inset-top, 0px));
    margin-bottom: 1.5rem;
    border-radius: 0;
  }
}
@keyframes fadeInSection {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.docs-h1 {
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  color: #fffffffa;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.docs-h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fffffff2;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.docs-h2:first-child {
  margin-top: 0;
}
.docs-h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffffeb;
  margin: 2rem 0 0.75rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.docs-lead {
  font-size: 1.05rem;
  color: #ffffffbf;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.docs-p {
  font-size: 0.95rem;
  color: #ffffffb3;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.docs-p strong {
  color: #fffffff2;
  font-weight: 600;
}
.docs-quote {
  font-family: Inter, Poppins, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: #fffffff2;
  line-height: 1.5;
  margin: 2.5rem 0 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
  padding: 0 1rem;
}
.docs-callout {
  padding: 1rem 1.125rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  background: #ffffff08;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}
.docs-callout-info {
  background: #64c8ff14;
  border-left-color: #64c8ff80;
}
.docs-callout-warning {
  background: #ffc86414;
  border-left-color: #ffc86480;
}
.docs-callout-success {
  background: #64ff9614;
  border-left-color: #64ff9680;
}
.docs-callout-error {
  background: #ff646414;
  border-left-color: #ff646480;
}
.docs-callout-icon {
  display: none;
}
.docs-callout-content {
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-callout-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.625rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-callout-content p {
  font-size: 0.95rem;
  color: #ffffffb3;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.docs-card {
  padding: 1.25rem;
  background: #ffffff08;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.docs-card:hover {
  background: #ffffff0f;
  border-color: #ffffff26;
  transform: translateY(-2px);
}
.docs-card:active {
  transform: scale(0.98);
  background: #ffffff14;
}
.docs-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.docs-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.5rem;
}
.docs-card-text {
  font-size: 0.95rem;
  color: #ffffffa6;
  line-height: 1.65;
  margin: 0;
}
.docs-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.docs-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.docs-step-number {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffffe6;
}
.docs-step-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.25rem;
}
.docs-step-content p {
  font-size: 0.95rem;
  color: #ffffffa6;
  line-height: 1.65;
  margin: 0;
}
.docs-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}
.docs-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.docs-feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff0d;
  border-radius: 10px;
  color: #fffc;
  font-size: 1.75rem;
}
.docs-feature-content {
  flex: 1;
}
.docs-code-block {
  margin: 1.5rem -0.25rem;
  border-radius: 10px;
  background: #0000004d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.docs-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #0003;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.docs-code-lang {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.docs-code-copy {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fffc;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 32px;
}
.docs-code-copy:hover {
  background: #ffffff26;
  color: #fff;
}
.docs-code-copy:active {
  transform: scale(0.95);
  background: #fff3;
}
.docs-code {
  padding: 1rem;
  margin: 0;
  font-family: SF Mono, Monaco, Inconsolata, Fira Code, Courier New, monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #ffffffd9;
  overflow-x: auto;
}
.docs-formula {
  padding: 1.5rem 1rem;
  background: #ffffff08;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
  text-align: center;
}
.docs-formula code {
  font-family: SF Mono, Monaco, Inconsolata, Courier New, monospace;
  font-size: 0.95rem;
  color: #ffffffe6;
  font-weight: 500;
  word-break: break-word;
}
.docs-list {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
  color: #ffffffb3;
  font-size: 0.95rem;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-list li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #fff6;
  font-weight: 300;
}
.docs-list strong {
  color: #fffffff2;
  font-weight: 600;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.docs-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.docs-numbered-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem;
  background: #ffffff05;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.docs-numbered-badge {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff1a;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffffe6;
}
.docs-numbered-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.25rem;
}
.docs-numbered-item p {
  font-size: 0.95rem;
  color: #ffffffa6;
  line-height: 1.6;
  margin: 0;
}
.docs-table {
  margin: 1.5rem -0.25rem;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.docs-table table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.docs-table th {
  text-align: left;
  padding: 1rem 0.875rem;
  background: #0000004d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #ffffffe6;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.docs-table td {
  padding: 1rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffffb3;
}
.docs-table tbody tr:last-child td {
  border-bottom: none;
}
.docs-table tbody tr {
  background: #ffffff03;
  transition: background 0.2s ease;
}
.docs-table tbody tr:hover {
  background: #ffffff0a;
}
.docs-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #ffffff1a;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffffe6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.docs-badge-blue {
  background: #6496ff26;
  color: #96c8ff;
}
.docs-badge-purple {
  background: #c864ff26;
  color: #dc96ff;
}
.docs-h2 .docs-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.625rem;
  vertical-align: middle;
}
.docs-reward-card {
  padding: 1.5rem;
  background: #ffffff05;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}
.docs-reward-card:hover {
  background: #ffffff0d;
  border-color: #ffffff26;
  transform: translateY(-2px);
}
.docs-reward-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.docs-reward-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.625rem;
}
.docs-reward-card p {
  font-size: 0.95rem;
  color: #ffffffa6;
  line-height: 1.65;
  margin: 0;
}
.docs-tech-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.docs-tech-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem;
  background: #ffffff08;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.docs-tech-label {
  font-size: 0.95rem;
  color: #fff9;
  font-weight: 500;
}
.docs-tech-value {
  font-size: 0.975rem;
  color: #fffffff2;
  font-weight: 600;
}
.docs-security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.docs-security-item {
  padding: 1.5rem;
  background: #ffffff05;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
}
.docs-security-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.docs-security-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fffffff2;
  margin: 0 0 0.625rem;
}
.docs-security-item p {
  font-size: 0.95rem;
  color: #ffffffa6;
  line-height: 1.65;
  margin: 0;
}
.docs-footer-meta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.docs-meta-text {
  font-size: 0.95rem;
  color: #ffffff8c;
  line-height: 1.9;
  margin: 0;
}
.docs-meta-text strong {
  color: #fffc;
  font-weight: 600;
}
