.why-choose {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.why-choose .bonus-details {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.why-choose .bonus-intro h2 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.why-choose .bonus-intro p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 10px;
}

.reason-list li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.7;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.reason-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFD700, #FF8C00);
  border-radius: 10px 0 0 10px;
}

.reason-list li:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3), 0 0 24px rgba(255,215,0,0.12);
}

.reason-list .emoji { margin-right: 8px; }

.why-outro { color: #eaeaea; }

.why-gallery { width: 100%; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid a { display: block; transition: transform 0.3s ease, filter 0.3s ease; }
.gallery-grid a.wide { grid-column: span 3; }
.gallery-grid a:hover { transform: scale(1.02); filter: brightness(1.05); }
.about-pro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.about-pro::before {
  content: "";
  position: absolute;
  inset: -10px -10px -30px;
  background: radial-gradient(60% 60% at 20% 0%, rgba(255,215,0,0.08), transparent 60%);
  pointer-events: none;
}

.about-left {
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.5));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  position: relative;
}

.about-left::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.03);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  color: #FFD700;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  text-shadow: 0 1px 8px rgba(255, 215, 0, 0.35);
}

.about-heading {
  margin: 12px 0 10px;
  font-size: 2.1rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.about-intro {
  color: #f2f2f2;
  margin-bottom: 14px;
  font-size: 1.08rem;
  line-height: 1.95;
  max-width: 68ch;
}

.about-left p {
  color: #d8d8d8;
  line-height: 1.95;
  font-size: 1.02rem;
  max-width: 68ch;
}

.about-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,215,0,0.6), rgba(255,255,255,0));
  margin: 8px 0 14px;
}

.about-quote {
  margin: 10px 0 14px;
  padding: 12px 14px;
  border-left: 4px solid #FFD700;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  font-size: 1.05rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 16px;
}

.pillar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pillar i { color: #FFD700; font-size: 1.2rem; }
.pillar strong { color: #FFD700; display: block; font-weight: 800; letter-spacing: 0.2px; }
.pillar span { color: #d0d0d0; font-size: 0.95rem; line-height: 1.6; }

.pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 26px rgba(0,0,0,0.28), 0 0 22px rgba(255,215,0,0.12);
}

/* Improve list readability */
.about-list li { color: #d8d8d8; font-size: 1.02rem; }

@media (max-width: 768px) {
  .about-left { padding: 24px; }
  .about-left p, .about-intro { font-size: 1rem; line-height: 1.9; }
}

.about-cta.compact { gap: 10px; margin-top: 6px; display: flex; flex-wrap: wrap; }

.about-right {
  display: flex;
  justify-content: center;
}

.showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 12;
  perspective: 1000px;
}

.showcase-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #FFD700;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.showcase-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.frame-center { z-index: 3; transform: translate(-50%, -50%) rotate(0deg) scale(1.02); }
.frame-left   { z-index: 2; transform: translate(calc(-50% - 120px), -50%) rotate(-10deg) scale(0.96); }
.frame-right  { z-index: 2; transform: translate(calc(-50% + 120px), -50%) rotate(10deg) scale(0.96); }

.showcase:hover .frame-center { transform: translate(-50%, -50%) rotate(0deg) scale(1.06); box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.35); }
.showcase:hover .frame-left   { transform: translate(calc(-50% - 140px), -50%) rotate(-12deg) scale(0.98); }
.showcase:hover .frame-right  { transform: translate(calc(-50% + 140px), -50%) rotate(12deg) scale(0.98); }

@media (max-width: 768px) {
  .showcase { max-width: 400px; }
  .showcase-frame { width: 70%; }
  .frame-left  { transform: translate(calc(-50% - 90px), -50%) rotate(-8deg) scale(0.96); }
  .frame-right { transform: translate(calc(-50% + 90px), -50%) rotate(8deg) scale(0.96); }
}

@media (max-width: 1024px) {
  .about-pro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-pillars { grid-template-columns: 1fr; }
  .collage { max-width: 380px; }
  .collage .card { width: 78%; }
}

/* Why-choose polish */
.why-choose {
  position: relative;
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: -8px -8px -20px;
  background: radial-gradient(50% 50% at 10% 0%, rgba(255,215,0,0.06), transparent 60%);
  pointer-events: none;
}

.why-choose .bonus-details {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.45)) padding-box,
    conic-gradient(from 200deg at 10% 0%, rgba(255,215,0,0.22), rgba(255,140,0,0.12), rgba(255,215,0,0.22)) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.35), 0 0 60px rgba(255,215,0,0.06);
  backdrop-filter: blur(6px);
}

