/*
Theme Name: Hello Elementor Child - 1Lucky
Description: Child theme for Hello Elementor - 1Lucky
Author: 1Lucky
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* ========================================
   ROOT VARIABLES
   ======================================== */

:root {
  --primary-color: #D4AF37;
  --secondary-color: #B8860B;
  --dark-bg: #050505;
  --dark-card: #111111;
  --dark-card-2: #0A0A0A;
  --dark-border: #3A321F;
  --text-primary: #FFFFFF;
  --text-secondary: #E8E8E8;
  --accent-red: #D4AF37;
  --accent-blue: #FFFFFF;
}

/* ========================================
   GLOBAL RESET
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: var(--dark-bg) !important;
  color: var(--text-primary) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#page,
.site,
#content,
.site-content,
.site-main,
main,
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: var(--dark-bg) !important;
}

.container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

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

ul,
ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

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

img {
  display: block;
}

button,
a,
.btn,
.card {
  transition: all 0.3s ease !important;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color) !important;
  outline-offset: 2px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  width: 100% !important;
  background: var(--dark-card) !important;
  border-bottom: 1px solid var(--dark-border) !important;
  padding: 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  margin: 0 !important;
}

.header-container {
  width: 100% !important;
  max-width: 1200px !important;
  min-height: 74px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.site-logo {
  flex: 0 0 auto !important;
  z-index: 100001 !important;
}

.site-logo a {
  display: flex !important;
  align-items: center !important;
  color: var(--primary-color) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.site-logo img,
.site-logo .custom-logo {
  max-height: 46px !important;
  width: auto !important;
  display: block !important;
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-navigation {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  flex: 1 1 auto !important;
}

.primary-menu,
.primary-menu ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 22px !important;
}

.primary-menu li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-menu a,
.main-navigation a {
  color: var(--text-primary) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  padding: 27px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

.primary-menu > li > a:hover,
.primary-menu > li:hover > a,
.main-navigation a:hover {
  color: var(--primary-color) !important;
}

.primary-menu .menu-item-has-children > a::after {
  content: "▾";
  font-size: 11px;
  line-height: 1;
  opacity: 0.85;
}

/* ========================================
   SUBMENUS
   ======================================== */

.primary-menu .sub-menu,
.main-navigation .sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 245px !important;
  background: var(--dark-card) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: 10px !important;
  padding: 8px 0 !important;
  display: none !important;
  flex-direction: column !important;
  gap: 0 !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45) !important;
  z-index: 100000 !important;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.main-navigation li:hover > .sub-menu {
  display: flex !important;
}

.primary-menu .sub-menu li,
.main-navigation .sub-menu li {
  width: 100% !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.primary-menu .sub-menu li:last-child,
.main-navigation .sub-menu li:last-child {
  border-bottom: 0 !important;
}

.primary-menu .sub-menu a,
.main-navigation .sub-menu a {
  padding: 12px 18px !important;
  color: var(--text-secondary) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  white-space: normal !important;
  display: block !important;
}

.primary-menu .sub-menu a:hover,
.main-navigation .sub-menu a:hover {
  background: var(--dark-border) !important;
  color: var(--primary-color) !important;
}

.primary-menu .menu-best-sites > .sub-menu {
  right: 0 !important;
  left: auto !important;
  min-width: 270px !important;
}

/* ========================================
   BURGER MENU
   ======================================== */

.menu-toggle {
  display: none !important;
  width: 46px !important;
  height: 46px !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: 10px !important;
  background: transparent !important;
  cursor: pointer !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  z-index: 100001 !important;
  color: var(--primary-color) !important;
  min-width: 44px !important;
  min-height: 44px !important;
}

.menu-toggle span {
  width: 24px !important;
  height: 2px !important;
  background: var(--primary-color) !important;
  display: block !important;
  border-radius: 99px !important;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0 !important;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

.lucky-menu-overlay {
  display: none;
}

body.lucky-menu-open {
  overflow: hidden !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  width: 100% !important;
  margin: 0 !important;
  padding: 80px 20px !important;
  text-align: center !important;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%) !important;
  border-bottom: 1px solid var(--dark-border) !important;
}

.hero-section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.hero-section h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

.hero-section p {
  font-size: 18px !important;
  color: var(--text-secondary) !important;
  max-width: 760px !important;
  margin: 0 auto 30px !important;
}

.hero-cta {
  display: inline-flex !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  border: none !important;
  cursor: pointer !important;
  user-select: none !important;
}

.btn-primary {
  background: var(--primary-color) !important;
  color: var(--dark-bg) !important;
}

.btn-primary:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
}

