:root {
  --clr-bg: #0e2f2b;
  --clr-header: #222723;
  --clr-btn-login: #02504b;
  --clr-btn-reg: #f9c719;
  --clr-btn-reg-txt: #1a1a1a;
  --clr-text: #e8f0ee;
  --clr-text-muted: #9db8b2;
  --clr-border: rgba(249, 199, 25, 0.18);
  --clr-card: #122e29;
  --clr-card2: #0a2420;
  --clr-gold: #f9c719;
  --clr-green: #02504b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.38);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

body {
  font-family: "Montserrat", "Roboto", "Inter", Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
}
a:hover {
  color: #ffe066;
}

img {
  max-width: 100%;
  display: block;
}

.x9f2a {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.k3r7b {
  display: none;
}
.m8z1p {
  opacity: 0;
  pointer-events: none;
}

.wp-block-unused {
  display: none;
  visibility: hidden;
}
.elementor-placeholder-unused {
  display: none;
}

#header-main {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 68px;
  padding: 0 20px;
}

.hdr-logo a {
  display: flex;
  align-items: center;
}
.hdr-logo img {
  height: 60px;
  width: auto;
}

.hdr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hdr-nav a {
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.hdr-nav a:hover {
  background: rgba(249, 199, 25, 0.12);
  color: var(--clr-gold);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-online {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.hdr-online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.btn-hdr-login {
  background: var(--clr-btn-login);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    filter var(--transition),
    transform var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-hdr-login:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
  color: #fff;
}

.btn-hdr-reg {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-txt);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    filter var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-hdr-reg:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 199, 25, 0.4);
  color: var(--clr-btn-reg-txt);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  background: var(--clr-header);
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mob-nav.is-open {
  display: block;
}
.mob-nav a {
  display: block;
  color: var(--clr-text);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition);
}
.mob-nav a:hover {
  color: var(--clr-gold);
}

.sec {
  padding: 64px 0;
}
.sec-sm {
  padding: 40px 0;
}
.sec-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 8px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(249, 199, 25, 0.18);
}
.sec-sub {
  text-align: center;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  font-size: 0.9rem;
}

#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-card2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banTan.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 47, 43, 0.92) 40%,
    rgba(14, 47, 43, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-btn-reg-txt);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #fff;
}
.hero-title span {
  color: var(--clr-gold);
}
.hero-desc {
  font-size: 1rem;
  color: #d0e8e4;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-reg {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-txt);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition:
    filter var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-hero-reg:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 199, 25, 0.45);
  color: var(--clr-btn-reg-txt);
}
.btn-hero-login {
  background: var(--clr-btn-login);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition:
    filter var(--transition),
    transform var(--transition);
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-hero-login:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
  color: #fff;
}

#screenshots {
  background: var(--clr-card2);
}
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ss-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.ss-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.ss-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#winners {
  background: var(--clr-bg);
}
.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 440px;
  margin: 0 auto;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.winners-table thead th {
  background: var(--clr-btn-login);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--clr-gold);
}
.winners-table thead th:first-child {
  width: 50px;
  text-align: center;
}
.winners-table tbody tr {
  transition: background var(--transition);
}
.winners-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.winners-table tbody tr:hover {
  background: rgba(249, 199, 25, 0.07);
}
.winners-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}
.winners-table tbody td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--clr-text-muted);
}
.winners-rank-1 td:first-child {
  color: #ffd700;
}
.winners-rank-2 td:first-child {
  color: #c0c0c0;
}
.winners-rank-3 td:first-child {
  color: #cd7f32;
}
.win-amount {
  color: var(--clr-gold);
  font-weight: 700;
}
.win-nick {
  font-weight: 500;
}

#tournaments {
  background: var(--clr-card2);
}
.tourn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tourn-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.tourn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 199, 25, 0.4);
}
.tourn-badge {
  display: inline-block;
  background: rgba(249, 199, 25, 0.12);
  color: var(--clr-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.tourn-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}
.tourn-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}
.tourn-prize {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.tourn-prize-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.tourn-timer-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tourn-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.timer-unit {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 10px;
  text-align: center;
  min-width: 46px;
}
.timer-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.timer-lbl {
  font-size: 0.6rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}
.timer-sep {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
}
.btn-tourn {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-txt);
  padding: 10px 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  display: block;
  transition:
    filter var(--transition),
    transform var(--transition);
  text-decoration: none;
  margin-top: auto;
}
.btn-tourn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: var(--clr-btn-reg-txt);
}

#slots {
  background: var(--clr-bg);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slot-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 199, 25, 0.35);
}
.slot-img-wrap {
  position: relative;
  overflow: hidden;
}
.slot-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-card:hover .slot-img-wrap img {
  transform: scale(1.06);
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.btn-demo {
  background: rgba(249, 199, 25, 0.9);
  color: #1a1a1a;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: filter var(--transition);
}
.btn-demo:hover {
  filter: brightness(1.1);
}
.slot-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slot-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.slot-provider {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.btn-slot-play {
  background: var(--clr-btn-login);
  color: #fff;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
  display: block;
  transition: filter var(--transition);
  text-decoration: none;
  margin-top: auto;
}
.btn-slot-play:hover {
  filter: brightness(1.2);
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  width: 92vw;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--clr-border);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal-box {
  transform: scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--clr-card2);
  border-bottom: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.modal-close-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal-close-btn:hover {
  color: #fff;
}
.modal-iframe-wrap {
  flex: 1;
  position: relative;
  min-height: 400px;
}
.modal-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
.modal-footer-strip {
  padding: 12px 20px;
  background: var(--clr-card2);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.modal-demo-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.btn-modal-play {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-txt);
  padding: 9px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  transition:
    filter var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.btn-modal-play:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(249, 199, 25, 0.35);
  color: var(--clr-btn-reg-txt);
}

#demo-slot {
  background: var(--clr-card2);
}
.demo-slot-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  background: #000;
  max-width: 900px;
  margin: 0 auto;
}
.demo-slot-wrap iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

