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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0b1c33; }
::-webkit-scrollbar-thumb { background: #1a3a60; border-radius: 3px; }

input::placeholder { color: #3a5570; }
input:focus {
  border-color: rgba(45,211,111,0.45) !important;
  box-shadow: 0 0 0 3px rgba(45,211,111,0.08) !important;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(45,211,111,0.4); }
  60% { box-shadow: 0 4px 28px rgba(45,211,111,0), 0 0 0 12px rgba(45,211,111,0); }
}

@keyframes goldGlow {
  0%, 100% { text-shadow: 0 2px 20px rgba(245,200,66,0.55), 0 0 40px rgba(245,200,66,0.15); }
  50% { text-shadow: 0 2px 40px rgba(245,200,66,0.95), 0 0 80px rgba(245,200,66,0.4); }
}

body.casino-body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: #0b1c33;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header */
.casino-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #081326;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

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

.casino-footer-logo {
  max-height: 50px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: 10px auto;
}

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

.casino-btn {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  border-radius: 50px;
  padding: 10px 24px;
}

a.casino-btn,
button.casino-btn,
button.casino-btn-hero {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

button.casino-btn,
button.casino-btn-hero,
button.casino-sidebar-btn {
  cursor: pointer;
}

button.casino-btn:active,
button.casino-btn-hero:active,
button.casino-sidebar-btn:active {
  transform: scale(0.98);
}

.casino-sidebar-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.casino-btn-login {
  background: #1a3d6e;
  color: #ffffff;
  border: 1.5px solid #2a5fa0;
}

.casino-btn-login:hover {
  background: #1e4d8e;
  transform: translateY(-1px);
}

.casino-btn-register {
  background: #2dd36f;
  color: #ffffff;
  border: none;
  animation: btnPulse 2.5s ease-in-out infinite;
}

.casino-btn-register:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.casino-btn-hero {
  background: #2dd36f;
  color: #ffffff;
  border: none;
  padding: 15px 56px;
  border-radius: 50px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.5px;
  animation: btnPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.casino-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(45,211,111,0.6);
}

.casino-btn-hero-lg {
  padding: 16px 64px;
  font-size: 18px;
}

/* Hamburger */
.casino-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 10px 4px 2px;
  flex-shrink: 0;
  line-height: 1;
}

/* Sidebar */
.casino-sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  width: 218px;
  bottom: 0;
  background: #081326;
  z-index: 50;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transition: left 0.28s cubic-bezier(0.2,0,0,1);
}

