/*! sportcalendar © 2026 Reda Jordan Benjamin Bouchaib. All rights reserved. Proprietary and confidential — unauthorized copying, modification, or distribution is prohibited. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #212326;
  color: #ccc;
  fill: #ccc;
  font-family: Arial, sans-serif;
  display: grid;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  user-select: none;
  touch-action: manipulation;
  scrollbar-width: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
}

input,
textarea,
select,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  -webkit-touch-callout: default;
}

button {
  -webkit-appearance: none;
  appearance: none;
}

[hidden] {
  display: none !important;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

[data-js="button"][data-busy],
[data-js="publish"][data-busy],
[data-js="logout"][data-busy] {
  position: relative;
  color: transparent;
  pointer-events: none;
}

[data-js="button"][data-busy]::after,
[data-js="publish"][data-busy]::after,
[data-js="logout"][data-busy]::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid #212326;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.side {
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

.side.left {
  border-right: 1px solid #333;
}

body {
  grid-template-columns: 200px 1fr;
}

@media (max-width: 900px) {
  body {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 800px) {
  body {
    grid-template-columns: 0 1fr;
  }
}

.middle {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  height: 100%;
}

.middle > section {
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-width: none;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.middle > section:has(> [data-js] > [data-js]:not([hidden]) > [data-js="footer"]) {
  padding-bottom: 0;
}

[data-js="header"]:not(:has(> [data-js="banner"]:first-child)) {
  padding-top: env(safe-area-inset-top);
}

@media (display-mode: browser) {
  body {
    height: 100dvh;
  }
}


.nav-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}

.nav-icon > [data-js="notification"] {
  position: absolute;
  top: -2px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 20px;
  background: #FFAA00;
  color: #212326;
  font-size: 10px;
  font-weight: 700;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  fill: #ccc;
}

.active {
  color: #FFAA00;
}

.active svg {
  fill: #FFAA00;
}

.nav-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.menu {
  display: grid;
  justify-items: center;
  height: 100vh;
  position: sticky;
  top: 0;
}

.nav-item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .menu .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
  }

  .menu [data-js="text"] {
    display: none;
  }
}

.navbar {
  display: none;
}

@media (display-mode: browser) {
  .menu {
    height: 100dvh;
  }
}

@media (max-width: 800px) {
  .menu {
    display: none;
  }

  .navbar {
    border-top: 1px solid #333;
    background-color: #212326;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    height: calc(50px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 10;
  }

  .middle > section {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .navbar [data-js="text"] {
    display: none;
  }
}

@media (pointer: coarse) {
  body:has(input:focus, textarea:focus) .navbar {
    display: none;
  }
}

.middle > section {
  position: relative;
}

.settings {
  position: absolute;
  top: calc(5px + env(safe-area-inset-top));
  right: 5px;
  z-index: 100;
  transition: opacity 0.25s ease;
}

.settingsbutton {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.settingsbutton svg {
  width: 30px;
  height: 30px;
  fill: #ccc;
}

.settingsbutton.active svg {
  fill: #FFAA00;
}

.settingsdropdown {
  position: absolute;
  top: 45px;
  right: 7px;
  width: fit-content;
  background: #212326;
  border: 1px solid #333;
  border-radius: 8px;
  z-index: 100;
  overflow: hidden;
}

.settingsitem {
  padding: 10px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #ccc;
  font: inherit;
  text-align: right;
  white-space: nowrap;
}

.settingsitem:hover {
  background: #333;
}

.settingsitem[data-busy]::after {
  border-color: #ccc;
  border-top-color: transparent;
}

@media (display-mode: standalone) and (orientation: portrait) {
  .settings {
    top: calc(env(safe-area-inset-top) - 7px);
  }
}

[data-js="outage"][hidden] {
  display: none !important;
}

body > [data-js="outage"] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 210;
}

[data-js="details"] > [data-js="outage"] {
  display: grid;
  place-items: center;
  padding: 18px 0 6px;
}

[data-js="outage"] .panel {
  width: calc(100% - 48px);
  max-width: 360px;
  background: #212326;
  color: #ccc;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

[data-js="outage"] .spin {
  display: grid;
  place-items: center;
}

[data-js="outage"] .spin svg {
  width: 44px;
  height: 44px;
  fill: #9a9a9a;
  animation: spin 1s linear infinite;
}

[data-js="outage"] .message {
  font-size: 16px;
  line-height: 1.4;
}

.confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.confirm-overlay[hidden] {
  display: none !important;
}

.confirm-dialog {
  background: #212326;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
}

.confirm-message {
  color: #ccc;
  font-size: 16px;
  margin: 0 0 20px 0;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-cancel, .confirm-ok {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.confirm-cancel {
  background: #333;
  color: #ccc;
}

.confirm-ok {
  background: #e53935;
  color: #fff;
}

.splash {
  position: fixed;
  inset: 0;
  background-color: #212326;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.splash[hidden] {
  display: none !important;
}

.splash.fade {
  opacity: 0;
}

.splash-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 50%;
}

.splash-logo {
  animation: splash-bounce 1s ease-in-out infinite;
}

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

[data-js="return"] {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 6px);
  left: 6px;
  width: 48px;
  height: 48px;
  margin-bottom: -48px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
}

[data-js="return"] + [data-js="header"] > :first-child:not([data-js="banner"]) {
  padding-left: 40px;
}

[data-js="return"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

[data-js="return"] svg {
  position: relative;
  width: 18px;
  height: 18px;
  fill: #fff;
}

.calendar {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.36);
}

.calendar[hidden] {
  display: none !important;
}

.calendar .frame {
  width: min(360px, 100%);
  background: #212326;
  color: #ccc;
  border: 1px solid #333;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 20px;
  display: grid;
  gap: 18px;
}

.calendar .top,
.calendar .foot,
.calendar .names,
.calendar .days {
  display: grid;
}

.calendar .top,
.calendar .foot {
  align-items: center;
  gap: 12px;
}

.calendar .top {
  grid-template-columns: repeat(3, 1fr);
}

.calendar .foot {
  grid-template-columns: repeat(2, 1fr);
}

.calendar .foot [data-clear] {
  grid-column: 1;
  justify-self: start;
}

.calendar .foot [data-done] {
  grid-column: 2;
  justify-self: end;
}

.calendar .label {
  text-align: center;
  font-size: 17px;
  text-transform: capitalize;
}

.calendar .nav,
.calendar .text,
.calendar .day {
  border: 1px solid #333;
  background: transparent;
  color: inherit;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
}

.calendar .nav,
.calendar .text {
  min-height: 42px;
  padding: 0 12px;
}

.calendar .nav {
  display: grid;
  place-items: center;
}

.calendar .nav svg {
  width: 18px;
  height: 18px;
}

.calendar .nav:first-child {
  justify-self: start;
}

.calendar .nav:last-child {
  justify-self: end;
}

.calendar .nav:hover,
.calendar .text:hover,
.calendar .day:hover {
  border-color: #FFAA00;
}

.calendar .names,
.calendar .days {
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar .names {
  color: #ccc;
  font-size: 13px;
  text-align: center;
}

.calendar .gap {
  min-height: 44px;
}

.calendar .day {
  min-height: 44px;
}

.calendar .day:disabled {
  opacity: 0.45;
  cursor: default;
}

.calendar .day.today {
  border-color: color-mix(in srgb, #FFAA00 80%, #212326);
}

.calendar .day.pick {
  background: color-mix(in srgb, #FFAA00 22%, #212326);
  color: #ccc;
  border-color: color-mix(in srgb, #FFAA00 45%, #333);
}

@media (max-width: 480px) {
  .calendar {
    padding: 16px;
  }

  .calendar .frame {
    width: 100%;
    border-radius: 20px;
  }
}

.select {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.36);
}

.select[hidden] {
  display: none !important;
}

.select .frame {
  width: min(420px, 100%);
  max-height: min(70vh, 640px);
  overflow: hidden;
  background: #212326;
  color: #ccc;
  border: 1px solid #333;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 20px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.select .top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.select .label {
  font-size: 17px;
  text-transform: capitalize;
}

.select .text,
.select .item,
[data-js="create"] label > .row > .open,
[data-js="create"] label > .hint > .item {
  border: 1px solid #333;
  background: transparent;
  color: inherit;
  border-radius: 12px;
  font: inherit;
}

.select .text,
[data-js="create"] label > .row > .open,
[data-js="create"] label > .hint > .item {
  cursor: pointer;
}

.select .text,
[data-js="create"] label > .row > .open {
  min-height: 44px;
  padding: 0 12px;
}

[data-js="create"] label > .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

[data-js="create"] label > .row > input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

[data-js="create"] label > .row > .open {
  width: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
}

[data-js="create"] label > .row > .open svg {
  width: 18px;
  height: 18px;
}

[data-js="create"] label > .hint {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 16px;
}

[data-js="create"] label > .hint > .item,
.select .item {
  padding: 12px;
  text-align: left;
}

.select .text:hover,
.select .item:hover,
[data-js="create"] label > .row > .open:hover,
[data-js="create"] label > .hint > .item:hover {
  border-color: #FFAA00;
}

.select .list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #333 #212326;
}

.select .list::-webkit-scrollbar {
  width: 6px;
}

.select .list::-webkit-scrollbar-track {
  background: #212326;
}

.select .list::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 999px;
}

.select .item.pick {
  background: color-mix(in srgb, #FFAA00 22%, #212326);
  border-color: color-mix(in srgb, #FFAA00 45%, #333);
}

.select .empty {
  margin: 0;
  color: #ccc;
}

@media (max-width: 480px) {
  .select {
    padding: 16px;
  }

  .select .frame {
    width: 100%;
    border-radius: 20px;
  }
}

[data-js="create"] label.upload {
  gap: 12px;
}

[data-js="create"] label.upload > .upload {
  display: grid;
  width: 100%;
}

[data-js="create"] label.upload > .upload > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

[data-js="create"] label.upload > .upload > .pick {
  width: 100%;
  box-sizing: border-box;
  height: 200px;
  padding: 20px;
  border: 2px dashed #333;
  border-radius: 18px;
  background: #212326;
  filter: brightness(1.25);
  color: #ccc;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

[data-js="create"] label.upload > .upload > .pick.live {
  border-color: #FFAA00;
  transform: translateY(-1px);
}
  [data-js="create"] label.upload > .upload > .pick:hover {
    border-color: #FFAA00;
    transform: translateY(-1px);
  }

@media (min-width: 800px) {
[data-js="create"] label.upload > .upload > .pick:active {
  transform: translateY(2px) scale(0.98);
  filter: brightness(1);
  -webkit-tap-highlight-color: transparent;
}
}

[data-js="create"] label.upload > .upload > .pick > .preview {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-js="create"] label.upload > .upload > .pick > .preview svg {
  width: 28px;
  height: 28px;
}

[data-js="create"] label.upload > .upload > .pick > .copy {
  font-size: 16px;
  font-weight: 700;
}

[data-js="create"] label.upload > .upload > .pick > .name {
  max-width: 100%;
  font-size: 13px;
  color: #ccc;
  word-break: break-word;
}

[data-js="create"] label.upload > .upload > .pick > .name:empty {
  display: none;
}

[data-js="create"] label.upload > .upload > .pick.ready {
  border-style: solid;
  color: #fff;
}

[data-js="create"] label.upload > .upload > .pick.ready > .preview {
  background: rgba(0, 0, 0, 0.24);
}

[data-js="create"] label.upload > .upload > .pick.ready > .name {
  color: rgba(255, 255, 255, 0.88);
}

[data-js="banner"].morphing {
  transform-origin: top left;
  animation: banner-morph 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes banner-morph {
  from { transform: translate(var(--dx), var(--dy)) scale(var(--sx), var(--sy)); }
  to { transform: none; }
}

.entering > *:not([data-js="header"]):not([data-js="return"]) {
  animation: detail-child-in 240ms ease 100ms both;
}

@keyframes detail-child-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

[data-js="list"].morph > [data-js="card"] {
  transition: transform 150ms ease;
}

[data-js="list"].morph > [data-js="card"].pressed {
  transform: scale(0.92);
}

[data-js="home"] > [data-js="header"] > [data-js="banner"] {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin: 0px 0px 24px 0px;
}

[data-js="home"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 20%;
  object-fit: cover;
  display: block;
}

[data-js="home"] > [data-js="header"] > [data-js="banner"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

[data-js="home"] > [data-js="header"] > [data-js="banner"].skeleton [data-js="image"] {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

[data-js="home"] > [data-js="header"] > [data-js="banner"] [data-js="image"].loaded {
  opacity: 1;
  transform: none;
}

[data-js="home"] > [data-js="header"] > [data-js="banner"] [data-js="full"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transform: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

[data-js="home"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="home"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="home"] > [data-js="header"] > [data-js="description"] {
  margin: 12px 32px 12px 32px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1.6;
}

[data-js="home"] > [data-js="header"] > [data-js="description"]:first-of-type {
  margin-top: 16px;
}

[data-js="home"] > [data-js="header"] > [data-js="description"]:last-of-type {
  margin-bottom: 16px;
}

[data-js="home"] > [data-js="header"] > [data-js="instagram"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin: 10px 25px 20px 25px;
  border-radius: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  text-decoration: none;
}

[data-js="home"] > [data-js="header"] > [data-js="instagram"]:not(.with-text) {
  width: 50px;
}

[data-js="home"] > [data-js="header"] > [data-js="instagram"].with-text {
  padding: 0px 15px 0px 15px;
  color: white;
  font-weight: bold;
  gap: 10px;
}

[data-js="home"] > [data-js="header"] > [data-js="instagram"] svg {
  width: 35px;
  height: 35px;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0px 0px 24px 0px;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  position: static;
  inset: 0;
  width: 100%;
  height: auto;
  object-position: center 20%;
  object-fit: cover;
  display: block;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

[data-js="item"] > [data-js="header"] > [data-js="banner"].skeleton [data-js="image"] {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] [data-js="image"].loaded {
  opacity: 1;
  transform: none;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] [data-js="full"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transform: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] {
  align-items: center;
}

[data-js="item"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  width: auto;
  max-width: 100%;
  max-height: 70dvh;
}

[data-js="months"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="months"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"] {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0px 0px 24px 0px;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 20%;
  object-fit: cover;
  display: block;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

[data-js="month"] > [data-js="header"] > [data-js="banner"].skeleton [data-js="image"] {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"] [data-js="image"].loaded {
  opacity: 1;
  transform: none;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"] [data-js="full"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transform: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}

[data-js="month"] > [data-js="header"] > [data-js="banner"] > [data-js="text"]:nth-of-type(1) {
  position: relative;
  align-self: flex-start;
  max-width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
  padding: 0px 0px 0px 0px;
  margin: auto 0px 16px 16px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  font-weight: 700;
  z-index: 3;
}

[data-js="month"] > [data-js="header"] > [data-js="name"] {
  margin: 0px 24px 20px 24px;
  font-family: inherit;
  font-size: 22px;
}

[data-js="month"] > [data-js="header"] > [data-js="description"] {
  margin: 12px 32px 12px 32px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1.6;
}

[data-js="month"] > [data-js="header"] > [data-js="description"]:first-of-type {
  margin-top: 16px;
}

[data-js="month"] > [data-js="header"] > [data-js="description"]:last-of-type {
  margin-bottom: 16px;
}

[data-js="allsports"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="allsports"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="sport"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="sport"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="sport"] > [data-js="header"] > [data-js="name"] {
  margin: 0px 24px 20px 24px;
  font-family: inherit;
  font-size: 22px;
}

[data-js="allcities"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="allcities"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="city"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px 12px 24px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="city"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: 20px;
}

[data-js="submit"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px -8px 24px;
  padding: 10px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="submit"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: -8px;
}

[data-js="submit"] > [data-js="header"] > [data-js="description"] {
  margin: 12px 32px 12px 32px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1.6;
}

[data-js="submit"] > [data-js="header"] > [data-js="description"]:first-of-type {
  margin-top: 16px;
}

[data-js="submit"] > [data-js="header"] > [data-js="description"]:last-of-type {
  margin-bottom: 16px;
}

[data-js="submit"] > [data-js="header"] > [data-js="action"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 24px - 24px);
  margin: 20px 24px 50px 24px;
  padding: 14px 18px 14px 18px;
  border: none;
  border-radius: 8px;
  background: #FFAA00;
  color: #212326;
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

[data-js="add"] > [data-js="header"] > [data-js="heading"] {
  margin: 0px 24px -8px 24px;
  padding: 10px 0px 0px 0px;
  font-family: inherit;
  font-size: 24px;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  line-height: normal;
}

[data-js="add"] > [data-js="header"] > [data-js="heading"]:first-child {
  margin-top: 20px;
  margin-bottom: -8px;
}

[data-js="add"] > [data-js="header"] > [data-js="description"] {
  margin: 12px 32px 12px 32px;
  padding: 0px 0px 0px 0px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1.6;
}

[data-js="add"] > [data-js="header"] > [data-js="description"]:first-of-type {
  margin-top: 16px;
}

[data-js="add"] > [data-js="header"] > [data-js="description"]:last-of-type {
  margin-bottom: 16px;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0px 0px 24px 0px;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  position: static;
  inset: 0;
  width: 100%;
  height: auto;
  object-position: center 20%;
  object-fit: cover;
  display: block;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

[data-js="review"] > [data-js="header"] > [data-js="banner"].skeleton [data-js="image"] {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] [data-js="image"].loaded {
  opacity: 1;
  transform: none;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] [data-js="full"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transform: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] {
  align-items: center;
}

[data-js="review"] > [data-js="header"] > [data-js="banner"] > [data-js="image"] {
  width: auto;
  max-width: 100%;
  max-height: 70dvh;
}

[data-js="submit"] > [data-js="waiting"] {
  position: relative;
  background: transparent;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="waiting"].columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: start;
}

[data-js="submit"] > [data-js="waiting"].columns > * {
  grid-column: 1;
  min-width: 0;
}

[data-js="submit"] > [data-js="waiting"].columns > [data-js="frame"] {
  grid-column: 2;
  grid-row: 1 / span 99;
  align-self: center;
}

@media (max-width: 1024px) {
  [data-js="submit"] > [data-js="waiting"].columns {
    display: block;
  }

  [data-js="submit"] > [data-js="waiting"].columns > [data-js="frame"] {
    margin-inline: auto;
  }
}

[data-js="submit"] > [data-js="waiting"] [data-js="tag"] {
  display: block;
  width: fit-content;
  justify-self: start;
  text-align: start;
  font-size: 10px;
  font-weight: inherit;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  border: none;
  padding: 4px 12px 4px 12px;
  margin: 0px 0px 20px 0px;
}





[data-js="submit"] > [data-js="waiting"] [data-js="divider"] {
  width: 60px;
  height: 1px;
  justify-self: start;
  background: currentColor;
  margin: 20px 0px 20px 0px;
}

[data-js="submit"] > [data-js="waiting"] [data-js="quote"] {
  border-left: 2px solid currentColor;
  padding: 16px 24px;
  margin: 32px 0px 32px 0px;
  font-family: inherit;
  font-weight: inherit;
  font-style: italic;
  color: inherit;
  line-height: 1.6;
}

[data-js="submit"] > [data-js="waiting"] [data-js="button"] {
  display: block;
  width: fit-content;
  justify-self: start;
  background: none;
  cursor: pointer;
  border: 1px solid currentColor;
  padding: 14px 36px;
  font-family: inherit;
  font-weight: inherit;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  margin: 12px 0px 0px 0px;
}

[data-js="submit"] > [data-js="waiting"] [data-js="row"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="waiting"] [data-js="whatsapp"],
[data-js="submit"] > [data-js="waiting"] [data-js="instagram"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
}

[data-js="submit"] > [data-js="waiting"] [data-js="whatsapp"] {
  background: #25d366;
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="waiting"] [data-js="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="waiting"] [data-js="whatsapp"] svg,
[data-js="submit"] > [data-js="waiting"] [data-js="instagram"] svg {
  width: 32px;
  height: 32px;
  display: block;
}

[data-js="submit"] > [data-js="waiting"] [data-js="frame"] {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0px 0px 0px 0px;
}



[data-js="submit"] > [data-js="waiting"] [data-js="photo"] {
  display: block;
  width: 100%;
  height: auto;
}



[data-js="submit"] > [data-js="published"] {
  position: relative;
  background: transparent;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="published"].columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: start;
}

[data-js="submit"] > [data-js="published"].columns > * {
  grid-column: 1;
  min-width: 0;
}

[data-js="submit"] > [data-js="published"].columns > [data-js="frame"] {
  grid-column: 2;
  grid-row: 1 / span 99;
  align-self: center;
}

@media (max-width: 1024px) {
  [data-js="submit"] > [data-js="published"].columns {
    display: block;
  }

  [data-js="submit"] > [data-js="published"].columns > [data-js="frame"] {
    margin-inline: auto;
  }
}

[data-js="submit"] > [data-js="published"] [data-js="tag"] {
  display: block;
  width: fit-content;
  justify-self: start;
  text-align: start;
  font-size: 10px;
  font-weight: inherit;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  border: none;
  padding: 4px 12px 4px 12px;
  margin: 0px 0px 20px 0px;
}





[data-js="submit"] > [data-js="published"] [data-js="divider"] {
  width: 60px;
  height: 1px;
  justify-self: start;
  background: currentColor;
  margin: 20px 0px 20px 0px;
}

[data-js="submit"] > [data-js="published"] [data-js="quote"] {
  border-left: 2px solid currentColor;
  padding: 16px 24px;
  margin: 32px 0px 32px 0px;
  font-family: inherit;
  font-weight: inherit;
  font-style: italic;
  color: inherit;
  line-height: 1.6;
}

[data-js="submit"] > [data-js="published"] [data-js="button"] {
  display: block;
  width: fit-content;
  justify-self: start;
  background: none;
  cursor: pointer;
  border: 1px solid currentColor;
  padding: 14px 36px;
  font-family: inherit;
  font-weight: inherit;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  margin: 12px 0px 0px 0px;
}

[data-js="submit"] > [data-js="published"] [data-js="row"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="published"] [data-js="whatsapp"],
[data-js="submit"] > [data-js="published"] [data-js="instagram"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
}

[data-js="submit"] > [data-js="published"] [data-js="whatsapp"] {
  background: #25d366;
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="published"] [data-js="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  margin: 0px 0px 0px 0px;
}

[data-js="submit"] > [data-js="published"] [data-js="whatsapp"] svg,
[data-js="submit"] > [data-js="published"] [data-js="instagram"] svg {
  width: 32px;
  height: 32px;
  display: block;
}

[data-js="submit"] > [data-js="published"] [data-js="frame"] {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0px 0px 0px 0px;
}



[data-js="submit"] > [data-js="published"] [data-js="photo"] {
  display: block;
  width: 100%;
  height: auto;
}



[data-js="home"] > [data-js="heading"] {
  margin: 24px 16px 16px 16px;
  font-family: inherit;
  font-size: 20px;
}

[data-js="home"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="home"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="home"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="months"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 2 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="months"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 2;
  column-gap: 12px;
}

[data-js="months"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="month"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="month"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="month"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="allsports"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="allsports"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="allsports"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="sport"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="sport"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="sport"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="allcities"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="allcities"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="allcities"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="city"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="city"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="city"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="heading"] {
  margin: 24px 16px 16px 16px;
  font-family: inherit;
  font-size: 20px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="heading"] > [data-js="count"] {
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 20px;
  background: #FFAA00;
  color: #212326;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="heading"] > [data-js="count"]:empty {
  display: none;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"]:not(:empty) ~ [data-js="empty"] {
  display: none;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="empty"] {
  margin: 0px 16px 60px 24px;
  font-size: 14px;
  font-style: italic;
  color: #f5efe040;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="submit"] > [data-js="published"] > [data-js="heading"] {
  margin: 24px 16px 16px 16px;
  font-family: inherit;
  font-size: 20px;
}

[data-js="submit"] > [data-js="published"] > [data-js="heading"] > [data-js="count"] {
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 20px;
  background: #FFAA00;
  color: #212326;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

[data-js="submit"] > [data-js="published"] > [data-js="heading"] > [data-js="count"]:empty {
  display: none;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"]:not(:empty) ~ [data-js="empty"] {
  display: none;
}

[data-js="submit"] > [data-js="published"] > [data-js="empty"] {
  margin: 0px 16px 60px 24px;
  font-size: 14px;
  font-style: italic;
  color: #f5efe040;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, 100% / 3 - 12px), 1fr));
  gap: 12px;
  margin: 0px 0px 0px 0px;
  padding: 0px 16px 0px 16px;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"].adapt {
  display: block;
  column-width: 280px;
  column-count: 3;
  column-gap: 12px;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"].adapt > [data-js="card"] {
  break-inside: avoid;
  margin-bottom: 12px;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="home"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="text"]:nth-of-type(1) {
  position: relative;
  max-width: 95%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 16px 16px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  font-weight: 700;
  z-index: 3;
}

[data-js="months"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="undefined"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="month"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 2;
  pointer-events: none;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="text"]:nth-of-type(1) {
  position: relative;
  max-width: 95%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 16px 16px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  font-weight: 700;
  z-index: 3;
}

[data-js="allsports"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="undefined"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="sport"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="allcities"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="allcities"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="allcities"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="place"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="city"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="submit"] > [data-js="waiting"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] {
  display: flex;
  flex-direction: column;
  background: #2a2d31;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="info"] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 12px 14px;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="frame"].skeleton {
  background: linear-gradient(90deg, #333639 25%, #43464a 50%, #333639 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > img.loaded {
  opacity: 1;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="frame"] > [data-js="full"] {
  opacity: 0;
  z-index: 1;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="name"] {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
  text-align: left;
  color: inherit;
  line-height: 1.3;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="meta"] {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 12px;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

[data-js="submit"] > [data-js="published"] > [data-js="list"] > [data-js="card"] > [data-js="info"] > [data-js="tags"] > span {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="item"] > [data-js="details"] > [data-js="name"] {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: clamp(22px, 19.65px + 0.652vw, 28px);
  font-weight: 700;
  color: inherit;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="item"] > [data-js="details"] > [data-js="meta"] {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  font-family: inherit;
  font-size: clamp(14px, 13.61px + 0.109vw, 15px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  margin: 0px 0px 14px 0px;
}

[data-js="item"] > [data-js="details"] > [data-js="tags"] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0px 0px 16px 0px;
}

[data-js="item"] > [data-js="details"] > [data-js="tags"] > span {
  font-size: clamp(12px, 11.22px + 0.217vw, 14px);
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="item"] > [data-js="details"] > [data-js="description"] {
  font-family: inherit;
  font-size: clamp(14px, 13.61px + 0.109vw, 15px);
  font-weight: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 1.7;
  white-space: pre-line;
  margin: 0px 0px 16px 0px;
}

[data-js="item"] > [data-js="details"] > [data-js="pricing"] {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

[data-js="item"] > [data-js="details"] {
  margin: clamp(0px, -15.65px + 4.348vw, 40px) clamp(0px, -23.48px + 6.522vw, 60px) 0px clamp(0px, -23.48px + 6.522vw, 60px);
  padding: 0px 20px 0px 20px;
}

@media (min-width: 900px) {
  [data-js="item"].aside {
    display: grid;
    grid-template-columns: minmax(0, 360px) 1fr;
    gap: 0 40px;
    align-items: start;
  }

  [data-js="item"].aside > [data-js="return"] {
    grid-area: 1 / 1;
  }

  [data-js="item"].aside > [data-js="header"] {
    grid-area: 1 / 1;
    position: sticky;
    top: 0;
  }

  [data-js="item"].aside > [data-js="details"] {
    grid-area: 1 / 2;
  }
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"],
[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] {
  background: #FFAA00;
  color: #212326;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] {
  background: #e53935;
  color: #fff;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] svg,
[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] svg {
  width: 18px;
  height: 18px;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] svg {
  fill: #212326;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"][data-busy] {
  color: transparent;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"][data-busy] svg {
  visibility: hidden;
}

[data-js="item"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] svg {
  fill: #fff;
}

[data-js="item"] > [data-js="details"] > [data-js="links"] {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

[data-js="item"] [data-js="links"] > a {
  display: inline-block;
  padding: 10px 18px 10px 18px;
  border-radius: 8px;
  background: #FFAA00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

[data-js="item"] [data-js="links"] > [data-js="instagram"],
[data-js="item"] [data-js="links"] > [data-js="facebook"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

[data-js="item"] [data-js="links"] > [data-js="instagram"] svg,
[data-js="item"] [data-js="links"] > [data-js="facebook"] svg {
  width: 20px;
  height: 20px;
}

[data-js="item"] [data-js="links"] > [data-js="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

[data-js="item"] [data-js="links"] > [data-js="facebook"] {
  background: #1877f2;
}

[data-js="review"] > [data-js="details"] > [data-js="name"] {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: clamp(22px, 19.65px + 0.652vw, 28px);
  font-weight: 700;
  color: inherit;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="review"] > [data-js="details"] > [data-js="meta"] {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  font-family: inherit;
  font-size: clamp(14px, 13.61px + 0.109vw, 15px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0px;
  color: #ccc;
  margin: 0px 0px 14px 0px;
}

[data-js="review"] > [data-js="details"] > [data-js="tags"] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0px 0px 16px 0px;
}

[data-js="review"] > [data-js="details"] > [data-js="tags"] > span {
  font-size: clamp(12px, 11.22px + 0.217vw, 14px);
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  background: #FFAA0022;
  color: #FFAA00;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: none;
}

[data-js="review"] > [data-js="details"] > [data-js="description"] {
  font-family: inherit;
  font-size: clamp(14px, 13.61px + 0.109vw, 15px);
  font-weight: inherit;
  color: inherit;
  text-align: left;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 1.7;
  white-space: pre-line;
  margin: 0px 0px 16px 0px;
}

[data-js="review"] > [data-js="details"] > [data-js="pricing"] {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

[data-js="review"] > [data-js="details"] {
  margin: clamp(0px, -15.65px + 4.348vw, 40px) clamp(0px, -23.48px + 6.522vw, 60px) 0px clamp(0px, -23.48px + 6.522vw, 60px);
  padding: 0px 20px 0px 20px;
}

@media (min-width: 900px) {
  [data-js="review"].aside {
    display: grid;
    grid-template-columns: minmax(0, 360px) 1fr;
    gap: 0 40px;
    align-items: start;
  }

  [data-js="review"].aside > [data-js="return"] {
    grid-area: 1 / 1;
  }

  [data-js="review"].aside > [data-js="header"] {
    grid-area: 1 / 1;
    position: sticky;
    top: 0;
  }

  [data-js="review"].aside > [data-js="details"] {
    grid-area: 1 / 2;
  }
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"],
[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] {
  background: #FFAA00;
  color: #212326;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] {
  background: #e53935;
  color: #fff;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] svg,
[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] svg {
  width: 18px;
  height: 18px;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"] svg {
  fill: #212326;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"][data-busy] {
  color: transparent;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="publish"][data-busy] svg {
  visibility: hidden;
}

[data-js="review"] > [data-js="details"] > [data-js="footer"] > [data-js="delete"] svg {
  fill: #fff;
}

[data-js="review"] > [data-js="details"] > [data-js="links"] {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

[data-js="review"] [data-js="links"] > a {
  display: inline-block;
  padding: 10px 18px 10px 18px;
  border-radius: 8px;
  background: #FFAA00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

[data-js="review"] [data-js="links"] > [data-js="instagram"],
[data-js="review"] [data-js="links"] > [data-js="facebook"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

[data-js="review"] [data-js="links"] > [data-js="instagram"] svg,
[data-js="review"] [data-js="links"] > [data-js="facebook"] svg {
  width: 20px;
  height: 20px;
}

[data-js="review"] [data-js="links"] > [data-js="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

[data-js="review"] [data-js="links"] > [data-js="facebook"] {
  background: #1877f2;
}

[data-js="add"] > [data-js="create"] {
  display: grid;
  gap: 50px;
  padding: 24px 20px 16px 20px;
}

[data-js="add"] > [data-js="create"] > [data-js="heading"] {
  font-family: inherit;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0px;
  text-transform: none;
  color: inherit;
  text-align: left;
  line-height: 1.2;
  margin: 0px 0px 0px 0px;
}

[data-js="add"] > [data-js="create"] label {
  display: grid;
  gap: 16px;
}

[data-js="add"] > [data-js="create"] label > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #ccc;
}

[data-js="add"] > [data-js="create"] label > span > .plain {
  text-transform: none;
}

[data-js="add"] > [data-js="create"] label > span > .star {
  color: #e04848;
  font-size: 16px;
  line-height: 1;
}

[data-js="add"] > [data-js="create"] label > input[type="text"],
[data-js="add"] > [data-js="create"] label > input[type="number"],
[data-js="add"] > [data-js="create"] label > input[type="date"],
[data-js="add"] > [data-js="create"] label > .row > input[type="text"],
[data-js="add"] > [data-js="create"] label > .row > input[type="number"],
[data-js="add"] > [data-js="create"] label > textarea {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: transparent;
  color: #ccc;
  font-size: 15px;
  font-family: inherit;
}

[data-js="add"] > [data-js="create"] label > input[type="text"]:focus,
[data-js="add"] > [data-js="create"] label > input[type="number"]:focus,
[data-js="add"] > [data-js="create"] label > input[type="date"]:focus,
[data-js="add"] > [data-js="create"] label > .row > input[type="text"]:focus,
[data-js="add"] > [data-js="create"] label > .row > input[type="number"]:focus,
[data-js="add"] > [data-js="create"] label > textarea:focus {
  border-color: #FFAA00;
  outline: none;
}

[data-js="add"] > [data-js="create"] label > textarea {
  height: 200px;
  resize: vertical;
}

[data-js="add"] > [data-js="create"] label > input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

[data-js="add"] > [data-js="create"] label:has(> input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-js="add"] > [data-js="create"] > [data-js="button"] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  background: #FFAA00;
  color: #212326;
  font-size: 16px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
  cursor: pointer;
}

[data-js="add"] > [data-js="create"] > [data-js="button"]:focus-visible {
  outline: 2px solid #FFAA00;
  outline-offset: 2px;
}

[data-js="add"] > [data-js="create"] > [data-js="button"][data-busy] {
  color: transparent;
}

[data-js="add"] > [data-js="create"] > [data-js="error"] {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #e04848;
}

.login {
    position: fixed;
    inset: 0;
    background-color: #212326;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    padding: 0 24px;
    box-sizing: border-box;
}

.login-logo {
    width: 80px;
    height: 80px;
    justify-self: center;
    margin-bottom: 8px;
}

.login-form input {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: transparent;
    color: #ccc;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.login-form input:focus {
    border-color: #FFAA00;
}

.login-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #FFAA00;
    color: #212326;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.login-toggle {
    text-align: center;
    color: #FFAA00;
    cursor: pointer;
    font-size: 14px;
}

.login-forgot {
    color: #888;
    font-size: 12px;
}

.login-error {
    text-align: center;
    color: #ff4444;
    font-size: 14px;
}

.reset {
    position: fixed;
    inset: 0;
    background-color: #212326;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-form {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    padding: 0 24px;
    box-sizing: border-box;
}

.reset-logo {
    width: 80px;
    height: 80px;
    justify-self: center;
    margin-bottom: 8px;
}

.reset-title {
    text-align: center;
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
}

.reset-form input {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: transparent;
    color: #ccc;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.reset-form input:focus {
    border-color: #FFAA00;
}

.reset-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #FFAA00;
    color: #212326;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.reset-toggle {
    text-align: center;
    color: #FFAA00;
    cursor: pointer;
    font-size: 14px;
}

.reset-note {
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

.reset-error {
    text-align: center;
    color: #ff4444;
    font-size: 14px;
}
