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

:root {
  --color-primary: #22125b;
  --color-secondary: #8476b5;
  --color-accent: #ffd571;
  --color-bg: #13083c;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --font-main: "Lato", sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Header Styles */
.site-header {
  background: var(--color-primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo-link {
  display: block;
}

.site-logo {
  height: 50px;
  width: auto;
}

.online-players {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
}

.online-indicator {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.online-text {
  font-size: 14px;
  color: var(--color-text-light);
}

.desktop-nav {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-menu a {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.btn-header {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-login {
  background: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-login:hover {
  background: #9688c5;
  transform: translateY(-2px);
}

.btn-signup {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

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

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--color-text-light);
  transition: all 0.3s;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--color-primary);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-menu {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px;
}

/* Hero Section */
.hero-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #1a0d4d 0%, #13083c 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: var(--color-text-light);
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

.hero-cta-btn:hover {
  background: #ffe291;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 213, 113, 0.4);
}

.promo-code-card {
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-secondary);
}

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

.promo-badge {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-light);
}

.promo-code-display {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed var(--color-accent);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.promo-code-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 3px;
}

.promo-bonus-info {
  text-align: center;
  margin-bottom: 25px;
}

.promo-bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.promo-bonus-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.copy-promo-btn,
.activate-promo-btn {
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.copy-promo-btn {
  background: var(--color-secondary);
  color: var(--color-text-light);
}

.copy-promo-btn:hover {
  background: #9688c5;
  transform: translateY(-2px);
}

.copy-promo-btn.copied {
  background: #00cc66;
}

.activate-promo-btn {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.activate-promo-btn:hover {
  background: #ffe291;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 213, 113, 0.3);
}

.promo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff00;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.content-wrapper {
  padding: 40px 0;
}

.content-wrapper h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--color-accent);
  text-align: center;
}

.content-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-text-light);
  margin-top: 40px;
}

.content-wrapper h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text-light);
}

.content-wrapper p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.content-wrapper th,
.content-wrapper td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper th {
  background: var(--color-primary);
  font-weight: 700;
  color: var(--color-text-light);
}

.promo-intro-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid var(--color-accent);
}

