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

:root {
  --c-bg: #030535;
  --c-header: #141f61;
  --c-header-alt: #0e1850;
  --c-btn-login: #141d5f;
  --c-btn-signup: #449e66;
  --c-btn-signup-hover: #378454;
  --c-text: #e8ecff;
  --c-text-muted: #9aa3c8;
  --c-text-accent: #7b8fff;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-card: rgba(20, 31, 97, 0.55);
  --c-card-hover: rgba(20, 31, 97, 0.85);
  --c-section-alt: #050840;
  --c-gold: #f0b429;
  --radius: 10px;
  --radius-sm: 6px;
  --font-head: "Montserrat", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --transition: 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-text-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.xp3-skip-link-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.o7f2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  gap: 6px;
  letter-spacing: 0.02em;
}
.o7f2-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.o7f2-btn:active {
  transform: translateY(0);
}

.o7f2-btn-login {
  background: var(--c-btn-login);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.o7f2-btn-login:hover {
  background: #1c2a7f;
  color: #fff;
}
.o7f2-btn-signup {
  background: var(--c-btn-signup);
  color: #fff;
}
.o7f2-btn-signup:hover {
  background: var(--c-btn-signup-hover);
  color: #fff;
}
.o7f2-btn-demo {
  background: transparent;
  border: 1px solid var(--c-btn-signup);
  color: var(--c-btn-signup);
  font-size: 13px;
  padding: 7px 16px;
}
.o7f2-btn-demo:hover {
  background: var(--c-btn-signup);
  color: #fff;
}

.o7f2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.o7f2-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  position: relative;
}
.o7f2-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.o7f2-logo-link img {
  height: 44px;
  width: auto;
}
.o7f2-online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.o7f2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4cff80;
  display: inline-block;
  animation: xp3-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes xp3-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(76, 255, 128, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(76, 255, 128, 0);
  }
}
.o7f2-online-count {
  color: #4cff80;
  font-weight: 600;
}
.o7f2-online-label {
  color: var(--c-text-muted);
}

.o7f2-nav {
  flex: 1;
}
.o7f2-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}
.o7f2-nav-link {
  display: block;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.o7f2-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.o7f2-header-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

.o7f2-mobile-nav {
  display: none;
  background: var(--c-header-alt);
  border-top: 1px solid var(--c-border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
}
.o7f2-mobile-nav.open {
  max-height: 400px;
  padding: 12px 0;
}
.o7f2-mobile-nav-list {
  list-style: none;
}
.o7f2-mobile-nav-list .o7f2-nav-link {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 0;
  border-bottom: 1px solid var(--c-border);
}
.o7f2-mobile-nav-list .o7f2-nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
}

.o7f2-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.o7f2-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/banner-olimp.png") center center / cover no-repeat;
  filter: brightness(0.3);
  z-index: 0;
}
.o7f2-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 5, 53, 0.7) 0%,
    rgba(20, 29, 95, 0.5) 100%
  );
}
.o7f2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.o7f2-hero-badge {
  display: inline-block;
  background: rgba(68, 158, 102, 0.2);
  border: 1px solid var(--c-btn-signup);
  color: #6dde9a;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.o7f2-hero-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.o7f2-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}
.o7f2-hero-sub strong {
  color: var(--c-gold);
}
.o7f2-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.o7f2-btn-hero-signup {
  background: var(--c-btn-signup);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(68, 158, 102, 0.4);
}
.o7f2-btn-hero-signup:hover {
  background: var(--c-btn-signup-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(68, 158, 102, 0.55);
}
.o7f2-btn-hero-login {
  background: rgba(20, 29, 95, 0.8);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.o7f2-btn-hero-login:hover {
  background: rgba(20, 29, 95, 1);
  color: #fff;
}
.o7f2-hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--c-text-muted);
}
.o7f2-trust-sep {
  color: rgba(255, 255, 255, 0.2);
}

.o7f2-section {
  padding: 70px 0;
}
.o7f2-section-alt {
  background: var(--c-section-alt);
}

.o7f2-section-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}
.o7f2-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--c-btn-signup);
  border-radius: 2px;
}
.o7f2-section-sub {
  text-align: center;
  color: var(--c-text-muted);
  margin-bottom: 38px;
  font-size: 15px;
  line-height: 1.6;
}

.o7f2-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
}
.o7f2-info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  margin: 0 auto;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.o7f2-info-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.o7f2-info-table tr:last-child {
  border-bottom: none;
}
.o7f2-info-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.o7f2-info-table td {
  padding: 13px 20px;
  font-size: 14px;
  vertical-align: top;
  color: var(--c-text);
  text-align: left;
}
.o7f2-param {
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
  width: 220px;
  font-family: var(--font-head);
  font-size: 13px;
}