.btn-secondary {
  background: transparent !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--dark-border) !important;
}

.btn-secondary:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-sm {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

/* ========================================
   ICON GRID
   ======================================== */

.icon-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: 20px !important;
  margin: 40px auto 0 !important;
  max-width: 1200px !important;
}

.icon-card {
  background: var(--dark-card) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: 12px !important;
  padding: 30px 20px !important;
  text-align: center !important;
}

.icon-card:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-5px) !important;
}

.icon-card i {
  font-size: 40px !important;
  color: var(--primary-color) !important;
  margin-bottom: 15px !important;
}

.icon-card h3 {
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* ========================================
   SECTION CONTAINERS
   ======================================== */

section,
article,
aside {
  width: 100% !important;
}

.bookmakers-section,
.complaints-section,
.payment-methods,
.calculators-section,
.interviews-section,
.countries-section,
.ambassadors-section,
.content-section {
  width: 100% !important;
  margin: 0 !important;
  padding: 80px 20px !important;
}

.bookmakers-section .container,
.complaints-section .container,
.payment-methods .container,
.calculators-section .container,
.interviews-section .container,
.countries-section .container,
.ambassadors-section .container,
.content-section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.section-header {
  text-align: center !important;
  margin: 0 auto 60px !important;
  max-width: 900px !important;
}

.section-header h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.section-header p {
  font-size: 16px !important;
  color: var(--text-secondary) !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

/* ========================================
   BOOKMAKERS LIST
   ======================================== */

.bookmakers-list {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.bookmaker-item {
  background: var(--dark-card) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: 12px !important;
  padding: 25px !important;
  margin-bottom: 20px !important;
  display: grid !important;
  grid-template-columns: 60px 1fr auto !important;
  gap: 25px !important;
  align-items: center !important;
}

.bookmaker-item:hover {
  border-color: var(--primary-color) !important;
  transform: translateX(5px) !important;
}

.bookmaker-rank {
  background: var(--dark-border) !important;
  border-radius: 8px !important;
  padding: 10px !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}

.bookmaker-info h3 {
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

.bookmaker-rating {
  color: #F4D35E !important;
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

.bookmaker-features {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  font-size: 14px !important;
  color: var(--text-secondary) !important;
}

.bookmaker-features span {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.bookmaker-cta {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: flex-end !important;
}

/* ========================================
   CONTENT WRAPPER
   ======================================== */

.content-wrapper {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper h2 {
  font-size: 32px !important;
}

.content-wrapper h3 {
  font-size: 24px !important;
}

.content-wrapper h4 {
  font-size: 20px !important;
}

.content-wrapper p {
  margin-bottom: 20px !important;
  line-height: 1.8 !important;
  color: var(--text-secondary) !important;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px !important;
  padding-left: 30px !important;
  color: var(--text-secondary) !important;
  list-style: disc !important;
}

.content-wrapper li {
  margin-bottom: 10px !important;
}

/* ========================================
   BLOG / ARCHIVE
   ======================================== */

.posts-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
  gap: 30px !important;
  padding: 60px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.post-card {
  background: var(--dark-card) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.post-card:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-5px) !important;
}

.post-thumbnail {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}

.post-content {
  padding: 25px !important;
}

.post-title {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.post-title a {
  color: var(--text-primary) !important;
}

.post-title a:hover {
  color: var(--primary-color) !important;
}

.post-excerpt {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
  margin-bottom: 15px !important;
}

/* ========================================
   SINGLE POST
   ======================================== */

.single-post-header {
  padding: 60px 20px 40px !important;
  text-align: center !important;
  border-bottom: 1px solid var(--dark-border) !important;
  width: 100% !important;
  margin: 0 !important;
}

.single-post-title {
  font-size: 42px !important;
  font-weight: 700 !important;
  margin: 0 auto 20px !important;
  max-width: 900px !important;
}

.single-post-content {
  padding: 60px 20px !important;
  width: 100% !important;
  margin: 0 !important;
}

.single-post-content .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.single-post-content .content-wrapper {
  max-width: 900px !important;
  margin: 0 auto !important;
}

.single-post-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  margin: 30px 0 !important;
}

/* ========================================
   FOOTER - RESTORED DESIGN + CENTERED
   ======================================== */

.site-footer,
footer.site-footer,
footer.site-footer.lucky-footer,
.site-footer.lucky-footer,
.lucky-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 56px 0 28px !important;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.06), transparent 28%),
    linear-gradient(180deg, #171717 0%, #111111 100%) !important;
  border-top: 1px solid var(--dark-border) !important;
  color: var(--text-primary) !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  overflow: hidden !important;
  clear: both !important;
}

.site-footer::before,
.lucky-footer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent) !important;
}

.site-footer > .container,
footer.site-footer > .container,
footer.site-footer.lucky-footer > .container,
.site-footer.lucky-footer > .container,
.lucky-footer > .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.lucky-footer-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr) !important;
  gap: 32px !important;
  align-items: stretch !important;
  margin: 0 0 34px !important;
  padding: 0 0 34px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.lucky-footer-brand h2 {
  font-size: 24px !important;
  line-height: 1.25 !important;
  margin: 0 0 14px !important;
  color: var(--primary-color) !important;
  font-weight: 800 !important;
}

.lucky-footer-brand p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: #b8b8b8 !important;
  max-width: 780px !important;
}

