* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

.kx9d2-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.t2n5m-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.x9k2m-header {
  background: #1b1c1d;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.w7m3k-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.q2m8x-logo-link {
  display: block;
}

.n7k3m-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.r8m2k-nav {
  display: flex;
  flex: 1;
}

.s3n7q-nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.t9k4m-nav-item {
  margin: 0;
}

.v2n8k-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.v2n8k-nav-link:hover {
  color: #e50539;
}

.w5m3q-nav-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.z4n7m-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.a8k2n-lang-selector {
  position: relative;
}

.b3m9k-lang-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.b3m9k-lang-button:hover {
  border-color: #e50539;
  background: rgba(229, 5, 57, 0.1);
}

.c7n4q-flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.d2k8m-lang-text {
  font-size: 14px;
  font-weight: 600;
}

.e9m3n-arrow-icon {
  width: 14px;
  height: 14px;
}

.f4k7m-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1b1c1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.f4k7m-lang-dropdown.m8k3n-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.g8n2q-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #e0e0e0;
  text-decoration: none;
  transition: background 0.3s ease;
}

.g8n2q-lang-option:hover {
  background: rgba(229, 5, 57, 0.1);
}

.h5m9k-online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 169, 9, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(40, 169, 9, 0.3);
}

.i2n7q-online-icon {
  width: 12px;
  height: 12px;
  animation: q9m7k-pulse 2s infinite;
}

@keyframes q9m7k-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.j9k3m-online-text {
  font-size: 13px;
  color: #e0e0e0;
}

.k4n8q-cta-buttons {
  display: flex;
  gap: 10px;
}

.j9p2m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.j9p2m-btn-green {
  background: #28a909;
  color: #ffffff;
}

.j9p2m-btn-green:hover {
  background: #229c07;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 169, 9, 0.4);
}

.j9p2m-btn-red {
  background: #e50539;
  color: #ffffff;
}

.j9p2m-btn-red:hover {
  background: #cc0431;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 5, 57, 0.4);
}

.j9p2m-btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.j9p2m-btn-full {
  width: 100%;
}

.l7m2k-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.m3n8q-burger-line {
  width: 25px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.l7m2k-burger.n8q3m-active .m3n8q-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.l7m2k-burger.n8q3m-active .m3n8q-burger-line:nth-child(2) {
  opacity: 0;
}

.l7m2k-burger.n8q3m-active .m3n8q-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.p8m3l-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0;
  overflow: hidden;
}

.p8m3l-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/banner.png") center / cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.v4k2n-hero-slider {
  position: relative;
  z-index: 1;
}

.q7w1x-slide {
  display: none;
  animation: t8m4k-fadeIn 0.8s ease;
}

.q7w1x-slide.s3d9t-active {
  display: block;
}

@keyframes t8m4k-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.r8k4p-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.y6m2d-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.z1n8k-hero-text {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.b5q3w-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.n4x7q-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.m2k8p-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.m2k8p-dot.w5t1r-active {
  background: #e50539;
  transform: scale(1.3);
}

.l3v9z-main {
  flex: 1;
  padding: 60px 0;
}

.x5r2q-section {
  margin-bottom: 60px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.a8m4t-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.a8m4t-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e50539, #28a909);
  border-radius: 2px;
}

.h7d4n-content-section {
  margin-bottom: 60px;
}

.f2w8k-text-content {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}

.f2w8k-text-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.f2w8k-text-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 12px;
}

.f2w8k-text-content p {
  margin-bottom: 15px;
  color: #d0d0d0;
}

.f2w8k-text-content ul,
.f2w8k-text-content ol {
  margin: 15px 0 15px 25px;
  color: #d0d0d0;
}

.f2w8k-text-content li {
  margin-bottom: 10px;
}

.f2w8k-text-content table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  background: #0e0e0e;
  border-radius: 8px;
  overflow: hidden;
}

.f2w8k-text-content table th,
.f2w8k-text-content table td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.f2w8k-text-content table th {
  background: #1b1c1d;
  font-weight: 600;
  color: #ffffff;
}