.why-choose .bonus-intro h2 {
  position: relative;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.why-choose .bonus-intro h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 80px; height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  border-radius: 3px;
}

.reason-list strong { color: #ffffff; }

.gallery-grid img { border-radius: 12px; display: block; }
.gallery-grid a:hover img { box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 26px rgba(255,215,0,0.18); }

@media (max-width: 1024px) {
  .why-choose { grid-template-columns: 1fr; }
}

/* Getting Started (refreshed design) */
.getting-started {
  margin-top: 20px;
  position: relative;
}

.getting-started::before {
  content: "";
  position: absolute;
  inset: -8px -8px -16px;
  background: radial-gradient(60% 60% at 10% 0%, rgba(255, 215, 0, 0.07), transparent 60%);
  pointer-events: none;
}

.getting-started-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)) padding-box,
    conic-gradient(from 180deg at 10% 0%, rgba(255,215,0,0.25), rgba(255,140,0,0.15), rgba(255,215,0,0.25)) border-box;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 60px rgba(255,215,0,0.08);
  backdrop-filter: blur(8px);
}

.getting-started h2 {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  position: relative;
}

.getting-started h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 88px; height: 3px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  border-radius: 3px;
}

.getting-started-lead {
  color: #eaeaea;
  margin-bottom: 14px;
  line-height: 1.9;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.steps li {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 18px 18px 76px;
  min-height: 84px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
  overflow: hidden;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px; top: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-weight: 900;
  display: grid; place-items: center;
  box-shadow: 0 0 16px rgba(255,215,0,0.5), inset 0 0 10px rgba(255,255,255,0.2), 0 0 0 3px rgba(255,215,0,0.25);
}

.steps li::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 50%; height: 100%;
  background: linear-gradient(75deg, transparent 0%, rgba(255,255,255,0.12) 40%, transparent 80%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.25s ease, left 0.6s ease;
}

.steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 38px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.15);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  filter: brightness(1.02);
}

.steps li:hover::after {
  left: 140%;
  opacity: 1;
}