/* Advantages Section */
.advantages-section {
  margin-top: 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.advantage-card {
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  border: 1px solid rgba(132, 118, 181, 0.3);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(132, 118, 181, 0.4);
}

.advantage-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.advantage-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.advantage-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Jackpots Section */
.jackpots-section {
  margin-top: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #1a0d4d 0%, #0d0525 100%);
  border-radius: 20px;
}

.jackpots-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.jackpot-card {
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid;
  transition: all 0.3s;
}

.jackpot-card.mega {
  border-color: #ffd700;
}

.jackpot-card.major {
  border-color: #c0c0c0;
}

.jackpot-card.minor {
  border-color: #cd7f32;
}

.jackpot-card:hover {
  transform: scale(1.05);
}

.jackpot-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.jackpot-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.jackpot-currency {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

/* App Section */
.app-section {
  margin-top: 50px;
}

.app-info-table {
  margin: 30px 0;
  overflow-x: auto;
}

.app-info-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.app-info-table th,
.app-info-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-info-table th {
  background: var(--color-primary);
  font-weight: 700;
  color: var(--color-text-light);
}

.app-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
}

.app-store {
  background: #000000;
  color: var(--color-text-light);
}

.google-play {
  background: #01875f;
  color: var(--color-text-light);
}

.apk-download {
  background: var(--color-secondary);
  color: var(--color-text-light);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.app-btn-icon {
  font-size: 32px;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
}

.app-btn-text small {
  font-size: 12px;
  opacity: 0.8;
}

.app-btn-text strong {
  font-size: 18px;
  font-weight: 700;
}

/* Demo Game Section */
.demo-game-section {
  margin-top: 50px;
}

.demo-game-container {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
}

.demo-placeholder {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.demo-placeholder p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* Mini Slot Game */
.mini-slot-game {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slot-machine {
  max-width: 500px;
  margin: 30px auto;
  text-align: center;
}

.slot-display {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.slot-reel {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--color-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slot-spin-btn {
  width: 100%;
  padding: 18px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slot-spin-btn:hover:not(:disabled) {
  background: #ffe291;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 213, 113, 0.4);
}

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

.slot-result {
  margin-top: 30px;
  min-height: 100px;
}

.win-message,
.lose-message {
  padding: 25px;
  border-radius: 15px;
  animation: fadeIn 0.5s;
}

.win-message {
  background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
}

.lose-message {
  background: rgba(255, 255, 255, 0.1);
}

.win-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.bonus-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-accent);
  margin: 15px 0;
}

.claim-bonus-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s;
}

.claim-bonus-btn:hover {
  background: #ffe291;
  transform: scale(1.05);
}

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

/* Reviews Section */
.reviews-section {
  margin-top: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(132, 118, 181, 0.3);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(132, 118, 181, 0.4);
}

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

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
}

.review-author-info {
  flex: 1;
}

.review-author {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--color-text-light);
}

.review-rating {
  font-size: 16px;
}

.review-text {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.review-form-container {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
}

.review-form-container h3 {
  margin-bottom: 25px;
  color: var(--color-accent);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  font-family: var(--font-main);
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

.submit-review-btn {
  padding: 15px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

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

.review-success-message {
  padding: 20px;
  background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  margin-top: 50px;
  padding: 40px 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-accent);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.faq-answer p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: var(--color-accent);
  font-weight: 700;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--color-accent);
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
}

.footer-providers {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-providers h4 {
  text-align: center;
  margin-bottom: 20px;
}

.provider-logos {
  justify-content: center;
}

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

.footer-legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.legal-notice {
  font-weight: 600;
  color: var(--color-accent);
}

.license-info {
  font-style: italic;
}

.footer-author {
  margin-top: 20px;
}

.footer-author p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.footer-author a {
  color: var(--color-secondary);
  font-weight: 600;
}

.author-bio {
  font-style: italic;
}

/* Bonus Widget */
.bonus-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

.widget-content {
  background: linear-gradient(135deg, #2d1b6b 0%, #1f1350 100%);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-accent);
}

.widget-icon {
  font-size: 32px;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-weight: 900;
  font-size: 16px;
  color: var(--color-accent);
}

.widget-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.widget-btn {
  padding: 10px 25px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.widget-btn:hover {
  background: #ffe291;
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }

  .burger-menu {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    gap: 30px;
  }

  .hero-banner {
    flex: 2;
  }

  .promo-code-card {
    flex: 1;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jackpots-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-download-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .promo-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utility Classes */
.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.text-center {
  text-align: center;
}

/* ===== DEMO GAME SECTION ===== */
.demo-game-section {
    margin-top: 40px;
    background: rgba(34, 18, 91, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

.demo-game-section h2 {
    color: var(--color-accent);
    font-size: 26px;
    margin-bottom: 10px;
}

.demo-game-section p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.demo-game-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.demo-game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* mobile */
@media (max-width: 600px) {
    .demo-game-section { padding: 20px 12px; }
    .demo-game-section h2 { font-size: 22px; }
}
/* ================== ADD BLOCK (scoped) ================== */
.add{
    --add-bg:#1a104b;
    --add-panel:#22125b;
    --add-soft:#2b1b63;
    --add-text:#fff;
    --add-muted:#b8b8d1;
    --add-accent:#ffd571;
    --add-brand:#8476b5;

    background: linear-gradient(180deg,var(--add-bg) 0%, #13083c 100%);
    color: var(--add-text);
    padding: 28px 20px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25) inset;
}

/* Typography */
.add h1,.add h2,.add h3,.add h4{
    color: var(--add-accent);
    line-height: 1.25;
    margin: 22px 0 14px;
    text-wrap: balance;
}
.add h1{font-size: clamp(26px,3.4vw,36px);}
.add h2{font-size: clamp(22px,2.6vw,28px);}
.add h3{font-size: clamp(18px,2.1vw,22px); color: var(--add-brand);}
.add p{margin: 12px 0; color: var(--add-text); opacity:.95}
.add ul,.add ol{margin: 12px 0 18px 22px}
.add li{margin: 6px 0;}

/* Links */
.add a{color: var(--add-brand); text-decoration: underline; text-underline-offset: 2px;}
.add a:hover{color: var(--add-accent);}

/* Panels / callouts (optional utility) */
.add .note,
.add .info,
.add .warn{
    padding:14px 16px; border-radius:10px; margin:16px 0;
    background: var(--add-panel); border:1px solid rgba(255,255,255,.12);
}
.add .warn{background:#3a234f; border-color:#ff9f1a66;}
.add .note strong{color:var(--add-accent)}

/* Buttons (utility) */
.add .btn{
    display:inline-block; padding:12px 24px; border-radius:10px; font-weight:800;
    background: var(--add-accent); color:#22125b; border:0; cursor:pointer;
    box-shadow:0 6px 18px rgba(255,213,113,.25); transition:.25s;
}
.add .btn:hover{transform: translateY(-2px); background:#ffbf3d}

/* Tables: desktop look */
.add table{
    width:100%; border-collapse: collapse; margin:18px 0; background: var(--add-panel);
    border-radius:12px; overflow:hidden; /* for modern browsers */
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.add th,.add td{
    padding:12px 14px; border:1px solid rgba(255,255,255,.12); text-align:left;
}
.add th{background: linear-gradient(180deg,var(--add-brand),#6f5fa0); color:#fff; font-weight:800;}
.add tbody tr:nth-child(even){background: rgba(255,255,255,.03);}
.add tbody tr:hover{background: rgba(255,213,113,.10);}

/* Make first column a bit wider on desktop */
.add td:first-child, .add th:first-child{min-width: 220px;}

/* Horizontal scroll on mobile (incl. .roll) */
@media (max-width: 768px){
    .add table{display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap;}
    .add th,.add td{min-width:160px; padding:10px 12px; font-size:14.5px;}
    .add{padding:22px 16px 80px;}           /* запас під можливий sticky-банер */
    /* nice thin scrollbar */
    .add table::-webkit-scrollbar{height:8px}
    .add table::-webkit-scrollbar-thumb{background:rgba(255,255,255,.25); border-radius:4px}
}

/* Optional: sticky first column while scrolling (uncomment if потрібно) */
/*
.add td:first-child, .add th:first-child{
  position: sticky; left: 0; z-index: 2; background: var(--add-panel);
}
*/

/* Images inside content */
.add img{border-radius:10px; display:block; max-width:100%; height:auto;}

/* Spacing helper for the end of page (avoid overlap with sticky widgets) */
.add--pad-bottom{padding-bottom:110px;}