.lucky-footer-note {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 22px 20px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22) !important;
}

.lucky-footer-note p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #c3c3c3 !important;
}

.lucky-footer-note strong {
  color: var(--primary-color) !important;
  font-weight: 800 !important;
}

.footer-widgets,
.lucky-footer .footer-widgets {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 0 0 36px !important;
  padding: 0 !important;
}

.footer-widget,
.lucky-footer .footer-widget {
  min-width: 0 !important;
}

.footer-widget h3,
.lucky-footer .footer-widget h3 {
  margin: 0 0 16px !important;
  padding: 0 0 12px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-widget ul,
.lucky-footer .footer-widget ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.footer-widget li,
.lucky-footer .footer-widget li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-widget a,
.lucky-footer .footer-widget a {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #b7b7b7 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.footer-widget a::before,
.lucky-footer .footer-widget a::before {
  content: "›";
  color: var(--primary-color) !important;
  font-weight: 800 !important;
  flex: 0 0 auto !important;
}

.footer-widget a:hover,
.lucky-footer .footer-widget a:hover {
  color: var(--primary-color) !important;
  transform: translateX(3px) !important;
}

.lucky-footer-sites {
  margin: 0 0 34px !important;
  padding: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16) !important;
}

.lucky-footer-sites h3 {
  margin: 0 0 16px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
}

.lucky-best-sites-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.lucky-best-sites-grid a {
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 10px 12px !important;
  background: #050505 !important;
  border: 1px solid #252525 !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
  transition: all 0.25s ease !important;
}

.lucky-best-sites-grid a:hover {
  color: var(--primary-color) !important;
  border-color: rgba(212,175,55,0.45) !important;
  transform: translateY(-2px) !important;
}

.footer-bottom,
.lucky-footer .footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 20px !important;
  align-items: center !important;
  padding-top: 26px !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-copyright,
.lucky-footer .footer-copyright {
  text-align: left !important;
  color: #b5b5b5 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.footer-copyright p,
.lucky-footer .footer-copyright p {
  margin: 0 0 8px !important;
}

.footer-copyright p:last-child,
.lucky-footer .footer-copyright p:last-child {
  margin-bottom: 0 !important;
}

.lucky-footer-badges,
.footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
}

.lucky-footer-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(212,175,55,0.08) !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
  color: var(--primary-color) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.lucky-footer-disclaimer {
  margin-top: 18px !important;
  padding: 16px !important;
  background: rgba(0,0,0,0.22) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  color: #b5b5b5 !important;
  font-size: 12.5px !important;
  line-height: 1.75 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .primary-menu {
    gap: 14px !important;
  }

  .primary-menu a {
    font-size: 13px !important;
  }

  .footer-widgets,
  .lucky-footer .footer-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .lucky-best-sites-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 968px) {
  .header-container {
    min-height: 68px !important;
    flex-wrap: nowrap !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .lucky-menu-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 99997 !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
  }

  body.lucky-menu-open .lucky-menu-overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .main-navigation {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(90vw, 390px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: var(--dark-card) !important;
    border-left: 1px solid var(--dark-border) !important;
    padding: 86px 18px 28px !important;
    display: block !important;
    transform: translateX(105%) !important;
    transition: transform 0.28s ease !important;
    overflow-y: auto !important;
    z-index: 99998 !important;
  }

  .main-navigation.is-open,
  .main-navigation.active {
    transform: translateX(0) !important;
  }

  .primary-menu {
    display: block !important;
    width: 100% !important;
  }

  .primary-menu > li {
    width: 100% !important;
    border-bottom: 1px solid var(--dark-border) !important;
  }

  .primary-menu a,
  .main-navigation a {
    width: 100% !important;
    padding: 15px 4px !important;
    font-size: 15px !important;
    justify-content: space-between !important;
    white-space: normal !important;
  }

  .primary-menu .sub-menu,
  .main-navigation .sub-menu {
    position: static !important;
    display: none !important;
    min-width: 0 !important;
    width: 100% !important;
    border: 0 !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 10px !important;
    padding: 6px 0 !important;
    margin: 0 0 12px !important;
  }

  .primary-menu li.submenu-open > .sub-menu,
  .main-navigation li.active > .sub-menu {
    display: block !important;
  }

  .primary-menu .sub-menu a,
  .main-navigation .sub-menu a {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  .primary-menu .menu-item-has-children.submenu-open > a::after {
    content: "▴";
  }

  .hero-section h1 {
    font-size: 32px !important;
  }

  .bookmaker-item {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .bookmaker-cta {
    align-items: flex-start !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-section {
    padding: 60px 16px !important;
  }

  .hero-section h1 {
    font-size: 32px !important;
  }

  .hero-section p {
    font-size: 16px !important;
  }

  .section-header h2 {
    font-size: 28px !important;
  }

  .single-post-title {
    font-size: 32px !important;
  }

  .site-footer,
  footer.site-footer,
  footer.site-footer.lucky-footer,
  .site-footer.lucky-footer,
  .lucky-footer {
    padding: 42px 0 24px !important;
  }

  .site-footer > .container,
  footer.site-footer > .container,
  footer.site-footer.lucky-footer > .container,
  .site-footer.lucky-footer > .container,
  .lucky-footer > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .lucky-footer-intro {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-bottom: 26px !important;
    margin-bottom: 28px !important;
  }

  .lucky-footer-brand h2 {
    font-size: 21px !important;
  }

  .footer-widgets,
  .lucky-footer .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 18px !important;
  }

  .lucky-best-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-bottom,
  .lucky-footer .footer-bottom {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-copyright,
  .lucky-footer .footer-copyright {
    text-align: center !important;
  }

  .lucky-footer-badges,
  .footer-badges {
    justify-content: center !important;
  }
}

@media (max-width: 520px) {
  .site-logo a {
    font-size: 19px !important;
  }

  .site-logo img,
  .site-logo .custom-logo {
    max-height: 42px !important;
    max-width: 180px !important;
  }

  .hero-section h1 {
    font-size: 28px !important;
  }

  .section-header h2 {
    font-size: 24px !important;
  }

  .footer-widgets,
  .lucky-footer .footer-widgets,
  .lucky-best-sites-grid {
    grid-template-columns: 1fr !important;
  }

  .lucky-footer-sites {
    padding: 18px !important;
  }

  .lucky-footer-badges,
  .footer-badges {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .lucky-footer-badge {
    width: 100% !important;
  }

  .btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }

  .btn-sm {
    padding: 8px 20px !important;
    font-size: 13px !important;
  }
}

/* ========================================
   ACCESSIBILITY / DEVICE SUPPORT
   ======================================== */

@media (hover: none) and (pointer: coarse) {
  .bookmaker-item:hover,
  .post-card:hover,
  .icon-card:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .btn,
  .pagination {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .container {
    max-width: 100% !important;
  }

  a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}
/* ========================================
   FOOTER DESIGN RESTORE - GOLD / CENTERED
   Paste at the VERY BOTTOM of style.css
   ======================================== */

.site-footer,
footer.site-footer,
footer.site-footer.lucky-footer,
.site-footer.lucky-footer,
.lucky-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 64px 0 30px !important;
  background:
    radial-gradient(circle at top left, rgba(212,175,55, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212,175,55, 0.06), transparent 32%),
    linear-gradient(180deg, #171717 0%, #101010 100%) !important;
  border-top: 1px solid rgba(212,175,55, 0.18) !important;
  color: #ffffff !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  overflow: hidden !important;
  clear: both !important;
}

.site-footer::before,
.lucky-footer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.65), transparent) !important;
}

.site-footer > .container,
footer.site-footer > .container,
footer.site-footer.lucky-footer > .container,
.site-footer.lucky-footer > .container,
.lucky-footer > .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.lucky-footer-intro {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr) !important;
  gap: 32px !important;
  align-items: stretch !important;
  margin: 0 0 34px !important;
  padding: 0 0 34px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.lucky-footer-brand h2 {
  font-size: 26px !important;
  line-height: 1.25 !important;
  margin: 0 0 14px !important;
  color: #D4AF37 !important;
  font-weight: 900 !important;
  letter-spacing: -0.4px !important;
}

.lucky-footer-brand p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: #c9d1d1 !important;
  max-width: 780px !important;
}

.lucky-footer-note {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.032)) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 18px !important;
  padding: 22px 20px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25) !important;
}

