/* ==========================================================================
   PK116 App (pk116app.net) - Premium 357PK Style Dark Gaming Theme CSS
   ========================================================================== */

:root {
  --bg-dark: #050b08;
  --bg-card: rgba(10, 22, 16, 0.88);
  --bg-card-hover: rgba(18, 38, 28, 0.95);
  --bg-glass: rgba(0, 255, 65, 0.05);
  
  --gold-primary: #00FF41;
  --gold-secondary: #10B981;
  --gold-gradient: linear-gradient(135deg, #00FF41 0%, #10B981 50%, #059669 100%);
  
  --emerald-primary: #00FF41;
  --emerald-gradient: linear-gradient(135deg, #00FF41 0%, #10B981 50%, #047857 100%);
  
  --silver-primary: #FFFFFF;
  --silver-secondary: #E2E8F0;
  --silver-gradient: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);

  --purple-accent: #059669;
  --purple-glow: rgba(16, 185, 129, 0.4);
  --purple-gradient: linear-gradient(135deg, #10B981 0%, #047857 100%);
  
  --neon-green: #00FF41;
  --neon-green-glow: rgba(0, 255, 65, 0.35);
  --crimson-accent: #FF3366;
  --cyan-accent: #38BDF8;
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-gold: #00FF41;
  
  --border-glass: rgba(0, 255, 65, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-gold: 0 10px 30px rgba(0, 255, 65, 0.3);
  --shadow-purple: 0 10px 30px rgba(16, 185, 129, 0.35);
  --shadow-neon: 0 0 20px rgba(0, 255, 65, 0.4);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Core Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 255, 65, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 7, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-badge {
  background: var(--gold-gradient);
  color: #000;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Glass & Glowing Buttons */
.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.45);
}

.btn-glow {
  background: var(--purple-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-purple);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #fff;
}

/* Jackpot Ticker Marquee */
.jackpot-ticker-bar {
  background: linear-gradient(90deg, #180036 0%, #30005a 50%, #180036 100%);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  overflow: hidden;
  font-size: 14px;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.jackpot-fixed-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  background: rgba(14, 7, 30, 0.6);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.jackpot-badge {
  background: #FF1493;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.jackpot-amount {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--gold-primary);
  font-size: 16px;
  white-space: nowrap;
  margin-right: 0;
}

.marquee-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marquee-content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

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

/* Hero Section */
.hero-section {
  padding: 70px 0 50px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

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

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-card-preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  background: #140d2b;
  border: 10px solid #2a1b52;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(138, 43, 226, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.phone-header {
  background: #0b0717;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.phone-screen {
  padding: 16px;
}

.mini-banner {
  background: var(--purple-gradient);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.mini-banner h4 {
  font-size: 20px;
  font-weight: 900;
}

.mini-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-game-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--border-subtle);
}

.mini-game-item i {
  font-size: 20px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

/* Glass Cards Grid */
.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 35px;
}

.section-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.category-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-tab.active, .category-tab:hover {
  background: var(--purple-accent);
  color: #fff;
  border-color: var(--purple-accent);
  box-shadow: 0 5px 15px var(--purple-glow);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  padding: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.35 ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
}

.game-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--crimson-accent);
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.game-card-icon {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(26, 18, 48, 0.8) 100%);
  border: 2px solid var(--border-glass);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.game-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.game-rating i {
  color: var(--gold-primary);
}

.rtp-badge {
  background: rgba(0, 255, 127, 0.15);
  color: var(--neon-green);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px var(--neon-green-glow);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0, 255, 127, 0.1);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--neon-green);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 14px;
}

/* Payment Partners Marquee */
.payment-bar {
  background: rgba(18, 12, 38, 0.9);
  padding: 30px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 60px 0;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}

.payment-pill i {
  font-size: 22px;
  color: var(--gold-primary);
}

/* Referral Calculator Card */
.calculator-box {
  background: linear-gradient(135deg, rgba(30, 18, 60, 0.9) 0%, rgba(15, 10, 30, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-gold);
}

.calc-range-wrapper {
  margin: 30px 0;
}

.calc-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #2a1b52;
  outline: none;
  accent-color: var(--gold-primary);
}

.calc-result-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px dashed var(--gold-primary);
}

.calc-amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--neon-green);
  font-family: var(--font-heading);
}

/* Download Section / Page */
.download-hero-card {
  background: linear-gradient(135deg, #240a4a 0%, #100624 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}

.install-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--gold-primary);
  color: #000;
  font-weight: 900;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  display: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #140d2b;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

/* Form Styling */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Floating Quick Support Button */
.floating-support {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.fab-telegram { background: #0088cc; }
.fab-whatsapp { background: #25D366; }

.fab-btn:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: #07040f;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  margin-top: 80px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
}

/* Mobile Navigation Drawer Styles */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  background: #050b08;
  border-left: 2px solid var(--gold-primary);
  z-index: 1100;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.mobile-nav-item i {
  width: 20px;
  text-align: center;
  color: var(--gold-primary);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: rgba(0, 255, 65, 0.12);
  color: #fff;
  border-left: 3px solid var(--gold-primary);
}

/* Comprehensive Responsive Rules */
.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none !important;
  }
  .header-download-btn {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
  }
}

@media (max-width: 992px) {
  .referral-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 35px 0 30px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary, .hero-actions .btn-glow {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .stat-value {
    font-size: 22px;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .floating-support {
    bottom: 16px;
    right: 16px;
  }
  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .jackpot-ticker-bar {
    padding: 6px 0;
  }
  .jackpot-fixed-left {
    padding: 3px 8px;
    gap: 6px;
  }
  .jackpot-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
  .jackpot-amount {
    font-size: 13px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .game-card {
    padding: 14px;
  }
  .game-card-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
    margin-bottom: 10px;
    border-radius: 12px;
  }
  .game-card-title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .game-card-meta {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .game-card p {
    display: none;
  }
  .game-card .btn-outline {
    font-size: 11px;
    padding: 6px 8px;
  }
  .game-card .btn-primary {
    font-size: 11px;
    padding: 6px 8px;
  }

  .calculator-box {
    padding: 20px 16px;
  }
  .calc-amount {
    font-size: 28px;
  }

  /* SEO Article responsive padding */
  section div[style*="padding: 45px"] {
    padding: 24px 16px !important;
  }
}

/* Responsive Tables & Media Embeds */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

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

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px;
  background: rgba(5, 11, 8, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--gold-primary);
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .floating-support {
    bottom: 80px;
  }
}