.getting-started strong { color: #FFD700; font-weight: 900; letter-spacing: 0.2px; display: block; margin-bottom: 4px; }
.getting-started .steps li { color: #d9d9d9; line-height: 1.8; }
.getting-started-note { color: var(--text-secondary); margin-top: 4px; }

@media (max-width: 768px) {
  .getting-started-inner { padding: 22px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .steps li { padding: 16px 16px 16px 64px; min-height: 68px; }
  .steps li::before { width: 30px; height: 30px; left: 16px; top: 16px; box-shadow: 0 0 12px rgba(255,215,0,0.45), inset 0 0 8px rgba(255,255,255,0.15), 0 0 0 2px rgba(255,215,0,0.25); }
}

/* Casino Education */
.casino-education { margin-top: 20px; }

.education-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.45)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.casino-education h2 {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.casino-education p {
  color: #d8d8d8;
  line-height: 1.85;
  margin-bottom: 10px;
}

.casino-education p:nth-of-type(2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
}
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}

html { scroll-behavior: smooth; }


a {
  text-decoration: none;
  color: var(--accent-primary);
}

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

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

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: 
    linear-gradient(135deg, #1a0000 0%, #000000 25%, #1a0000 50%, #000000 75%, #1a0000 100%);
  background-size: 400% 400%;
  padding: 60px 50px;
  display: grid;
  place-items: center;
  min-height: 70vh;
  top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 0 40px rgba(255, 215, 0, 0.2),
    inset 0 0 60px rgba(197, 1, 2, 0.15);
  animation: casinoBgShift 8s ease infinite;
}

@keyframes casinoBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.casino-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.casino-particles .particle {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 215, 0, 0.4);
  animation: floatParticle 15s infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.casino-particles .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.casino-particles .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.casino-particles .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.casino-particles .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; }
.casino-particles .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; }
.casino-particles .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.casino-particles .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 14s; }
.casino-particles .particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 16s; }
.casino-particles .particle:nth-child(9) { left: 15%; animation-delay: 1.5s; animation-duration: 13s; }
.casino-particles .particle:nth-child(10) { left: 25%; animation-delay: 3.5s; animation-duration: 15s; }
.casino-particles .particle:nth-child(11) { left: 35%; animation-delay: 5.5s; animation-duration: 17s; }
.casino-particles .particle:nth-child(12) { left: 85%; animation-delay: 0.5s; animation-duration: 12s; }

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.casino-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.1) 50%,
    transparent 70%
  );
  animation: casinoShine 6s infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes casinoShine {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

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

.hero-badge-wrapper {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: #FFD700;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(255, 215, 0, 0.4),
      inset 0 0 20px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(255, 215, 0, 0.7),
      inset 0 0 25px rgba(255, 215, 0, 0.2);
  }
}

.sparkle {
  font-size: 1.2rem;
  animation: sparkleSpin 1.5s linear infinite;
}

@keyframes sparkleSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.casino-title {
  margin: 25px 0 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-glow {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 165, 0, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes titleGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 215, 0, 1));
  }
}

.title-sub {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.casino-tagline {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.tagline-animate {
  display: inline-block;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  animation: taglinePulse 2s ease-in-out infinite;
}

.tagline-animate:nth-child(2) {
  animation-delay: 0.4s;
}

.tagline-animate:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes taglinePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-jackpot {
  position: relative;
  background: linear-gradient(135deg, #FF0000 0%, #C50102 50%, #8B0000 100%);
  border: 3px solid #FFD700;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 0 30px rgba(255, 0, 0, 0.6),
    0 0 60px rgba(255, 215, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-jackpot:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 40px rgba(255, 0, 0, 0.8),
    0 0 80px rgba(255, 215, 0, 0.6),
    inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: #000000;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 40px rgba(255, 215, 0, 0.8),
    inset 0 0 25px rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.15));
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-text strong {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Engagement section */
.engagement-section {
  margin-top: 30px;
  position: relative;
}

.engagement-section::before {
  content: "";
  position: absolute;
  inset: -10px -10px -20px;
  background: radial-gradient(55% 55% at 15% 0%, rgba(255,215,0,0.08), transparent 65%);
  pointer-events: none;
}

.engagement-inner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)) padding-box,
    conic-gradient(from 200deg at 10% 0%, rgba(255,215,0,0.2), rgba(255,140,0,0.12), rgba(255,215,0,0.2)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.45), 0 0 80px rgba(255,215,0,0.08);
  overflow: hidden;
}

.live-header {
  display: flex;
  justify-content: flex-end;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.45);
  color: #ff5757;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255,0,0,0.35);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5757;
  box-shadow: 0 0 12px rgba(255,0,0,0.8);
  animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; }
}

.engagement-title {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
  letter-spacing: 0.3px;
}

.engagement-subtitle {
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.live-notifications {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  min-height: 48px;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.stat-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,215,0,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4), 0 0 26px rgba(255,215,0,0.12);
}

.stat-card:hover::after { opacity: 1; }

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 14px rgba(255,215,0,0.4);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.stat-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52ff73;
  box-shadow: 0 0 10px rgba(82,255,115,0.7);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.recent-winners {
  margin-bottom: 28px;
}

