:root {
  --premiosx9-bg: #1a1c1e;
  --premiosx9-bg-alt: #202325;
  --premiosx9-card: #26292c;
  --premiosx9-edge: rgba(255, 255, 255, 0.1);
  --premiosx9-edge-strong: rgba(255, 255, 255, 0.2);
  --premiosx9-accent: #e8743b;
  --premiosx9-accent-deep: #d05f28;
  --premiosx9-text: #f0f1f2;
  --premiosx9-muted: #9aa0a6;
  --premiosx9-muted-2: #c4c9ce;
  --premiosx9-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--premiosx9-text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 0
    ),
    linear-gradient(180deg, var(--premiosx9-bg), var(--premiosx9-bg-alt));
  background-size:
    5px 5px,
    auto;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}
p,
li {
  line-height: 1.7;
}
.premiosx9-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.premiosx9-section {
  padding: 56px 0;
}
.premiosx9-kicker,
.premiosx9-hero-kicker {
  margin: 0 0 14px;
  color: var(--premiosx9-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.premiosx9-section-heading {
  margin-bottom: 28px;
}
.premiosx9-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.premiosx9-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: var(--premiosx9-accent);
  color: var(--premiosx9-bg);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--premiosx9-shadow);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  cursor: pointer;
}
.premiosx9-button:hover,
.premiosx9-button:focus-visible {
  background: var(--premiosx9-text);
  color: var(--premiosx9-bg);
}
.premiosx9-button-secondary {
  background: transparent;
  color: var(--premiosx9-text);
  border: 1.5px solid var(--premiosx9-muted);
  box-shadow: none;
}
.premiosx9-button-secondary:hover,
.premiosx9-button-secondary:focus-visible {
  background: var(--premiosx9-text);
  color: var(--premiosx9-bg);
  border-color: var(--premiosx9-text);
}
.premiosx9-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #1a1c1e;
  border-bottom: 1px solid var(--premiosx9-edge);
}
.premiosx9-header.premiosx9-is-scrolled {
  background: rgba(26, 28, 30, 0.88);
  backdrop-filter: blur(8px);
}
.premiosx9-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.premiosx9-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.premiosx9-brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--premiosx9-accent);
  color: var(--premiosx9-bg);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}
