/* Sweet Hub Casino - Main Stylesheet */
:root {
  --bg-dark: #0f0814;
  --bg-surface: #180d22;
  --bg-card: rgba(30, 17, 43, 0.75);
  --bg-card-hover: rgba(45, 26, 64, 0.9);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(255, 112, 166, 0.3);
  
  --accent: #8f4f89;
  --accent-light: #c26fb9;
  --accent-pink: #ff70a6;
  --accent-gold: #ffb703;
  --accent-green: #2ec4b6;
  
  --text-main: #f8f9fa;
  --text-muted: #b8b2c4;
  --text-dim: #7f778d;
  
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 112, 166, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, li, span, th, td, a {
  overflow-wrap: break-word;
  word-break: break-word;
}

img, svg, video, iframe {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 8, 20, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 112, 166, 0.2), rgba(255, 183, 3, 0.2));
  border: 1px solid rgba(255, 112, 166, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(255, 112, 166, 0.4), 0 0 8px rgba(255, 183, 3, 0.3);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 25px rgba(255, 112, 166, 0.7), 0 0 12px rgba(255, 183, 3, 0.5);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* High Converting Motivating Header CTA */
.btn-header-cta {
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  color: #0f051d;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.5);
  white-space: nowrap;
  letter-spacing: -0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: ctaPulse 2.5s infinite ease-in-out;
}

.btn-header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 26px rgba(255, 183, 3, 0.8);
  color: #000;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 183, 3, 0.5);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 183, 3, 0.85);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: var(--transition);
}

.lang-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.lang-dropdown-toggle:hover,
.lang-dropdown[open] .lang-dropdown-toggle {
  border-color: var(--accent-pink);
  background: rgba(255, 255, 255, 0.08);
}

.lang-arrow {
  transition: transform 0.2s ease;
}

.lang-dropdown[open] .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(20, 10, 32, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 112, 166, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  z-index: 1000;
  animation: langDropdownFade 0.2s ease;
}

@keyframes langDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-option:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
  color: #fff;
  background: var(--accent-pink);
  font-weight: 700;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), #e03a7a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 112, 166, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 112, 166, 0.6);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #e09f00);
  color: #0f0814;
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 183, 3, 0.55);
  color: #0f0814;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-banner-wrap, .hero-media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 112, 166, 0.25);
  transition: box-shadow 0.3s ease;
}

.hero-banner-wrap:hover, .hero-media-wrap:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 45px rgba(255, 112, 166, 0.4);
}

.hero-banner-img, .hero-media-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 20, 0.2) 0%, rgba(15, 8, 20, 0.92) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: -30px auto 40px;
  position: relative;
  z-index: 10;
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(143, 79, 137, 0.2);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1rem;
  color: #fff;
}

.trust-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Headings */
.section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title, h2 {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Slot Review Grid */
.slot-review-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: flex-start;
}

.slot-review-grid.reverse {
  grid-template-columns: 1fr 260px;
}

/* Game Grid & Cards */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.game-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 848 / 1264;
  overflow: hidden;
  background: linear-gradient(180deg, #1f0d2c 0%, #0d0614 100%);
}

.game-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.game-card:hover .game-poster {
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-rtp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 183, 3, 0.5);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.game-provider-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(143, 79, 137, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.game-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 10px;
}

/* Data Tables */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-sizing: border-box;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 480px;
}

.data-table th {
  background: rgba(143, 79, 137, 0.3);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

/* Feature Grid & Content Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.content-card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  align-self: start;
}

.content-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}

.content-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Lists */
.styled-list {
  list-style: none;
  margin: 16px 0;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-pink);
  font-weight: bold;
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 20px 0;
  padding: 0;
}

.step-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
  color: var(--text-muted);
  box-sizing: border-box;
  width: 100%;
}

.step-list li h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step-list h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* FAQ Accordion */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item summary {
  padding: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-pink);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10px;
  padding-top: 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 16px 0;
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

/* Footer */
.site-footer {
  background: #09040d;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: auto;
}

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

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-rg {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.rg-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rg-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* Mobile Sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(15, 8, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glow);
  padding: 10px 12px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  padding: 12px 10px;
  font-size: clamp(0.8rem, 3.7vw, 0.96rem);
  font-weight: 800;
  text-align: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  color: #0f051d;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 183, 3, 0.8);
  color: #000;
}

/* Mobile Navigation Dropdown */
.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: var(--transition);
}

.mobile-nav-btn::-webkit-details-marker {
  display: none;
}

.mobile-nav-btn:hover,
.mobile-nav[open] .mobile-nav-btn {
  border-color: var(--accent-pink);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(20, 10, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 112, 166, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  z-index: 1000;
  animation: langDropdownFade 0.2s ease;
}

.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: var(--accent-pink);
  font-weight: 700;
}

/* Media Queries */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: inline-block;
  }

  .hero {
    padding: 16px 0 30px;
  }

  .hero-banner-img, .hero-media-img {
    height: 380px;
  }

  .hero-overlay {
    padding: 20px 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .trust-bar {
    margin: 20px auto 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    padding: 14px 12px;
    gap: 10px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .trust-text h4 {
    font-size: 0.85rem;
  }

  .trust-text p {
    font-size: 0.75rem;
  }

  .section {
    padding: 30px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-tag {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .grid-2, .grid-3, .slot-review-grid, .slot-review-grid.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .game-info h3 {
    font-size: 1rem;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .data-table {
    min-width: 100%;
    font-size: 0.82rem;
  }

  .data-table th, .data-table td {
    padding: 8px 6px;
    font-size: 0.82rem;
  }

  .step-list li {
    padding-left: 36px;
    margin-bottom: 16px;
  }

  .step-list li::before {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .step-list li h4 {
    font-size: 0.96rem;
  }

  .content-card {
    padding: 18px 14px;
  }

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

  .site-footer {
    padding: 40px 0 20px;
  }

  .rg-badges {
    gap: 8px;
  }

  .rg-badge {
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .mobile-cta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
  }

  body {
    padding-bottom: 75px;
  }
}

@media (max-width: 600px) {
  .logo-text {
    display: none;
  }

  .lang-dropdown-toggle {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  .btn-header-cta {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hero-overlay {
    padding: 24px 14px 18px;
  }

  .hero-media-wrap, .hero-banner-wrap {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
    gap: 0;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .header-inner {
    gap: 6px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 1.4rem;
  }
}