.winners-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.winners-carousel {
  display: grid;
  gap: 12px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.winner-item:hover {
  transform: translateX(4px);
  border-color: rgba(255,215,0,0.18);
}

.winner-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: rgba(255,255,255,0.08);
}

.winner-info {
  flex: 1;
}

.winner-name {
  font-weight: 800;
}

.winner-game {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.winner-amount {
  font-weight: 900;
  color: #52ff73;
  text-shadow: 0 0 10px rgba(82,255,115,0.4);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.badge-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text strong {
  display: block;
  color: #fff;
}

.badge-text span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.engagement-cta {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,215,0,0.2), transparent 60%);
  filter: blur(40px);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn-engagement {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
}

@media (max-width: 768px) {
  .engagement-inner { padding: 24px; }
  .live-badge { justify-content: center; width: 100%; }
  .winner-item { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stat-card { padding: 16px; }
  .stat-value { font-size: 1.6rem; }
}

/* Why choose enhancements */
.why-choose {
  margin-top: 30px;
}

.why-choose-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.5)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
}

.why-choose-inner h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.why-banner {
  position: relative;
  margin-bottom: 22px;
  border-radius: 16px;
  overflow: hidden;
}

.banner-link {
  display: block;
  position: relative;
}

.banner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.05));
  transition: opacity 0.3s ease;
}

.banner-link:hover .banner-overlay {
  opacity: 0;
}

.why-choose-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
}

.why-intro {
  margin-bottom: 16px;
}

.why-lead {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 6px;
}

.why-subtitle {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .why-choose-inner { padding: 22px; }
  .why-banner { margin-bottom: 18px; }
}

/* Casino bonuses */
.casino-bonuses {
  margin-top: 30px;
}

.bonuses-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.48)) padding-box,
    conic-gradient(from 120deg at 15% 0%, rgba(255,215,0,0.25), rgba(255,140,0,0.12), rgba(255,215,0,0.25)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
}

.bonuses-inner h2 {
  font-size: 1.9rem;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
}

.bonuses-intro,
.bonuses-trust,
.bonuses-conclusion {
  color: #e0e0e0;
  margin-bottom: 12px;
  line-height: 1.9;
}

.bonuses-guide {
  margin: 24px 0;
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.bonuses-guide h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.bonuses-tips {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
}

.bonuses-tips li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bonuses-tips li:hover {
  transform: translateY(-3px);
  border-color: rgba(255,215,0,0.2);
}

.tip-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.tip-content strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.tip-content span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .bonuses-inner { padding: 22px; }
  .bonuses-tips { grid-template-columns: 1fr; }
}

/* RTP & Volatility */
.rtp-volatility {
  margin-top: 30px;
}

.rtp-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.68), rgba(0,0,0,0.5)) padding-box,
    conic-gradient(from 240deg at 85% 0%, rgba(255,215,0,0.22), rgba(255,140,0,0.1), rgba(255,215,0,0.22)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
}

#rtp-title {
  font-size: 1.9rem;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
}

.rtp-intro,
.rtp-conclusion {
  color: #e2e2e2;
  margin-bottom: 14px;
  line-height: 1.9;
}

.rtp-explain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 20px 0;
}

.rtp-concept {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.rtp-concept::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,215,0,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rtp-concept:hover::after { opacity: 1; }

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

.concept-header h3 {
  font-size: 1.4rem;
  color: #fff;
}

.concept-badge {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #FFD700;
  background: rgba(255,215,0,0.08);
}

.concept-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.concept-example {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.concept-example strong {
  display: block;
  color: #FFD700;
  margin-bottom: 6px;
}

.volatility-types {
  display: grid;
  gap: 10px;
}

.volatility-item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}

.volatility-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.08);
}

.volatility-info strong {
  color: #fff;
  font-weight: 800;
  display: block;
}

.volatility-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .rtp-inner { padding: 22px; }
  .rtp-explain { grid-template-columns: 1fr; }
}