.f2w8k-text-content table td {
  color: #d0d0d0;
}

.f2w8k-text-content a {
  color: #e50539;
  text-decoration: none;
  transition: color 0.3s ease;
}

.f2w8k-text-content a:hover {
  color: #28a909;
  text-decoration: underline;
}

.c6n9p-pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.d3k7m-pros-column,
.d3k7m-cons-column {
  background: #0e0e0e;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.d3k7m-pros-column {
  border-top: 4px solid #28a909;
}

.d3k7m-cons-column {
  border-top: 4px solid #e50539;
}

.e9w2x-column-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.g4t8n-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.d3k7m-pros-column .g4t8n-icon {
  color: #28a909;
}

.d3k7m-cons-column .g4t8n-icon {
  color: #e50539;
}

.k2p7v-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.k2p7v-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #d0d0d0;
  line-height: 1.6;
}

.k2p7v-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #28a909;
}

.d3k7m-cons-column .k2p7v-list li::before {
  content: "✗";
  color: #e50539;
}

.s7n3m-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.w8k4t-screenshot-item {
  background: #0e0e0e;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.w8k4t-screenshot-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(229, 5, 57, 0.3);
}

.q2m9x-screenshot-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.r5t8n-screenshot-caption {
  padding: 15px;
  text-align: center;
  color: #e0e0e0;
  font-size: 15px;
  font-weight: 500;
}

.v3n8m-app-content {
  display: grid;
  gap: 30px;
}

.t9k2p-app-table {
  width: 100%;
  background: #0e0e0e;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: collapse;
}

.t9k2p-app-table td {
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d0d0d0;
}

.t9k2p-app-table td:first-child {
  font-weight: 600;
  color: #ffffff;
  width: 40%;
}

.d8m5k-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.n7q3w-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #e50539, #cc0431);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 5, 57, 0.3);
}

.n7q3w-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 5, 57, 0.5);
}

.p4k8m-app-icon {
  width: 24px;
  height: 24px;
}