.lucky-footer-note p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: #cfd6d6 !important;
}

.lucky-footer-note strong {
  color: #D4AF37 !important;
  font-weight: 900 !important;
}

.footer-widgets,
.lucky-footer .footer-widgets {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 28px !important;
  width: 100% !important;
  margin: 0 0 38px !important;
  padding: 0 !important;
}

.footer-widget,
.lucky-footer .footer-widget {
  min-width: 0 !important;
}

.footer-widget h3,
.lucky-footer .footer-widget h3 {
  margin: 0 0 16px !important;
  padding: 0 0 12px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,0.09) !important;
}

.footer-widget ul,
.lucky-footer .footer-widget ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
}

.footer-widget li,
.lucky-footer .footer-widget li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-widget a,
.lucky-footer .footer-widget a {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #bcc7c7 !important;
  text-decoration: none !important;
  transition: color 0.25s ease, transform 0.25s ease !important;
}

.footer-widget a::before,
.lucky-footer .footer-widget a::before {
  content: "›" !important;
  color: #D4AF37 !important;
  font-weight: 900 !important;
  flex: 0 0 auto !important;
}

.footer-widget a:hover,
.lucky-footer .footer-widget a:hover {
  color: #D4AF37 !important;
  transform: translateX(3px) !important;
}