.o7f2-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.o7f2-adv-card {
  flex: 1 1 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.o7f2-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  border-color: rgba(68, 158, 102, 0.4);
}
.o7f2-adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(68, 158, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-btn-signup);
  margin-bottom: 16px;
}
.o7f2-adv-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.o7f2-adv-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.o7f2-video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.o7f2-yt-iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: var(--radius);
  border: 2px solid var(--c-border);
}

.o7f2-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: center;
}
.o7f2-slot-card {
  flex: 1 1 180px;
  max-width: 210px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.o7f2-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(68, 158, 102, 0.5);
}
.o7f2-slot-img-wrap {
  width: 100%;
  overflow: hidden;
}
.o7f2-slot-img-wrap img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.o7f2-slot-card:hover .o7f2-slot-img-wrap img {
  transform: scale(1.06);
}
.o7f2-slot-info {
  padding: 10px 12px 6px;
  text-align: center;
}
.o7f2-slot-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.o7f2-slot-prov {
  font-size: 11px;
  color: var(--c-text-muted);
}
.o7f2-slot-card .o7f2-btn-demo {
  margin-top: 8px;
}

.o7f2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.o7f2-modal.open {
  display: flex;
}
.o7f2-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.o7f2-modal-inner {
  position: relative;
  z-index: 1;
  background: #0c1248;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  width: 95%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: xp3-modal-in 0.25s ease;
}
@keyframes xp3-modal-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.o7f2-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
}
.o7f2-modal-game-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.o7f2-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.o7f2-modal-close:hover {
  color: #fff;
}
.o7f2-modal-body {
  flex: 1;
  overflow: hidden;
}
.o7f2-demo-iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
}
.o7f2-modal-footer {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--c-border);
}
.o7f2-btn-modal-play {
  background: var(--c-btn-signup);
  color: #fff;
  font-size: 14px;
  padding: 12px 28px;
  box-shadow: 0 4px 18px rgba(68, 158, 102, 0.4);
}
.o7f2-btn-modal-play:hover {
  background: var(--c-btn-signup-hover);
  color: #fff;
}

