/* Google Fonts Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --color-header: #22125b;
  --color-footer: #22125b;
  --color-btn-login: #8476b5;
  --color-btn-signup: #ffd571;
  --color-bg: #13083c;
  --color-text-light: #f5f5f5;
  --color-text-dark: #1a1a1a;
  --color-accent: #ffd571;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.g7d4k2x {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.q8m3p9z {
  background: linear-gradient(135deg, var(--color-header) 0%, #2d1875 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.r2n7h5j {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.x5w8m2n {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.x5w8m2n a {
  color: var(--color-text-light);
  text-decoration: none;
  padding: 8px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

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

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

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

.l9q3x7m:hover {
  background-color: #9687c5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132, 118, 181, 0.4);
}

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

.p5d2k8w:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 213, 113, 0.5);
}

.v8n4t2h {
  background-color: #28a745;
  color: white;
  font-size: 12px;
  padding: 6px 12px;
}

.h4x9m7q {
  color: var(--color-text-light);
  font-size: 13px;
  opacity: 0.9;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

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

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

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

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

.z3b6n9k {
  background: linear-gradient(rgba(19, 8, 60, 0.7), rgba(34, 18, 91, 0.8)), url('/banner-o.jpg') center/cover;
  padding: 100px 20px;
  text-align: center;
  margin: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.z3b6n9k::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 213, 113, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.z3b6n9k h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.z3b6n9k p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.z3b6n9k .btn {
  font-size: 18px;
  padding: 15px 40px;
  position: relative;
  z-index: 1;
}

/* Content Blocks */
.s7m2j4v {
  margin: 40px 20px;
  background-color: rgba(34, 18, 91, 0.4);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.s7m2j4v h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--color-accent);
  text-align: center;
  font-weight: 900;
}

.s7m2j4v h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-weight: 700;
}