.lucky-footer-sites {
  margin: 0 0 36px !important;
  padding: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.028)) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.20) !important;
}

.lucky-footer-sites h3 {
  margin: 0 0 16px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
}

.lucky-best-sites-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.lucky-best-sites-grid a {
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 10px 12px !important;
  background: #050505 !important;
  border: 1px solid #272727 !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035) !important;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}

.lucky-best-sites-grid a:hover {
  color: #D4AF37 !important;
  border-color: rgba(212,175,55,0.55) !important;
  transform: translateY(-2px) !important;
}

.footer-bottom,
.lucky-footer .footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 20px !important;
  align-items: center !important;
  padding-top: 26px !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.09) !important;
}

.footer-copyright,
.lucky-footer .footer-copyright {
  text-align: left !important;
  color: #b8c0c0 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.footer-copyright p,
.lucky-footer .footer-copyright p {
  margin: 0 0 8px !important;
}

.footer-copyright p:last-child,
.lucky-footer .footer-copyright p:last-child {
  margin-bottom: 0 !important;
}

.lucky-footer-badges,
.footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
}

.lucky-footer-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(212,175,55,0.10) !important;
  border: 1px solid rgba(212,175,55,0.42) !important;
  color: #D4AF37 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.lucky-footer-disclaimer {
  margin-top: 18px !important;
  padding: 16px !important;
  background: rgba(0,0,0,0.22) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 14px !important;
  color: #b8c0c0 !important;
  font-size: 12.5px !important;
  line-height: 1.75 !important;
}

