:root {
  --c-hdr: #222723;
  --c-bg: #0e2f2b;
  --c-btn-primary: #02504b;
  --c-btn-accent: #f9c719;
  --c-text: #e8f0ef;
  --c-text-muted: #a8c4bf;
  --c-border: rgba(249, 199, 25, 0.2);
  --c-card: rgba(255, 255, 255, 0.04);
  --c-card-hover: rgba(255, 255, 255, 0.07);
  --c-gold: #f9c719;
  --c-green: #02504b;
  --c-green-light: #045c56;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  background: #0e2f2b;
}

body {
  font-family: "Montserrat", "Inter", "Roboto", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  padding-top: 68px;
}

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

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #fff;
}

.xf7k2 {
  display: none;
}

.wp-content-loaded {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.wp-block-spacer {
  display: block;
  width: 100%;
  height: 1px;
}

.elementor-hidden-desktop {
  display: none !important;
}

.yoast-schema-graph {
  display: none;
}

.site-header {
  background: #222723;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  border-bottom: 2px solid rgba(249, 199, 25, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 12px;
}

.hdr-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.hdr-logo {
  flex-shrink: 0;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.hdr-nav a {
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.hdr-nav a:hover {
  color: var(--c-gold);
  background: rgba(249, 199, 25, 0.08);
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn-login {
  background: var(--c-green);
  color: #fff !important;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.btn-login:hover {
  background: var(--c-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 80, 75, 0.5);
}

.btn-signup {
  background: var(--c-gold);
  color: #1a1a1a !important;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.btn-signup:hover {
  background: #ffdc4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249, 199, 25, 0.45);
}

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

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  background: var(--c-hdr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 9998;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: var(--c-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/sulBan.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 47, 43, 0.92) 40%,
    rgba(14, 47, 43, 0.5) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--c-gold);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  max-width: 600px;
}

.hero h1 span {
  color: var(--c-gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--c-gold);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: #ffdc4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 199, 25, 0.45);
  color: #1a1a1a;
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(249, 199, 25, 0.1);
  transform: translateY(-2px);
}

.hero-bonus-box {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-pill {
  background: rgba(2, 80, 75, 0.5);
  border: 1px solid rgba(249, 199, 25, 0.25);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
}

.bonus-pill strong {
  color: var(--c-gold);
  display: block;
  font-size: 18px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.section-title span {
  color: var(--c-gold);
}

.section-sub {
  color: var(--c-text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 60px 0;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
}

.info-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.info-table tr:hover {
  background: var(--c-card-hover);
}

.info-table td {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  font-size: 14px;
}

.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 200px;
}

.info-table td:last-child {
  color: #fff;
  font-weight: 500;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.badge-green {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.badge-gold {
  background: rgba(249, 199, 25, 0.12);
  color: var(--c-gold);
  border: 1px solid rgba(249, 199, 25, 0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.live-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

.mirrors-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
}

.mirrors-table thead th {
  background: var(--c-green);
  color: #fff;
  padding: 13px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.mirrors-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  vertical-align: middle;
}

.mirrors-table tr:last-child td {
  border-bottom: none;
}

.mirrors-table tr:hover td {
  background: var(--c-card-hover);
}

.mirror-link {
  color: var(--c-gold);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.mirror-link:hover {
  color: #fff;
  text-decoration: underline;
}

.status-ok {
  color: #2ecc71;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-ok::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
}

.speed-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  min-width: 80px;
}

.speed-fill {
  height: 100%;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 3px;
}

.btn-mirror {
  background: var(--c-gold);
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-block;
}

.btn-mirror:hover {
  background: #ffdc4d;
  transform: translateY(-1px);
  color: #1a1a1a;
}

.app-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.app-info {
  flex: 1;
  min-width: 280px;
}

.app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--c-text);
}

.btn-store:hover {
  background: var(--c-card-hover);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  color: #fff;
}

.btn-store-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.btn-store-text small {
  display: block;
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 500;
}

.btn-store-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.app-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
}

.app-table td {
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.app-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 180px;
}

.app-table td:last-child {
  color: #fff;
  font-weight: 500;
}

.app-table tr:last-child td {
  border-bottom: none;
}

.wheel-section {
  background: linear-gradient(
    135deg,
    rgba(2, 80, 75, 0.3),
    rgba(14, 47, 43, 0.8)
  );
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
}

.wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 32px auto;
}

#fortuneCanvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(249, 199, 25, 0.3),
    0 0 0 4px var(--c-gold);
  display: block;
  max-width: 320px;
  width: 100%;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 28px solid var(--c-gold);
  filter: drop-shadow(0 2px 6px rgba(249, 199, 25, 0.5));
}

.btn-spin {
  background: linear-gradient(135deg, var(--c-gold), #e6b800);
  color: #1a1a1a;
  padding: 16px 48px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(249, 199, 25, 0.35);
}

.btn-spin:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 199, 25, 0.5);
}

.btn-spin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wheel-result {
  margin-top: 28px;
  padding: 20px 32px;
  border-radius: var(--radius);
  background: rgba(2, 80, 75, 0.35);
  border: 1px solid rgba(46, 204, 113, 0.4);
  display: none;
  animation: fadeInUp 0.5s ease;
}

.wheel-result.win {
  display: block;
}

.wheel-result h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2ecc71;
  margin-bottom: 8px;
}

.wheel-result p {
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.btn-claim {
  background: var(--c-gold);
  color: #1a1a1a;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-claim:hover {
  background: #ffdc4d;
  transform: translateY(-2px);
}

.wheel-lose {
  margin-top: 28px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.3);
  display: none;
  animation: fadeInUp 0.5s ease;
}

.wheel-lose.show {
  display: block;
}

.content-section {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  line-height: 1.75;
}

.content-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
  border-left: 3px solid var(--c-gold);
  padding-left: 12px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold);
  margin: 20px 0 10px;
}