/* Game selection */
.game-selection {
  margin-top: 30px;
}

.selection-inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.48)) padding-box,
    conic-gradient(from 60deg at 10% 0%, rgba(255,215,0,0.22), rgba(255,140,0,0.1), rgba(255,215,0,0.22)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 42px rgba(0,0,0,0.45);
}

#selection-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.selection-intro,
.selection-conclusion {
  color: #e2e2e2;
  margin-bottom: 16px;
  line-height: 1.85;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.selection-card {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.selection-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255,215,0,0.2);
  box-shadow: 0 18px 38px rgba(0,0,0,0.45), 0 0 24px rgba(255,215,0,0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 0 16px rgba(255,215,0,0.2);
}

.selection-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}

.selection-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .selection-inner { padding: 22px; }
}

.about-us {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.about-neo::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 0, 0.06));
  filter: blur(30px);
  z-index: -1;
}

.about-neo::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 40%;
  height: 140%;
  background: conic-gradient(from 180deg, rgba(255, 215, 0, 0.08), transparent 40%);
  filter: blur(30px);
  pointer-events: none;
}

.about-media {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.media-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  position: relative;
}

/* Diamond frame */
.media-frame--diamond {
  transform: rotate(45deg);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 165, 0, 0.2));
  padding: 14px;
  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.25),
    inset 0 0 20px rgba(255, 215, 0, 0.15);
}

.media-frame--diamond img {
  transform: rotate(-45deg);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Orbiting chips/icons */
.media-frame .orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  font-size: 1.2rem;
  animation: orbitSpin 10s linear infinite;
}

.media-frame .orbit-1 { transform: translate(-50%, -50%) rotate(0deg) translate(52%); animation-duration: 12s; }
.media-frame .orbit-2 { transform: translate(-50%, -50%) rotate(60deg) translate(52%); animation-duration: 13s; }
.media-frame .orbit-3 { transform: translate(-50%, -50%) rotate(120deg) translate(52%); animation-duration: 11s; }
.media-frame .orbit-4 { transform: translate(-50%, -50%) rotate(180deg) translate(52%); animation-duration: 12.5s; }
.media-frame .orbit-5 { transform: translate(-50%, -50%) rotate(240deg) translate(52%); animation-duration: 14s; }
.media-frame .orbit-6 { transform: translate(-50%, -50%) rotate(300deg) translate(52%); animation-duration: 15s; }

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg) translate(52%); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translate(52%); }
}

/* Gold beveled frame */
.media-frame--gold {
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #3a2a00, #2b1f00);
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.25),
    inset 0 0 40px rgba(255, 215, 0, 0.2);
  position: relative;
}

.media-frame--gold::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.media-frame--gold img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Ticket/notched frame */
.media-frame--ticket {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 215, 0, 0.6);
  clip-path: path('M16,0 H calc(100% - 16) A16,16 0 0 1 calc(100%),16 V calc(100% - 16) A16,16 0 0 1 calc(100% - 16),100% H16 A16,16 0 0 1 0,calc(100% - 16) V16 A16,16 0 0 1 16,0 Z');
}

.media-frame--ticket img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.media-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.about-content {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)) padding-box,
    conic-gradient(from 90deg, rgba(255, 215, 0, 0.6), rgba(255, 0, 0, 0.4), rgba(255, 215, 0, 0.6)) border-box;
  border: 2px solid transparent;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.about-ribbon {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 165, 0, 0.18));
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  color: #FFD700;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.about-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-lead {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-steps {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 14px 0;
}

.about-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
}

.about-steps .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.about-steps strong {
  color: #fff;
}

.about-steps p {
  color: var(--text-secondary);
  margin: 4px 0 0 0;
}

.about-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 14px 0;
}

.about-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* Marquee ticker */
.about-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 12px;
}