@media (max-width: 1100px) {
  .footer-widgets,
  .lucky-footer .footer-widgets {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .lucky-best-sites-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .site-footer,
  footer.site-footer,
  footer.site-footer.lucky-footer,
  .site-footer.lucky-footer,
  .lucky-footer {
    padding: 42px 0 24px !important;
  }

  .site-footer > .container,
  footer.site-footer > .container,
  footer.site-footer.lucky-footer > .container,
  .site-footer.lucky-footer > .container,
  .lucky-footer > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .lucky-footer-intro {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-bottom: 26px !important;
    margin-bottom: 28px !important;
  }

  .lucky-footer-brand h2 {
    font-size: 22px !important;
  }

  .footer-widgets,
  .lucky-footer .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 18px !important;
  }

  .lucky-best-sites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-bottom,
  .lucky-footer .footer-bottom {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-copyright,
  .lucky-footer .footer-copyright {
    text-align: center !important;
  }

  .lucky-footer-badges,
  .footer-badges {
    justify-content: center !important;
  }
}

@media (max-width: 520px) {
  .footer-widgets,
  .lucky-footer .footer-widgets,
  .lucky-best-sites-grid {
    grid-template-columns: 1fr !important;
  }

  .lucky-footer-sites {
    padding: 18px !important;
  }

  .lucky-footer-badges,
  .footer-badges {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .lucky-footer-badge {
    width: 100% !important;
  }
}

/* ========================================
   FREE POKER CARDS — SAFE GRID FIX
   Desktop: 2 columns | Mobile: 1 column
   ======================================== */

.payment-methods .payment-grid {
  width: 100% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.payment-methods .payment-card {
  min-width: 0 !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  background: #111111 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
  overflow: hidden !important;
}

.payment-methods .payment-card:hover {
  border-color: #d4af37 !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.16) !important;
  transform: translateY(-3px) !important;
}

.payment-methods .payment-logo {
  width: 100% !important;
  height: 140px !important;
  margin: 0 0 20px !important;
  padding: 12px !important;
  display: block !important;
  object-fit: contain !important;
  background: #ffffff !important;
  border-radius: 12px !important;
}

.payment-methods .payment-card h3 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 22px !important;
  line-height: 1.3 !important;
}

.payment-methods .payment-count {
  flex-grow: 1 !important;
  margin: 0 0 20px !important;
  color: var(--text-secondary) !important;
  line-height: 1.65 !important;
}

.payment-methods .payment-card .btn {
  align-self: flex-start !important;
  margin-top: auto !important;
}

@media (max-width: 767px) {
  .payment-methods .payment-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .payment-methods .payment-card {
    padding: 20px !important;
  }

  .payment-methods .payment-logo {
    height: 120px !important;
  }

  .payment-methods .payment-card h3 {
    font-size: 20px !important;
  }
}

/* Center the "See Full Poker Site Rankings" button */
.text-center.mt-40 {
  width: 100% !important;
  margin-top: 40px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.text-center.mt-40 .btn {
  margin: 0 auto !important;
}

/* ========================================
   POKER LEARNING HUB
   ======================================== */

.calculators-section {
  width: 100% !important;
  padding: 80px 20px !important;
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.07), transparent 35%),
    #050505 !important;
}

.calculators-section > .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* 3 columns × 2 rows on desktop */
.calculators-section .calculator-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 40px !important;
}

.calculators-section .calculator-card {
  min-width: 0 !important;
  min-height: 190px !important;
  padding: 30px 24px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;

  text-align: center !important;
  color: #ffffff !important;
  text-decoration: none !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ) !important;

  border: 1px solid rgba(212, 175, 55, 0.28) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;

  overflow: hidden !important;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease !important;
}

.calculators-section .calculator-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(212, 175, 55, 0.75) !important;
  background:
    linear-gradient(
      145deg,
      rgba(212, 175, 55, 0.10),
      rgba(255, 255, 255, 0.025)
    ) !important;
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.18) !important;
}

.calculators-section .calculator-icon {
  width: 64px !important;
  height: 64px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  background: rgba(212, 175, 55, 0.10) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: #d4af37 !important;
  font-size: 26px !important;
  line-height: 1 !important;
}

.calculators-section .calculator-icon i {
  color: #d4af37 !important;
  font-size: 26px !important;
}

.calculators-section .calculator-name {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

/* Center the Explore Poker Guides button */
.calculators-section .text-center.mt-40 {
  width: 100% !important;
  margin-top: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

.calculators-section .text-center.mt-40 .btn {
  margin: 0 auto !important;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .calculators-section .calculator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .calculators-section {
    padding: 55px 16px !important;
  }

  .calculators-section > .container {
    padding: 0 !important;
  }

  .calculators-section .calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 30px !important;
  }

  .calculators-section .calculator-card {
    min-height: 150px !important;
    padding: 24px 18px !important;
  }

  .calculators-section .calculator-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 23px !important;
  }

  .calculators-section .calculator-name {
    font-size: 16px !important;
  }

  .calculators-section .text-center.mt-40 {
    margin-top: 32px !important;
  }
}