:root {
  --c-bg: #1c1c1c;
  --c-header: #242424;
  --c-btn-dark: #242424;
  --c-btn-green: #98c453;
  --c-btn-green-hover: #7faa3a;
  --c-text: #ebebeb;
  --c-text-muted: #9a9a9a;
  --c-border: #333333;
  --c-card: #242424;
  --c-accent: #98c453;
  --c-accent2: #c4a153;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-sans: "Open Sans", Arial, sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--c-bg);
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-btn-green-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
  line-height: 1.6;
}

ul,
ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 1.5em;
}
th,
td {
  text-align: left;
  padding: 0.7em 1em;
  border: 1px solid var(--c-border);
  font-size: 0.95rem;
}
th {
  background: #2a2a2a;
  color: var(--c-accent);
  font-weight: 600;
}
tr:nth-child(even) td {
  background: #212121;
}
tr:hover td {
  background: #2c2c2c;
}

.fpx-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

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

.fpx-section {
  padding: 60px 0;
}

.fpx-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--c-text);
  position: relative;
  padding-bottom: 0.5rem;
}
.fpx-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

.fpx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.6em 1.4em;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.fpx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.fpx-btn-dark {
  background: var(--c-btn-dark);
  color: #fff;
  border: 1px solid #444;
}
.fpx-btn-dark:hover {
  background: #333;
  color: #fff;
}
.fpx-btn-green {
  background: var(--c-btn-green);
  color: #111;
  border: none;
}
.fpx-btn-green:hover {
  background: var(--c-btn-green-hover);
  color: #111;
}
.fpx-btn-lg {
  padding: 0.85em 2em;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.fpx-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.fpx-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

header.fpx-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.fpx-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.fpx-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.fpx-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}
.fpx-nav a {
  color: #ccc;
  font-size: 0.9rem;
  padding: 0.4em 0.7em;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.fpx-nav a:hover {
  background: #333;
  color: var(--c-accent);
}
.fpx-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.fpx-online {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
}
.fpx-online-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.fpx-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 36px;
  height: 36px;
}
.fpx-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.fpx-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fpx-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.fpx-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fpx-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 18, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.fpx-mobile-nav.is-open {
  display: flex;
}
.fpx-mobile-nav a {
  font-size: 1.2rem;
  color: #ddd;
  padding: 0.5em 1em;
}
.fpx-mobile-nav a:hover {
  color: var(--c-accent);
}
.fpx-mobile-nav-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.fpx-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.8rem;
  cursor: pointer;
}