.content-section p {
  margin-bottom: 14px;
  color: var(--c-text);
  font-size: 14.5px;
}

.content-section ul,
.content-section ol {
  margin: 12px 0 16px 22px;
  color: var(--c-text);
  font-size: 14.5px;
}

.content-section li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.content-section ul li::marker {
  color: var(--c-gold);
}

.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.content-section table th {
  background: var(--c-green);
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.content-section table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
  color: var(--c-text);
}

.content-section table tr:last-child td {
  border-bottom: none;
}

.content-section table tr:hover td {
  background: var(--c-card-hover);
}

.content-section strong {
  color: #fff;
  font-weight: 700;
}

.content-section a {
  color: var(--c-gold);
}

.content-section blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(249, 199, 25, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--c-text-muted);
}

.author-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}

.author-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}

.author-box h4 {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.author-box p {
  color: var(--c-text-muted);
  font-size: 12.5px;
  margin: 0;
  line-height: 1.5;
}

.author-box a {
  color: var(--c-gold);
  font-size: 12px;
}

.reviews-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  flex: 1;
  min-width: 240px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(249, 199, 25, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.review-date {
  font-size: 11px;
  color: var(--c-text-muted);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--c-gold);
}

.review-text {
  font-size: 13.5px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
  max-width: 600px;
}

.review-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
}

.form-group textarea {
  min-height: 100px;
}

.btn-submit {
  background: var(--c-gold);
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: #ffdc4d;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  padding: 14px 20px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.35);
  border-radius: var(--radius-sm);
  color: #2ecc71;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  gap: 12px;
  user-select: none;
  transition: background var(--transition);
}

.faq-q:hover {
  background: var(--c-card-hover);
}

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  font-size: 14px;
  color: #fff;
}

.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.site-footer {
  background: var(--c-hdr);
  border-top: 1px solid rgba(249, 199, 25, 0.15);
  padding: 48px 0 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--c-text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--c-gold);
}

.footer-payments {
  margin-bottom: 32px;
}

.footer-payments h4 {
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}

.payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
}

.provider-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prov-badge {
  background: rgba(2, 80, 75, 0.25);
  border: 1px solid rgba(2, 80, 75, 0.4);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
}

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

.footer-bottom p {
  color: var(--c-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom a {
  color: var(--c-text-muted);
  text-decoration: underline;
  font-size: 12px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--c-text-muted);
  font-size: 10px;
  font-weight: 800;
  color: var(--c-text-muted);
  margin-left: 6px;
  vertical-align: middle;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    var(--c-hdr) 0%,
    rgba(2, 80, 75, 0.98) 100%
  );
  border-top: 2px solid var(--c-gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.widget-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.widget-text span {
  color: var(--c-gold);
}

.widget-bonus {
  font-size: 13px;
  color: var(--c-text-muted);
}

.widget-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-widget-reg {
  background: var(--c-gold);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none !important;
  display: inline-block;
}

.btn-widget-reg:hover {
  background: #ffdc4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 199, 25, 0.45);
  color: #1a1a1a;
}

.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  color: #fff;
}

body.widget-open {
  padding-bottom: 62px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

.fade-in-delay {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(2, 80, 75, 0.4),
    rgba(14, 47, 43, 0.8)
  );
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
}

.text-gold {
  color: var(--c-gold);
}

.text-muted {
  color: var(--c-text-muted);
}

.m3x9f,
.q7r2a,
.t4k8w {
  display: none;
}

.wp-post-image {
  max-width: 100%;
  height: auto;
}

.entry-meta {
  display: none;
}

.wp-block-cover {
  position: relative;
}

.elementor-widget-container {
  padding: 0;
}

.e-con-inner {
  display: flex;
  flex-direction: column;
}

[data-elementor-type="wp-post"] {
  overflow: hidden;
}

.eael-advanced-data-table-wrap {
  overflow-x: auto;
}

@media (max-width: 991px) {
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .hero-inner {
    padding: 40px 18px;
  }
  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 420px;
  }
  .hero-bonus-box {
    gap: 10px;
  }
  .bonus-pill {
    padding: 8px 14px;
  }
  .section {
    padding: 40px 0;
  }
  .app-grid {
    flex-direction: column;
  }
  .app-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .reviews-grid {
    flex-direction: column;
  }
  .sticky-widget {
    padding: 10px 14px;
  }
  .widget-text {
    font-size: 12px;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .mirrors-table td:nth-child(4) {
    display: none;
  }
  .content-section {
    padding: 22px 16px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
  .hdr-inner {
    height: 60px;
    padding: 0 14px;
  }
  .hdr-logo img {
    height: 36px;
  }
  .btn-login,
  .btn-signup {
    padding: 7px 12px;
    font-size: 12px;
  }
  .hdr-right {
    gap: 5px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  .review-form-wrap {
    padding: 18px;
  }
  #fortuneCanvas {
    max-width: 260px;
  }
  .footer-grid {
    flex-direction: column;
  }
  .sticky-widget {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 10px;
  }
  .widget-bonus {
    display: none;
  }
  .mobile-nav {
    top: 60px;
  }
}