#review {
  background: var(--clr-bg);
}
.review-wrap {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-btn-login);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}
.author-role {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.author-link {
  font-size: 0.78rem;
  color: var(--clr-gold);
}

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4 {
  color: var(--clr-gold);
  margin: 1.4em 0 0.6em;
  line-height: 1.3;
}
.review-content h1 {
  font-size: 1.55rem;
}
.review-content h2 {
  font-size: 1.3rem;
}
.review-content h3 {
  font-size: 1.1rem;
}
.review-content p {
  margin-bottom: 1em;
  color: var(--clr-text);
  line-height: 1.7;
}
.review-content ul,
.review-content ol {
  margin: 0.6em 0 1em 1.6em;
}
.review-content li {
  margin-bottom: 0.4em;
  line-height: 1.65;
}
.review-content strong,
.review-content b {
  color: #fff;
  font-weight: 700;
}
.review-content a {
  color: var(--clr-gold);
}
.review-content a:hover {
  text-decoration: underline;
}
.review-content blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 10px 18px;
  margin: 1em 0;
  background: rgba(249, 199, 25, 0.06);
  border-radius: 0 8px 8px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  text-align: left;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-content table thead th {
  background: var(--clr-btn-login);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--clr-gold);
}
.review-content table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.review-content table tbody tr:hover {
  background: rgba(249, 199, 25, 0.05);
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5em 0;
}
.review-content img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
}
.review-content code {
  background: var(--clr-card2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.88em;
  color: var(--clr-gold);
}

#faq {
  background: var(--clr-card2);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: rgba(249, 199, 25, 0.3);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 52px 18px 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover {
  color: var(--clr-gold);
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9c719' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-q::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
  padding: 0 20px;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
  padding: 0 20px 18px;
}
.faq-a p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.faq-a a {
  color: var(--clr-gold);
}

#footer-main {
  background: var(--clr-header);
  padding: 50px 0 24px;
  border-top: 1px solid rgba(249, 199, 25, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 64px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.footer-nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-nav a {
  display: block;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-gold);
}
.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 20px 0 18px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(155, 178, 174, 0.55);
  max-width: 700px;
  line-height: 1.55;
}
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

#sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: linear-gradient(90deg, #0a2420 0%, var(--clr-header) 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition: transform var(--transition);
}
#sticky-widget.is-hidden {
  transform: translateY(100%);
}
.widget-text {
  font-size: 0.82rem;
  color: var(--clr-text);
  flex: 1;
}
.widget-text strong {
  color: var(--clr-gold);
}
.widget-bonus {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.btn-widget {
  background: var(--clr-btn-reg);
  color: var(--clr-btn-reg-txt);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    filter var(--transition),
    box-shadow var(--transition);
  display: inline-block;
}
.btn-widget:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(249, 199, 25, 0.4);
  color: var(--clr-btn-reg-txt);
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}

.sldr-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.sldr-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sldr-track > * {
  flex-shrink: 0;
}
.sldr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 47, 43, 0.82);
  border: 1px solid var(--clr-border);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
  z-index: 5;
}
.sldr-btn:hover {
  background: var(--clr-btn-login);
}
.sldr-prev {
  left: 8px;
}
.sldr-next {
  right: 8px;
}
.sldr-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.sldr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.sldr-dot.is-active {
  background: var(--clr-gold);
  transform: scale(1.25);
}

.wp-content-unused {
  display: none;
}
.yoast-hidden-meta {
  display: none;
  visibility: hidden;
}
.elementor-col-unused {
  display: none;
}
.widget-area-unused {
  display: none;
}
.wp-block-group-unused {
  display: none;
}
.entry-meta-unused {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fiu {
  animation: fadeInUp 0.55s ease both;
}
.anim-fiu-d1 {
  animation-delay: 0.1s;
}
.anim-fiu-d2 {
  animation-delay: 0.2s;
}
.anim-fiu-d3 {
  animation-delay: 0.3s;
}

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

@media (max-width: 991px) {
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .ss-grid {
    grid-template-columns: 1fr;
  }
  .tourn-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 44px 0;
  }
  .sec-title {
    font-size: 1.35rem;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-content {
    padding: 48px 16px;
  }
  .slots-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .review-wrap {
    padding: 22px 18px;
  }
  .hdr-inner {
    grid-template-columns: auto auto;
  }
  .hdr-actions {
    gap: 7px;
  }
  .btn-hdr-login {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .btn-hdr-reg {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  #sticky-widget {
    flex-wrap: wrap;
  }
  .widget-text {
    width: 100%;
  }
  .modal-box {
    max-height: 95vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-hero-reg,
  .btn-hero-login {
    text-align: center;
  }
  .winners-table {
    font-size: 0.8rem;
  }
}