.fpx-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: #111;
}
.fpx-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/banner.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.fpx-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 20px;
}
.fpx-hero-badge {
  display: inline-block;
  background: var(--c-accent);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25em 0.8em;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.fpx-hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.fpx-hero-sub {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.fpx-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fpx-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.fpx-info-table-wrap table {
  margin: 0;
}
.fpx-info-table-wrap td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
  width: 44%;
}
.fpx-info-table-wrap td:last-child {
  color: var(--c-text);
  font-weight: 600;
}

.fpx-mirror-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.fpx-mirror-datetime {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fpx-mirror-datetime-val {
  color: var(--c-accent);
  font-weight: 600;
}
.fpx-mirror-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.fpx-mirror-table-wrap table {
  margin: 0;
}
.fpx-mirror-badge {
  display: inline-block;
  background: #1e3a0a;
  color: var(--c-accent);
  font-size: 0.78rem;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  border: 1px solid var(--c-accent);
}

.fpx-jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.fpx-jackpot-card {
  background: linear-gradient(135deg, #1e2a10 0%, #242424 100%);
  border: 1px solid #3a5a1a;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fpx-jackpot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(152, 196, 83, 0.08) 0%,
    transparent 70%
  );
}
.fpx-jackpot-name {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fpx-jackpot-amount {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--c-accent);
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.02em;
}
.fpx-jackpot-ticker {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-top: 0.25rem;
}

.fpx-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fpx-screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.fpx-screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.fpx-screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.fpx-slot-wrap {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 2rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.fpx-reels {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.fpx-reel {
  width: 80px;
  height: 80px;
  background: #111;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
}
.fpx-reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s linear;
}
.fpx-slot-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #1e3a0a;
  border: 1px solid var(--c-accent);
  display: none;
  animation: fadeIn 0.4s ease;
}
.fpx-slot-result.show {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fpx-review-content {
  background: var(--c-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 2rem;
}
.fpx-review-content h2,
.fpx-review-content h3,
.fpx-review-content h4 {
  margin-top: 1.5em;
  color: var(--c-text);
}
.fpx-review-content a {
  color: var(--c-accent);
}
.fpx-review-content table {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fpx-review-content ul li::marker {
  color: var(--c-accent);
}
.fpx-review-content ol li::marker {
  color: var(--c-accent);
}
.fpx-review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 0.5em 1em;
  background: #222;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1em 0;
  color: #bbb;
}
.fpx-review-content code {
  background: #2a2a2a;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}

.fpx-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #242424;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.fpx-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
  flex-shrink: 0;
}
.fpx-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
}
.fpx-author-name a {
  color: var(--c-text);
}
.fpx-author-name a:hover {
  color: var(--c-accent);
}
.fpx-author-bio {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 0.2rem;
  line-height: 1.45;
}

.fpx-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.fpx-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fpx-review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fpx-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--c-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fpx-review-meta-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.fpx-review-meta-date {
  font-size: 0.77rem;
  color: var(--c-text-muted);
}
.fpx-stars {
  display: flex;
  gap: 2px;
  color: var(--c-accent);
}
.fpx-stars svg {
  width: 16px;
  height: 16px;
}
.fpx-review-text {
  font-size: 0.9rem;
  color: #c8c8c8;
  line-height: 1.55;
}

.fpx-review-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  max-width: 560px;
}
.fpx-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fpx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fpx-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.fpx-form-input,
.fpx-form-textarea {
  background: #181818;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.7em 1em;
  transition: border-color var(--transition);
  width: 100%;
}
.fpx-form-input:focus,
.fpx-form-textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.fpx-form-textarea {
  min-height: 110px;
  resize: vertical;
}
.fpx-form-success {
  display: none;
  background: #1e3a0a;
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 1em;
  color: var(--c-accent);
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.fpx-form-success.show {
  display: block;
}

.fpx-faq {
  max-width: 780px;
}
.fpx-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.fpx-faq-q {
  width: 100%;
  background: #242424;
  border: none;
  color: var(--c-text);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 1em 1.25em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  transition: background var(--transition);
}
.fpx-faq-q:hover {
  background: #2e2e2e;
}
.fpx-faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--c-accent);
}
.fpx-faq-q.is-open svg {
  transform: rotate(180deg);
}
.fpx-faq-a {
  display: none;
  padding: 1em 1.25em;
  color: #bbb;
  font-size: 0.93rem;
  line-height: 1.6;
  background: #1e1e1e;
}
.fpx-faq-a.is-open {
  display: block;
}

footer.fpx-footer {
  background: var(--c-header);
  border-top: 1px solid #333;
  padding: 3rem 0 1.5rem;
}
.fpx-footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.fpx-footer-logo img {
  height: 40px;
}
.fpx-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
}
.fpx-footer-nav a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.fpx-footer-nav a:hover {
  color: var(--c-accent);
}
.fpx-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.fpx-footer-logo-pill {
  background: #2e2e2e;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius-sm);
  padding: 0.35em 0.75em;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.fpx-footer-divider {
  border: none;
  border-top: 1px solid #2e2e2e;
  margin: 1.5rem 0;
}
.fpx-footer-legal {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.55;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.fpx-footer-copyright {
  text-align: center;
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.75rem;
}

.fpx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a2a0a 0%, #242424 100%);
  border-top: 2px solid var(--c-accent);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.fpx-widget-text {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.35;
}
.fpx-widget-text strong {
  color: var(--c-accent);
}
.fpx-widget-close {
  background: none;
  border: none;
  color: #666;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.fpx-widget-close:hover {
  color: #aaa;
}

.fpx-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.fpx-lightbox.is-open {
  display: flex;
}
.fpx-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}
.fpx-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

.fpx-tag-bg {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

@media (max-width: 900px) {
  .fpx-header-inner {
    grid-template-columns: auto auto auto;
  }
  .fpx-nav {
    display: none;
  }
  .fpx-burger {
    display: flex;
  }
  .fpx-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .fpx-screenshots-grid {
    grid-template-columns: 1fr;
  }
  .fpx-jackpots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fpx-hero h1 {
    font-size: 1.65rem;
  }
  .fpx-hero-content {
    padding: 60px 20px;
  }
  .fpx-section {
    padding: 40px 0;
  }
  .fpx-jackpots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fpx-reels {
    gap: 0.5rem;
  }
  .fpx-reel {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  .fpx-widget {
    flex-wrap: wrap;
  }
}

.fpx-x7r2a {
  display: none;
}
.fpx-wp-menu-container {
}
.fpx-wc-block {
}
.fpx-el-widget {
}
div.entry-meta {
}
div.wp-caption {
}
span.post-categories {
}
.fpx-elementor-heading-title {
}

body.single-post .fpx-sidebar {
}
.fpx-wp-pagenavi {
}
.fpx-woo-cart-icon {
}
.yoast-seo-meta-tag {
}
.fpx-cf7-form-control {
}
.fpx-acf-field {
}
