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

body {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #211e1c;
  color: #e8e6e3;
  line-height: 1.7;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.box {
  background: rgba(49, 45, 43, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.header {
  background: #312d2b;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-nav a {
  color: #d7cec5;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
  font-weight: 500;
}

.header-nav a:hover {
  color: #d5812d;
}

.header-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-login {
  background: #d7cec5;
  color: #211e1c;
}

.btn-login:hover {
  background: #c4bbb2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 206, 197, 0.4);
}

.btn-signup {
  background: #d5812d;
  color: #fff;
}

.btn-signup:hover {
  background: #c27424;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
}

.online-count {
  background: rgba(213, 129, 45, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: #d5812d;
  border: 1px solid #d5812d;
}

.online-count .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #d7cec5;
  transition: 0.3s;
}

.hero-section {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 450px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 40px;
  background: rgba(33, 30, 28, 0.85);
  border-radius: 15px;
  max-width: 700px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #d5812d;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e8e6e3;
}

.hero-btn {
  background: linear-gradient(135deg, #d5812d, #f39c3f);
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(213, 129, 45, 0.5);
}

.jackpot-section {
  background: linear-gradient(135deg, #312d2b, #3d3835);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.jackpot-title {
  text-align: center;
  font-size: 32px;
  color: #d5812d;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.jackpot-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.jackpot-card {
  background: rgba(213, 129, 45, 0.1);
  border: 2px solid #d5812d;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s;
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 129, 45, 0.3);
}

.jackpot-card h3 {
  color: #d7cec5;
  font-size: 18px;
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 36px;
  color: #d5812d;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(213, 129, 45, 0.5);
}

.winners-section {
  padding: 30px;
  background: #312d2b;
  border-radius: 15px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 28px;
  color: #d5812d;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  overflow-x: auto;
  display: block;
}

.winners-table table {
  width: 100%;
  min-width: 600px;
}

.winners-table th,
.winners-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(215, 206, 197, 0.2);
}

.winners-table th {
  background: rgba(213, 129, 45, 0.3);
  color: #d5812d;
  font-weight: 700;
  text-transform: uppercase;
}

.winners-table tr:nth-child(even) {
  background: rgba(49, 45, 43, 0.5);
}

.winners-table tr:hover {
  background: rgba(213, 129, 45, 0.1);
}

.app-section {
  background: linear-gradient(135deg, #3d3835, #312d2b);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.app-info-table {
  width: 100%;
  margin-bottom: 25px;
  border-collapse: collapse;
}

.app-info-table td {
  padding: 12px 15px;
  border: 1px solid rgba(215, 206, 197, 0.2);
}

.app-info-table td:first-child {
  font-weight: 700;
  color: #d7cec5;
  width: 40%;
}

.app-downloads {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.download-btn {
  background: #312d2b;
  border: 2px solid #d5812d;
  color: #d7cec5;
  padding: 12px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.download-btn:hover {
  background: #d5812d;
  color: #fff;
  transform: scale(1.05);
}


.wheel-game-section {
  background: #312d2b;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.wheel-container {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 30px auto;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #d5812d;
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  background: conic-gradient(
    #d5812d 0deg 45deg,
    #312d2b 45deg 90deg,
    #d5812d 90deg 135deg,
    #312d2b 135deg 180deg,
    #d5812d 180deg 225deg,
    #312d2b 225deg 270deg,
    #d5812d 270deg 315deg,
    #312d2b 315deg 360deg
  );
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #d5812d;
  z-index: 10;
}

.spin-btn {
  background: linear-gradient(135deg, #d5812d, #f39c3f);
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s;
}

.spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(213, 129, 45, 0.5);
}

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

.wheel-result {
  margin-top: 30px;
  padding: 20px;
  background: rgba(213, 129, 45, 0.2);
  border-radius: 10px;
  display: none;
}

.wheel-result.show {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.reviews-section {
  padding: 30px;
  background: #312d2b;
  border-radius: 15px;
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(61, 56, 53, 0.6);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(215, 206, 197, 0.2);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d5812d;
}

.review-author h4 {
  color: #d7cec5;
  font-size: 16px;
  margin-bottom: 5px;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
}

.review-text {
  color: #e8e6e3;
  line-height: 1.6;
  font-size: 14px;
}

.review-form {
  background: rgba(61, 56, 53, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #d7cec5;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(215, 206, 197, 0.3);
  border-radius: 8px;
  background: rgba(33, 30, 28, 0.8);
  color: #e8e6e3;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #d5812d;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

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


.footer {
  background: #312d2b;
  padding: 40px 30px;
  border-radius: 15px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

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

.footer-menu {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-menu-col h4 {
  color: #d5812d;
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
}

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

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

.footer-menu-col ul li a {
  color: #d7cec5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-menu-col ul li a:hover {
  color: #d5812d;
}

.payment-providers {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin: 25px 0;
  justify-content: center;
}

.payment-logo {
  background: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #312d2b;
}

.copyright {
  text-align: center;
  color: #d7cec5;
  font-size: 13px;
  padding-top: 25px;
  border-top: 1px solid rgba(215, 206, 197, 0.2);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #d5812d, #f39c3f);
  padding: 15px;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

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

.widget-btn {
  background: #fff;
  color: #d5812d;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}

.widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.text h1 {
  font-size: 36px;
  color: #d5812d;
  margin-bottom: 20px;
}

.text h2 {
  font-size: 28px;
  color: #d7cec5;
  margin: 30px 0 15px;
}

.text h3 {
  font-size: 22px;
  color: #d7cec5;
  margin: 25px 0 12px;
}

.text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.text ul,
.text ol {
  margin: 15px 0 15px 25px;
}

.text ul li,
.text ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.text table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
}

.text table th,
.text table td {
  padding: 12px 15px;
  border: 1px solid rgba(215, 206, 197, 0.2);
  text-align: left;
}

.text table th {
  background: rgba(213, 129, 45, 0.3);
  color: #d5812d;
  font-weight: 700;
}

.text a {
  color: #d7cec5;
  text-decoration: underline;
  transition: color 0.3s;
}

.text a:hover {
  color: #d5812d;
}

.zx9k2m { display: none; }
.p4l8n { opacity: 0; }
.r7t3w { visibility: hidden; }
.m2k9x { position: absolute; left: -9999px; }
.g5h8j { width: 0; height: 0; }


@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #312d2b;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .header-nav.active {
    display: flex;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .jackpot-grid {
    flex-direction: column;
  }

  .wheel-container {
    width: 280px;
    height: 280px;
  }

  .sticky-widget {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .widget-text {
    font-size: 14px;
  }
}

.container.fdks {
  --fdks-bg: rgba(49, 45, 43, 0.55);
  --fdks-bg-2: rgba(61, 56, 53, 0.55);
  --fdks-border: rgba(215, 206, 197, 0.16);
  --fdks-text: #e8e6e3;
  --fdks-muted: rgba(232, 230, 227, 0.78);
  --fdks-accent: #d5812d;
  --fdks-accent-2: #f39c3f;
  --fdks-link: #f0d1a5;
  --fdks-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);

  margin: 24px auto;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(49, 45, 43, 0.55), rgba(33, 30, 28, 0.2));
  border: 1px solid var(--fdks-border);
  border-radius: 16px;
  box-shadow: var(--fdks-shadow);
  color: var(--fdks-text);
}

.container.fdks > *:first-child {
  margin-top: 0;
}

.container.fdks > *:last-child {
  margin-bottom: 0;
}

.container.fdks {
  font-size: clamp(15px, 0.95vw + 12px, 18px);
  line-height: 1.75;
  letter-spacing: 0.1px;
}

.container.fdks p {
  margin: 0 0 14px;
  color: var(--fdks-muted);
}

.container.fdks h1,
.container.fdks h2,
.container.fdks h3,
.container.fdks h4 {
  margin: 26px 0 12px;
  color: var(--fdks-text);
  letter-spacing: 0.2px;
}

.container.fdks h1 {
  font-size: clamp(26px, 2.2vw + 18px, 44px);
  line-height: 1.18;
}

.container.fdks h2 {
  font-size: clamp(20px, 1.2vw + 16px, 30px);
  line-height: 1.25;
  padding-top: 10px;
  border-top: 1px solid var(--fdks-border);
}

.container.fdks h3 {
  font-size: clamp(18px, 0.9vw + 15px, 24px);
  line-height: 1.28;
}

.container.fdks h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.container.fdks a {
  color: var(--fdks-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
  word-break: break-word;
}

.container.fdks a:hover {
  color: var(--fdks-accent-2);
}

.container.fdks a:focus-visible {
  outline: 2px solid rgba(213, 129, 45, 0.6);
  outline-offset: 3px;
  border-radius: 8px;
}

.container.fdks strong {
  color: var(--fdks-text);
}

.container.fdks em {
  color: rgba(232, 230, 227, 0.9);
}

.container.fdks ul,
.container.fdks ol {
  margin: 14px 0 18px;
  padding-left: 22px;
  color: var(--fdks-muted);
}

.container.fdks li {
  margin: 8px 0;
}

.container.fdks ul li::marker {
  color: rgba(213, 129, 45, 0.8);
}

.container.fdks ol li::marker {
  color: rgba(213, 129, 45, 0.9);
  font-weight: 700;
}

.container.fdks hr {
  border: 0;
  border-top: 1px solid var(--fdks-border);
  margin: 22px 0;
}

.container.fdks blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--fdks-bg-2);
  border: 1px solid var(--fdks-border);
  border-left: 4px solid rgba(213, 129, 45, 0.85);
  border-radius: 12px;
  color: rgba(232, 230, 227, 0.88);
}

.container.fdks code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.12em 0.35em;
  border: 1px solid rgba(215, 206, 197, 0.2);
  background: rgba(33, 30, 28, 0.65);
  border-radius: 8px;
  color: rgba(240, 209, 165, 0.95);
}

.container.fdks pre {
  margin: 16px 0 20px;
  padding: 14px 16px;
  background: rgba(33, 30, 28, 0.7);
  border: 1px solid var(--fdks-border);
  border-radius: 14px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.container.fdks pre code {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--fdks-text);
  font-size: 0.95em;
}

.container.fdks table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 22px;
  border: 1px solid var(--fdks-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(33, 30, 28, 0.25);
}

.container.fdks th,
.container.fdks td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--fdks-border);
  border-right: 1px solid var(--fdks-border);
  text-align: left;
  vertical-align: top;
}

.container.fdks tr:last-child td {
  border-bottom: 0;
}

.container.fdks th:last-child,
.container.fdks td:last-child {
  border-right: 0;
}

.container.fdks th {
  background: rgba(213, 129, 45, 0.18);
  color: rgba(213, 129, 45, 0.95);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.container.fdks tr:nth-child(even) td {
  background: rgba(49, 45, 43, 0.32);
}

.container.fdks img,
.container.fdks video,
.container.fdks iframe {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.container.fdks .fdks-card {
  background: var(--fdks-bg);
  border: 1px solid var(--fdks-border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.container.fdks .fdks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(213, 129, 45, 0.35);
  background: rgba(213, 129, 45, 0.12);
  color: rgba(213, 129, 45, 0.98);
  font-weight: 700;
  font-size: 0.9em;
}

.container.fdks .fdks-cta {
  margin: 18px 0 22px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(213, 129, 45, 0.28);
  background: linear-gradient(135deg, rgba(213, 129, 45, 0.22), rgba(243, 156, 63, 0.14));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.container.fdks .fdks-cta strong {
  font-size: 1.05em;
}

.container.fdks .fdks-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fdks-accent), var(--fdks-accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(213, 129, 45, 0.28);
  white-space: nowrap;
}

.container.fdks .fdks-cta a:hover {
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .container.fdks {
    margin: 18px auto;
    border-radius: 14px;
  }

  .container.fdks h2 {
    margin-top: 22px;
  }
}

@media (max-width: 768px) {
  .container.fdks {
    padding: 16px;
    border-radius: 14px;
  }

  .container.fdks p {
    margin-bottom: 12px;
  }

  .container.fdks ul,
  .container.fdks ol {
    padding-left: 18px;
  }

  .container.fdks table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .container.fdks th,
  .container.fdks td {
    padding: 10px 12px;
    white-space: nowrap;
  }

  .container.fdks .fdks-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .container.fdks .fdks-cta a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container.fdks {
    padding: 14px;
  }

  .container.fdks h1 {
    letter-spacing: 0;
  }

  .container.fdks h2 {
    padding-top: 8px;
  }
}