.casino-sidebar-actions {
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.casino-sidebar-btn-login {
  background: #1a3d6e;
  color: #fff;
  border: 1.5px solid #2a5fa0;
}

.casino-sidebar-btn-login:hover { background: #1e4d8e; transform: translateY(-1px); }

.casino-sidebar-btn-register {
  background: #2dd36f;
  color: #fff;
  border: none;
}

.casino-sidebar-btn-register:hover { background: #22c55e; transform: translateY(-1px); }

.casino-sidebar-btn-promo {
  background: #0095df;
  color: #fff;
  border: none;
}

.casino-sidebar-btn-promo:hover { background: #0077b8; transform: translateY(-1px); }

.casino-sidebar-nav {
  display: flex;
  flex-direction: column;
}

.casino-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid transparent;
  text-decoration: none;
  color: rgba(255,255,255,0.68);
  transition: background 0.2s, border-left-color 0.2s, color 0.2s;
}

.casino-sidebar-nav a:hover {
  background: rgba(45,211,111,0.13);
  color: #ffffff;
}

.casino-nav-item-label {
  flex: 1;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.casino-nav-arrow {
  color: #2dd36f;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}

.casino-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 49;
}

.casino-sidebar-backdrop.is-open { display: block; }

/* Main */
.casino-main {
  margin-left: 218px;
  margin-top: 64px;
  min-height: calc(100vh - 64px);
}

/* Hero */
.casino-hero {
  position: relative;
  height: 440px;
  background-image: url('/wp-content/uploads/main-hero.webp');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.casino-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 70% at 50% 50%, rgba(4,9,22,0.08) 0%, rgba(4,9,22,0) 100%);
}

.casino-hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
  z-index: 2;
}

.casino-hero-h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  animation: goldGlow 3s ease-in-out infinite;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

/* Editorial */
.casino-editorial {
  background: #0d1f3c;
  padding: 56px 52px;
}

.casino-h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.casino-title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2dd36f, #00aaff);
  border-radius: 2px;
  margin-bottom: 28px;
}

.casino-content {
  font-size: 16px;
  line-height: 1.82;
  color: #93b4d4;
  text-wrap: pretty;
}

.casino-content h2,
.casino-content h3,
.casino-content h4 {
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
  margin: 32px 0 16px;
}

.casino-content h3 { color: #f5c842; font-size: 21px; font-weight: 700; }

.casino-content p { margin-bottom: 16px; }

.casino-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0 48px;
}

.casino-content thead tr { background: #122d54; }

.casino-content th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.3px;
  color: #7ec8e3;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(45,211,111,0.35);
  white-space: nowrap;
}

.casino-content td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.casino-content tbody tr:nth-child(odd) { background: rgba(255,255,255,0.018); }
.casino-content tbody tr:nth-child(even) { background: rgba(255,255,255,0.012); }
.casino-content tbody tr:first-child { background: rgba(45,211,111,0.07); }

.casino-content blockquote {
  border-left: 4px solid #f5c842;
  padding: 22px 28px;
  background: rgba(245,200,66,0.04);
  border-radius: 0 10px 10px 0;
  margin: 32px 0 52px;
}

.casino-content blockquote p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.78;
  color: #deeaf8;
  margin-bottom: 14px;
}

.casino-content blockquote cite {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f5c842;
  font-style: normal;
  letter-spacing: 1px;
}

.casino-content ul.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-content ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #bdd4ea;
  font-size: 15px;
  line-height: 1.55;
}

.casino-content ul.check-list li::before {
  content: '\2726';
  color: #2dd36f;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
}

.casino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}

.casino-section-cta {
  text-align: center;
  padding: 44px 20px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.casino-section-cta p { color: #93b4d4; font-size: 16px; margin-bottom: 22px; }

.casino-section-cta small {
  display: block;
  color: #2f4560;
  font-size: 12px;
  margin-top: 14px;
}

/* Footer */
.casino-footer-top {
  background: #081326;
  padding: 44px 52px 36px;
  text-align: center;
  border-top: 2px solid rgba(45,211,111,0.18);
}

.casino-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 40px;
  margin-bottom: 4px;
}

.casino-footer-nav a {
  color: #93b4d4;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: color 0.2s;
}

.casino-footer-nav a:hover { color: #2dd36f; }

.casino-footer-providers {
  overflow: hidden;
  position: relative;
  padding-bottom: 44%;
}

.casino-footer-providers img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}

.casino-footer-bottom {
  background: #040d18;
  padding: 30px 52px 26px;
}

.casino-footer-copy {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px;
  text-align: center;
  color: #2d4560;
  font-size: 12px;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 900px) {
  .casino-hamburger { display: flex !important; }
  .casino-sidebar { left: -220px !important; }
  .casino-sidebar.is-open {
    left: 0 !important;
    box-shadow: 8px 0 40px rgba(0,0,0,0.7) !important;
  }
  .casino-main { margin-left: 0 !important; }
  .casino-hero { height: 280px !important; }
  .casino-hero-h1 { font-size: 24px !important; margin-bottom: 20px !important; }
  .casino-editorial { padding: 32px 18px !important; }
  .casino-h2 { font-size: 22px !important; }
  .casino-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .casino-footer-top { padding: 28px 18px !important; }
  .casino-footer-bottom { padding: 18px !important; }
}

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 520px) {
  .casino-hero { height: 200px !important; }
  .casino-hero-h1 { font-size: 18px !important; }
  .casino-header-actions .casino-btn-register { display: none !important; }
}