.about-ticker .ticker-track {
  display: inline-block;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  letter-spacing: 1px;
  animation: tickerMove 16s linear infinite;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-highlight {
  margin: 10px 0 16px;
  padding: 12px 16px;
  border-left: 4px solid #FFD700;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.about-us-intro h2 {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.about-us-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-header h2 {
  font-size: 1.9rem;
  color: #FFD700;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.about-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.about-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.about-body p {
  margin-bottom: 10px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-feature {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 12px 28px rgba(0,0,0,0.3), 0 0 24px rgba(255,215,0,0.12);
}

.about-feature i {
  color: #FFD700;
  font-size: 1.2rem;
}

.about-feature strong {
  color: #fff;
  font-weight: 700;
}

.about-feature span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-statbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-statbar .stat {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.about-statbar .stat strong {
  display: block;
  color: #FFD700;
  font-size: 1.2rem;
}

.about-statbar .stat span {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #fff;
}

.bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.bonus-pro .bonus-intro h2 {
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 8px;
}

.bonus-pro .bonus-intro p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 10px;
}

.bonus-list li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.7;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bonus-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 16px 34px rgba(0,0,0,0.35), 0 0 26px rgba(255,215,0,0.14);
}

.bonus-list strong { color: #FFD700; }

.bonus-list .emoji {
  margin-right: 8px;
}

.bonus-outro {
  color: #eaeaea;
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* New frames for bonus images */
.frame-gold {
  border: 3px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2), 0 2px 10px rgba(0,0,0,0.35);
}

.frame-ticket {
  border: 2px dashed rgba(255, 215, 0, 0.75);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2), 0 2px 10px rgba(0,0,0,0.35);
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.bonus-intro h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35), 0 0 24px rgba(255,215,0,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.45)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.games-pro .games-intro h2 {
  font-size: 1.8rem;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.games-pro .games-lead {
  color: #eaeaea;
  margin-bottom: 6px;
}

.games-pro .games-seo {
  color: var(--text-secondary);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.games-cats {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.game-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 16px 34px rgba(0,0,0,0.38), 0 0 26px rgba(255,215,0,0.14);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.game-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.games-cats .game-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 6px 0 8px;
  letter-spacing: 0.2px;
}

.game-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.game-meta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.game-meta span { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); padding: 6px 10px; border-radius: 999px; font-size: 0.85rem; }

.games-geo p { color: var(--text-secondary); font-size: 0.95rem; text-align: center; }

/* Games CTA buttons styling alignment */
.games-cats .game-card .btn.btn-ghost {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.games-cats .game-card .btn.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* Subtle reveal animation */
@keyframes cardReveal {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.games-cats .game-card { animation: cardReveal 0.5s ease both; }
.games-cats .game-card:nth-child(2) { animation-delay: 0.05s; }
.games-cats .game-card:nth-child(3) { animation-delay: 0.1s; }

.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.45)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)) border-box;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.faq h3 {
  font-size: 1.5rem;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6b3 80%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.footer {
  padding: 40px 20px;
  margin-top: 40px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.75)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)) border-box;
  border-top: 2px solid transparent;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4), inset 0 6px 20px rgba(255,215,0,0.06);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.25));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .about-us {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-content {
    max-width: 100%;
    border-radius: 10px;
  }

  .about-content {
    padding: 20px;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px 20px;
  }

  .title-glow {
    font-size: 2.5rem;
  }

  .title-sub {
    font-size: 1.2rem;
  }

  .casino-tagline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .btn-jackpot,
  .btn-gold {
    width: 100%;
    padding: 16px 30px;
    font-size: 1rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-statbar {
    grid-template-columns: 1fr;
  }

  .about-us-intro h2 {
    font-size: 1.4rem;
  }

  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 25px 15px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 10px 18px;
  }

  .title-glow {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .title-sub {
    font-size: 1rem;
  }

  .casino-tagline {
    font-size: 0.95rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .btn-jackpot,
  .btn-gold {
    width: 100%;
    padding: 14px 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-text strong {
    font-size: 1.1rem;
  }

  .about-us-intro {
    padding: 15px;
  }

  .bonus-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}