.premiosx9-brand-text {
  display: grid;
  gap: 5px;
  position: relative;
  padding-bottom: 10px;
}
.premiosx9-brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}
.premiosx9-brand-text span {
  color: var(--premiosx9-muted);
  font-size: 0.86rem;
}
.premiosx9-brand-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--premiosx9-accent);
}
.premiosx9-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.premiosx9-nav-link {
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
}
.premiosx9-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
}
.premiosx9-nav-link:hover,
.premiosx9-nav-active {
  color: var(--premiosx9-accent);
}
.premiosx9-nav-link:hover::after,
.premiosx9-nav-active::after {
  background: var(--premiosx9-accent);
}
.premiosx9-nav-active::before {
  content: "▸ ";
  color: var(--premiosx9-accent);
}
.premiosx9-burger {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--premiosx9-edge);
  border-radius: 999px;
  background: #222528;
  color: var(--premiosx9-text);
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}
.premiosx9-hero {
  padding: 42px 0 30px;
}
.premiosx9-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  overflow: hidden;
  background: #1d2022;
  box-shadow: var(--premiosx9-shadow);
}
.premiosx9-hero-copy {
  padding: 54px 44px;
  background: linear-gradient(135deg, #202325 0%, #1a1c1e 100%);
}
.premiosx9-hero-bar {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--premiosx9-accent);
  margin: 0 0 18px;
}
.premiosx9-hero-copy h1 {
  font-size: clamp(44px, 8vw, 100px);
  line-height: 0.96;
  max-width: 8.2ch;
}
.premiosx9-hero-subline {
  max-width: 620px;
  margin: 22px 0 28px;
  color: var(--premiosx9-muted);
}
.premiosx9-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.premiosx9-hero-panel {
  background: #1a1c1e;
  min-height: 540px;
}
.premiosx9-hero-art {
  width: 100%;
  height: 100%;
}
.premiosx9-counter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  max-width: 620px;
}
.premiosx9-counter-card,
.premiosx9-editorial-card,
.premiosx9-news-item,
.premiosx9-criteria-card,
.premiosx9-about-card,
.premiosx9-rg-card,
.premiosx9-gate-card {
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  background: var(--premiosx9-card);
  box-shadow: var(--premiosx9-shadow);
}
.premiosx9-counter-card {
  padding: 18px;
}
.premiosx9-counter-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: var(--premiosx9-text);
}
.premiosx9-counter-card span {
  color: var(--premiosx9-muted);
}
.premiosx9-editorial-card,
.premiosx9-about-card,
.premiosx9-rg-card,
.premiosx9-gate-card {
  padding: 28px;
}
.premiosx9-quote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--premiosx9-accent);
  background: rgba(0, 0, 0, 0.14);
  color: var(--premiosx9-muted-2);
}
.premiosx9-casino-list {
  display: grid;
  gap: 18px;
}
.premiosx9-casino-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  overflow: hidden;
  background: var(--premiosx9-card);
  box-shadow: var(--premiosx9-shadow);
  transition:
    border-color 0.15s ease,
    border-top-color 0.15s ease;
}
.premiosx9-casino-card:hover,
.premiosx9-casino-card.premiosx9-is-hovered {
  border-color: var(--premiosx9-edge-strong);
  border-top-color: #ff8b50;
}
.premiosx9-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #1a1c1e;
  border-top: 4px solid var(--premiosx9-accent);
}
.premiosx9-logo-image {
  max-width: 150px;
  max-height: 48px;
  width: auto;
  height: auto;
}
.premiosx9-card-main {
  padding: 24px 24px 22px;
}
.premiosx9-card-main h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}
.premiosx9-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.premiosx9-rating-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--premiosx9-muted-2);
}
.premiosx9-rating-bars {
  display: flex;
  gap: 6px;
}
.premiosx9-rating-bars i {
  display: block;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: var(--premiosx9-accent);
}
.premiosx9-rating-partial {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 50%,
    rgba(255, 255, 255, 0.14) 50%
  );
}
.premiosx9-rating-10 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 10%,
    rgba(255, 255, 255, 0.14) 10%
  );
}
.premiosx9-rating-20 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 20%,
    rgba(255, 255, 255, 0.14) 20%
  );
}
.premiosx9-rating-30 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 30%,
    rgba(255, 255, 255, 0.14) 30%
  );
}
.premiosx9-rating-40 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 40%,
    rgba(255, 255, 255, 0.14) 40%
  );
}
.premiosx9-rating-50 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 50%,
    rgba(255, 255, 255, 0.14) 50%
  );
}
.premiosx9-rating-60 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 60%,
    rgba(255, 255, 255, 0.14) 60%
  );
}
.premiosx9-rating-70 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 70%,
    rgba(255, 255, 255, 0.14) 70%
  );
}
.premiosx9-rating-80 {
  background: linear-gradient(
    90deg,
    var(--premiosx9-accent) 80%,
    rgba(255, 255, 255, 0.14) 80%
  );
}
.premiosx9-bonus {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--premiosx9-accent);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.premiosx9-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.premiosx9-tag {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--premiosx9-muted-2);
  font-size: 0.9rem;
}
.premiosx9-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: 200px;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #202325;
}
.premiosx9-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--premiosx9-accent);
  color: var(--premiosx9-bg);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.premiosx9-card-note {
  margin: 0;
  color: var(--premiosx9-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.premiosx9-news-grid,
.premiosx9-grid {
  display: grid;
  gap: 18px;
}
.premiosx9-news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.premiosx9-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.premiosx9-criteria-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.premiosx9-news-item,
.premiosx9-criteria-card {
  padding: 22px;
}
.premiosx9-news-date {
  margin: 0 0 10px;
  color: var(--premiosx9-accent);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.premiosx9-news-item h3,
.premiosx9-criteria-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.premiosx9-longform {
  margin-top: 24px;
}
.premiosx9-rg-grid {
  margin: 22px 0;
}
.premiosx9-list {
  margin: 0;
  padding-left: 18px;
  color: var(--premiosx9-muted-2);
}
.premiosx9-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.premiosx9-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--premiosx9-edge);
  background: #17191b;
}
.premiosx9-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.premiosx9-footer-authority,
.premiosx9-footer-branding {
  padding: 24px;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  background: #202325;
}
.premiosx9-footer-authority h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.premiosx9-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.premiosx9-footer-links a {
  color: var(--premiosx9-muted-2);
}
.premiosx9-footer-links a:hover {
  color: var(--premiosx9-accent);
}
.premiosx9-brand-footer {
  margin-bottom: 18px;
}
.premiosx9-cookie-banner {
  position: fixed;
  right: 21px;
  bottom: 21px;
  z-index: 2147483645;
  width: min(340px, calc(100% - 24px));
  padding: 18px;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  background: #26292c;
  box-shadow: var(--premiosx9-shadow);
}
.premiosx9-cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--premiosx9-text);
  cursor: pointer;
}
.premiosx9-cookie-title {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.premiosx9-cookie-actions,
.premiosx9-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.premiosx9-gate-card {
  text-align: left;
}
.premiosx9-gate-card h2 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin-bottom: 12px;
}
.premiosx9-gate-note {
  margin-bottom: 0;
  color: var(--premiosx9-muted);
}
.premiosx9-legal-hero {
  padding: 46px 0 20px;
}
.premiosx9-legal-card {
  padding: 28px;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  background: var(--premiosx9-card);
  box-shadow: var(--premiosx9-shadow);
}
.premiosx9-legal-card h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1;
}
.premiosx9-legal-card p {
  max-width: 860px;
}
.premiosx9-legal-sections {
  display: grid;
  gap: 18px;
  padding-bottom: 56px;
}
.premiosx9-legal-section {
  padding: 24px;
  border: 1px solid var(--premiosx9-edge);
  border-top: 2px solid var(--premiosx9-accent);
  border-radius: 10px;
  background: #222528;
}
.premiosx9-legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}
@media (max-width: 980px) {
  .premiosx9-hero-grid,
  .premiosx9-footer-grid,
  .premiosx9-criteria-grid {
    grid-template-columns: 1fr;
  }
  .premiosx9-hero-copy {
    clip-path: none;
  }
  .premiosx9-hero-panel {
    min-height: 280px;
  }
  .premiosx9-casino-card {
    grid-template-columns: 180px minmax(0, 1fr) 180px;
  }
}
@media (max-width: 760px) {
  .premiosx9-header-inner {
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  .premiosx9-burger {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .premiosx9-nav-open .premiosx9-header {
    z-index: 200;
  }
  .premiosx9-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 12px 0 16px;
    background: #1a1c1e;
    border-top: 1px solid var(--premiosx9-edge);
    box-shadow: var(--premiosx9-shadow);
    z-index: 1;
  }
  .premiosx9-nav-open .premiosx9-nav {
    display: flex;
  }
  .premiosx9-news-grid,
  .premiosx9-grid,
  .premiosx9-counter-row,
  .premiosx9-footer-grid {
    grid-template-columns: 1fr;
  }
  .premiosx9-casino-card {
    grid-template-columns: 1fr;
  }
  .premiosx9-card-brand,
  .premiosx9-card-main,
  .premiosx9-card-cta {
    width: auto;
  }
  .premiosx9-card-cta {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .premiosx9-page * {
    max-width: 100%;
  }
  .premiosx9-casino-list,
  .premiosx9-grid,
  .premiosx9-news-grid {
    grid-template-columns: 1fr !important;
  }
  .premiosx9-casino-card {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }
  .premiosx9-casino-card * {
    min-width: 0;
    max-width: 100%;
  }
  .premiosx9-logo-image {
    max-width: 120px;
    max-height: 36px;
  }
  .premiosx9-cta-btn,
  .premiosx9-button {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }
  .premiosx9-casino-card:hover {
    border-color: var(--premiosx9-edge);
    border-top-color: var(--premiosx9-accent);
  }
  table {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }
  .premiosx9-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  thead th {
    white-space: nowrap;
  }
  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
}
@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }
  .premiosx9-logo-image {
    max-width: 90px;
    max-height: 30px;
  }
  .premiosx9-shell {
    width: min(100%, calc(100% - 18px));
  }
}