.o7f2-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.o7f2-wheel-canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
#xc91-wheel-canvas {
  border-radius: 50%;
  border: 4px solid var(--c-btn-signup);
  box-shadow: 0 0 32px rgba(68, 158, 102, 0.3);
  display: block;
}
.o7f2-wheel-pointer {
  position: absolute;
  top: -18px;
  font-size: 30px;
  color: var(--c-gold);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  line-height: 1;
}
.o7f2-wheel-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 280px;
}
.o7f2-btn-spin {
  background: var(--c-gold);
  color: #0a0a1a;
  font-size: 15px;
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.35);
}
.o7f2-btn-spin:hover {
  background: #e0a820;
  color: #0a0a1a;
}
.o7f2-btn-spin:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.o7f2-wheel-result {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.o7f2-wheel-result .xp3-win-text {
  color: #4cff80;
}
.o7f2-wheel-result .xp3-lose-text {
  color: var(--c-text-muted);
}
.o7f2-wheel-result .o7f2-btn-signup {
  margin-top: 6px;
}

.o7f2-review-content {
  max-width: 820px;
  margin: 32px auto 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
.o7f2-review-content h2,
.o7f2-review-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.o7f2-review-content h2 {
  font-size: 22px;
}
.o7f2-review-content h3 {
  font-size: 18px;
}
.o7f2-review-content p {
  margin-bottom: 14px;
}
.o7f2-review-content ul,
.o7f2-review-content ol {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.o7f2-review-content li {
  line-height: 1.65;
}
.o7f2-review-content ul li::marker {
  color: var(--c-btn-signup);
}
.o7f2-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow-x: auto;
  display: block;
}
.o7f2-review-content table th,
.o7f2-review-content table td {
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.o7f2-review-content table th {
  background: var(--c-header);
  color: #fff;
  font-family: var(--font-head);
}
.o7f2-review-content a {
  color: var(--c-btn-signup);
}
.o7f2-review-content a:hover {
  color: #fff;
}
.o7f2-review-content strong {
  color: #fff;
}
.o7f2-review-content blockquote {
  border-left: 3px solid var(--c-btn-signup);
  padding: 10px 18px;
  background: rgba(68, 158, 102, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.o7f2-author-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.o7f2-author-photo-wrap {
  flex-shrink: 0;
}
.o7f2-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-btn-signup);
}
.o7f2-author-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.o7f2-author-role {
  color: var(--c-btn-signup);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.o7f2-author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.o7f2-author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.o7f2-author-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.o7f2-author-social:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.o7f2-faq-list {
  max-width: 760px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.o7f2-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.o7f2-faq-item:hover {
  border-color: rgba(68, 158, 102, 0.3);
}
.o7f2-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.o7f2-faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--c-btn-signup);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.o7f2-faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.o7f2-faq-q:hover {
  color: var(--c-btn-signup);
}
.o7f2-faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.o7f2-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding-top: 60px;
}
.o7f2-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
}
.o7f2-footer-brand {
  flex: 1 1 240px;
  max-width: 300px;
}
.o7f2-footer-brand img {
  margin-bottom: 14px;
  height: 40px;
  width: auto;
}
.o7f2-footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.o7f2-footer-nav-col {
  flex: 1 1 160px;
}
.o7f2-footer-nav-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.o7f2-footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.o7f2-footer-nav-list a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.o7f2-footer-nav-list a:hover {
  color: #fff;
}
.o7f2-footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.o7f2-footer-contact-list li {
  font-size: 13px;
  color: var(--c-text-muted);
}
.o7f2-footer-contact-list span {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

.o7f2-footer-payments,
.o7f2-footer-providers {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}
.o7f2-footer-section-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.o7f2-payment-logos,
.o7f2-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.o7f2-pay-badge,
.o7f2-prov-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}
.o7f2-pay-badge:hover,
.o7f2-prov-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.o7f2-footer-legal {
  padding: 24px 0 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.o7f2-copyright {
  color: rgba(255, 255, 255, 0.4);
}

.o7f2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--c-header) 0%, #1a2a88 100%);
  border-top: 2px solid var(--c-btn-signup);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  animation: xp3-widget-in 0.4s ease 1.2s both;
}
@keyframes xp3-widget-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.o7f2-widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.o7f2-widget-bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 2px;
}
.o7f2-widget-bonus-val {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.o7f2-widget-bonus-val strong {
  color: var(--c-gold);
}
.o7f2-btn-widget {
  background: var(--c-btn-signup);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(68, 158, 102, 0.4);
  text-decoration: none;
}
.o7f2-btn-widget:hover {
  background: var(--c-btn-signup-hover);
  color: #fff;
}

body {
  padding-bottom: 80px;
}

@media (max-width: 900px) {
  .o7f2-nav {
    display: none;
  }
  .o7f2-burger {
    display: flex;
  }
  .o7f2-mobile-nav {
    display: block;
  }
  .o7f2-header-btns .o7f2-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
}
@media (max-width: 640px) {
  .o7f2-hero-section {
    min-height: 420px;
    padding: 50px 0;
  }
  .o7f2-hero-actions {
    flex-direction: column;
  }
  .o7f2-btn-hero-signup,
  .o7f2-btn-hero-login {
    width: 100%;
    justify-content: center;
  }
  .o7f2-yt-iframe {
    height: 220px;
  }
  .o7f2-slots-grid {
    gap: 14px;
  }
  .o7f2-slot-card {
    flex: 1 1 140px;
    max-width: none;
  }
  .o7f2-demo-iframe {
    height: 360px;
  }
  .o7f2-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .o7f2-author-links {
    justify-content: center;
  }
  .o7f2-wheel-wrap {
    gap: 28px;
  }
  #xc91-wheel-canvas {
    width: 280px;
    height: 280px;
  }
  .o7f2-widget-inner {
    gap: 10px;
  }
  .o7f2-btn-widget {
    padding: 10px 18px;
    font-size: 13px;
  }
  .o7f2-footer-top {
    gap: 24px;
  }
}

.xp3-d-none {
  display: none !important;
}
.xp3-card-shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.xp3-text-center {
  text-align: center;
}
.xp3-mb-3 {
  margin-bottom: 12px;
}
.xp3-mt-4 {
  margin-top: 16px;
}
.xp3-border-green {
  border-color: var(--c-btn-signup) !important;
}
.xp3-fade-in {
  opacity: 0;
  animation: xp3-fadein 0.5s ease forwards;
}
@keyframes xp3-fadein {
  to {
    opacity: 1;
  }
}
.xp3-hidden-el {
  visibility: hidden;
  pointer-events: none;
}
.xp3-wp-post-class {
  display: block;
}
.xp3-elementor-widget {
  position: relative;
}
.xp3-yoast-breadcrumb {
  display: none;
}