/* Table */
.w9k5p3x {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.w9k5p3x th,
.w9k5p3x td {
  padding: 15px 20px;
  text-align: left;
  border: 2px solid rgba(132, 118, 181, 0.3);
}

.w9k5p3x th {
  background-color: var(--color-btn-login);
  color: var(--color-text-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.w9k5p3x tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

.w9k5p3x tr:hover {
  background-color: rgba(132, 118, 181, 0.15);
  transition: all 0.3s ease;
}

/* Jackpot Block */
.n4h7t9m {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.j8x3k5q {
  background: linear-gradient(135deg, #8476b5 0%, #6a5a9d 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.j8x3k5q::before {
  content: '💰';
  position: absolute;
  font-size: 100px;
  opacity: 0.1;
  right: -20px;
  top: -10px;
}

.j8x3k5q:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(132, 118, 181, 0.5);
}

.j8x3k5q h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.j8x3k5q .jackpot-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Bonus Cards */
.t2v8n6k {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.b9m4x7p {
  background: linear-gradient(135deg, rgba(255, 213, 113, 0.15) 0%, rgba(132, 118, 181, 0.15) 100%);
  border: 2px solid rgba(132, 118, 181, 0.4);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.b9m4x7p::after {
  content: '🎁';
  position: absolute;
  font-size: 80px;
  opacity: 0.08;
  bottom: -15px;
  right: -10px;
}

.b9m4x7p:hover {
  transform: scale(1.03);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(255, 213, 113, 0.3);
}

.b9m4x7p h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-accent);
  font-weight: 900;
}

.b9m4x7p p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Slots Grid */
.q5k9p2x {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.g7t3m8n {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(132, 118, 181, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.g7t3m8n:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 25px rgba(132, 118, 181, 0.4);
}

.g7t3m8n img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.g7t3m8n h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text-light);
  font-weight: 700;
}

/* Slot Machine Game */
.c4h8v5m {
  background: linear-gradient(135deg, #2d1875 0%, #22125b 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.c4h8v5m h3 {
  margin-bottom: 30px;
  font-size: 28px;
}

.x2w9k5t {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.p7n3j8x {
  width: 100px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.v5k9m2h {
  font-size: 18px;
  padding: 15px 50px;
  margin: 20px 0;
}

.z8t4q3p {
  font-size: 24px;
  color: var(--color-accent);
  margin-top: 20px;
  font-weight: 700;
  min-height: 60px;
}

/* Author Section */
.j3n7v9k {
  background: rgba(132, 118, 181, 0.15);
  border-left: 5px solid var(--color-accent);
  padding: 30px;
  margin: 40px 0;
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
}

.j3n7v9k img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
  object-fit: cover;
}

.d8m4k7q h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.d8m4k7q p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.d8m4k7q a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}

.d8m4k7q a:hover {
  text-decoration: underline;
}

.t9k5m3x {
  background: linear-gradient(135deg, var(--color-footer) 0%, #2d1875 100%);
  padding: 50px 20px 30px;
  margin-top: 60px;
  border-top: 3px solid var(--color-accent);
}

.t9k5m3x .logo img {
  height: 60px;
  margin-bottom: 25px;
}

.r7x4n2v {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.r7x4n2v a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.q2m8j5v {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.q2m8j5v img {
  height: 40px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.q2m8j5v img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.k8x3n5t {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.k8x3n5t img {
  height: 50px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.k8x3n5t img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.h7m2v9x {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sticky Widget */
.n9v4k8m {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #ffb347 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  z-index: 999;
  text-align: center;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.n9v4k8m p {
  color: var(--color-text-dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.n9v4k8m a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  padding: 12px 40px;
  background-color: var(--color-header);
  color: var(--color-text-light);
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.n9v4k8m a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 18, 91, 0.6);
}

/* Content Styling */
.x9m5k2v {
  line-height: 1.8;
}

.x9m5k2v h1,
.x9m5k2v h2,
.x9m5k2v h3,
.x9m5k2v h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-accent);
  font-weight: 700;
}

.x9m5k2v h1 {
  font-size: 36px;
}

.x9m5k2v h2 {
  font-size: 28px;
}

.x9m5k2v h3 {
  font-size: 22px;
}

.x9m5k2v p {
  margin-bottom: 20px;
  font-size: 16px;
}

.x9m5k2v ul,
.x9m5k2v ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.x9m5k2v li {
  margin-bottom: 10px;
}

.x9m5k2v table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.x9m5k2v table th,
.x9m5k2v table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid rgba(132, 118, 181, 0.3);
}

.x9m5k2v table th {
  background-color: var(--color-btn-login);
  font-weight: 700;
}

.x9m5k2v a {
  color: var(--color-accent);
  text-decoration: underline;
}

.x9m5k2v a:hover {
  color: #ffe08a;
}

/* Unused Styles for Uniqueness */
.wp-block-group {
  margin: 0;
}

.elementor-section {
  padding: 0;
}

.yoast-breadcrumbs {
  display: none;
}

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

.entry-content {
  line-height: 1.6;
}

.site-footer {
  background: #000;
}

.widget-area {
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  
  .x5w8m2n {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-header);
    flex-direction: column;
    padding: 30px;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  
  .x5w8m2n.active {
    left: 0;
  }
  
  .z3b6n9k h1 {
    font-size: 32px;
  }
  
  .z3b6n9k p {
    font-size: 16px;
  }
  
  .j3n7v9k {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .j3n7v9k img {
    margin: 0 auto;
  }
  
  .w9k5p3x {
    display: block;
    overflow-x: auto;
  }
  
  .t2v8n6k,
  .q5k9p2x {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
  }
  
  .b9m4x7p,
  .g7t3m8n {
    flex: 0 0 90%;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .z3b6n9k {
    padding: 60px 15px;
  }
  
  .s7m2j4v {
    padding: 20px;
  }
  
  .c4h8v5m {
    padding: 25px 15px;
  }
  
  .p7n3j8x {
    width: 80px;
    height: 100px;
    font-size: 38px;
  }
}