.b4n7k-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.m9q2x-bonus-card {
  background: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.m9q2x-bonus-card:hover {
  border-color: #28a909;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(40, 169, 9, 0.2);
}

.w5k8t-bonus-header {
  background: linear-gradient(135deg, #1b1c1d, #2a2b2d);
  padding: 30px;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p3n7m-casino-logo {
  max-width: 160px;
  height: auto;
}

.r2k9w-bonus-body {
  padding: 30px;
}

.s8m4n-bonus-amount {
  font-size: 42px;
  font-weight: 800;
  color: #28a909;
  text-align: center;
  margin-bottom: 10px;
}

.t5q7k-bonus-desc {
  text-align: center;
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 20px;
  font-weight: 600;
}

.g7n2k-demo-wrapper {
  display: grid;
  gap: 30px;
}

.k4m8q-demo-container {
  background: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}

.w9t3n-demo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.p5k2m-demo-text {
  text-align: center;
}

.p5k2m-demo-text p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #d0d0d0;
}

.r8m3k-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.n4q7w-review-card {
  background: #0e0e0e;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.n4q7w-review-card:hover {
  border-color: #e50539;
  box-shadow: 0 8px 25px rgba(229, 5, 57, 0.2);
}

.t2k9m-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.s6n3p-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.w9k2t-review-meta {
  flex: 1;
}

.m7q4n-review-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.p3k8m-review-stars {
  display: flex;
  gap: 3px;
}

.x4m9n-star {
  width: 16px;
  height: 16px;
  color: #ffc107;
}

.q8n2m-review-text {
  color: #d0d0d0;
  line-height: 1.7;
  font-size: 15px;
}

.v7m3k-review-form {
  background: #0e0e0e;
  border-radius: 12px;
  padding: 35px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.z2n8q-form-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

.w4k9m-form {
  max-width: 600px;
  margin: 0 auto;
}

.p8n2q-form-group {
  margin-bottom: 20px;
}

.t5m7k-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.r3k8n-input,
.r3k8n-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.r3k8n-input:focus,
.r3k8n-textarea:focus {
  outline: none;
  border-color: #e50539;
  background: #0e0e0e;
}

.r3k8n-textarea {
  resize: vertical;
  min-height: 120px;
}

.s9m4k-form-success {
  background: rgba(40, 169, 9, 0.1);
  border: 2px solid #28a909;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.s9m4k-form-success p {
  color: #28a909;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.n9k3m-footer {
  background: #1b1c1d;
  padding: 50px 0 20px;
  margin-top: auto;
}

.p7m4k-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.r8k3n-footer-logo {
  display: block;
  margin-bottom: 20px;
}

.s4m7q-footer-logo-img {
  height: 35px;
  width: auto;
}

.t9n2k-footer-desc {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.7;
}

.v3k8m-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.w7n2q-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.w7n2q-footer-list li {
  margin-bottom: 12px;
}

.x4m9k-footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.x4m9k-footer-link:hover {
  color: #e50539;
}

.y8m3k-author-info {
  color: #b0b0b0;
  font-size: 14px;
}

.z2n7q-author-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.a5m9k-author-role {
  margin-bottom: 10px;
}

.b3k8m-author-link {
  color: #e50539;
  text-decoration: none;
  transition: color 0.3s ease;
}

.b3k8m-author-link:hover {
  color: #28a909;
}

.c9m2k-footer-payments {
  margin-bottom: 40px;
  text-align: center;
}

.d4n7m-payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.e8k3q-payment-logo {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.e8k3q-payment-logo:hover {
  opacity: 1;
}

.f7m4k-footer-licenses {
  margin-bottom: 40px;
}

.g2n9m-licenses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.h8k3q-license-logo {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.h8k3q-license-logo:hover {
  opacity: 1;
}

.i4m7k-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.j9n2q-copyright,
.k3m8n-disclaimer {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.n8m2q-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, #1b1c1d, #2a2b2d);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border: 2px solid #28a909;
  animation: r4m7k-slideIn 0.6s ease;
}

@keyframes r4m7k-slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.k3p7w-widget-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m5n9k-widget-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.q7k2m-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.w4n8p-widget-subtitle {
  font-size: 14px;
  color: #d0d0d0;
}

@media (max-width: 1024px) {
  .r8m2k-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #1b1c1d;
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .r8m2k-nav.n8q3m-active {
    left: 0;
  }

  .s3n7q-nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .t9k4m-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .v2n8k-nav-link {
    padding: 15px 0;
    display: flex;
    width: 100%;
  }

  .l7m2k-burger {
    display: flex;
  }

  .k4n8q-cta-buttons {
    display: flex;
  }

  .h5m9k-online-counter {
    display: none;
  }
}

@media (max-width: 768px) {
  .y6m2d-hero-title {
    font-size: 32px;
  }

  .z1n8k-hero-text {
    font-size: 16px;
  }

  .a8m4t-section-title {
    font-size: 26px;
  }

  .x5r2q-section {
    padding: 25px 20px;
  }

  .c6n9p-pros-cons-grid,
  .s7n3m-screenshots-grid,
  .b4n7k-bonuses-grid,
  .r8m3k-reviews-grid {
    grid-template-columns: 1fr;
  }

  .n8m2q-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 15px;
  }

  .k3p7w-widget-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .w7m3k-header-inner {
    flex-wrap: wrap;
  }

  .z4n7m-header-actions {
    order: -1;
    width: 100%;
    justify-content: space-between;
  }

  .a8k2n-lang-selector {
    order: 1;
  }
}

@media (max-width: 480px) {
  .y6m2d-hero-title {
    font-size: 26px;
  }

  .b5q3w-hero-buttons {
    flex-direction: column;
  }

  .j9p2m-btn {
    width: 100%;
  }

  .d8m5k-app-buttons {
    flex-direction: column;
  }

  .n7q3w-app-btn {
    width: 100%;
  }
}

.u7m3k-unused-element {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.v2n8q-unused-class {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

.w9k4m-hidden-element {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
