@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --clover-green: #1a7a3c;
  --clover-dark: #0d4a22;
  --clover-bright: #27ae60;
  --clover-light: #2ecc71;
  --clover-gold: #f0b429;
  --clover-gold-dark: #d4930f;
  --bg-dark: #0a1f0f;
  --bg-card: #0f2d17;
  --bg-card2: #122a1a;
  --text-main: #e8f5e9;
  --text-muted: #a5d6b0;
  --text-white: #ffffff;
  --border-color: #1e5c30;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
  overflow-x: hidden;
}

a { color: var(--clover-light); text-decoration: none; }
a:hover { color: var(--clover-gold); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  color: var(--text-white);
  word-break: break-word;
}

h1 { font-size: clamp(1.6rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.25rem, 3.5vw, 2.1rem); font-weight: 800; }
h3 { font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 0.97rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.4rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--clover-gold) 0%, var(--clover-gold-dark) 100%);
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  box-shadow: 0 4px 18px rgba(240,180,41,0.35);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,180,41,0.5); filter: brightness(1.08); color: #1a1a1a; }
.btn-green {
  background: linear-gradient(135deg, var(--clover-bright) 0%, var(--clover-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(39,174,96,0.35);
}
.btn-green:hover { box-shadow: 0 8px 28px rgba(39,174,96,0.5); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

section { padding: 52px 0; }

.section-title { text-align: center; margin-bottom: 32px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 0.95rem; }

.highlight { color: var(--clover-gold); }
.highlight-green { color: var(--clover-light); }

.divider { border: none; border-top: 1px solid var(--border-color); margin: 36px 0; }

.badge {
  display: inline-block;
  background: var(--clover-dark);
  color: var(--clover-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-uk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,122,60,0.25);
  border: 1px solid var(--clover-bright);
  color: var(--clover-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.card-sm {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px 15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li, .cons-list li {
  padding: 7px 0 7px 28px;
  position: relative;
  border-bottom: 1px solid rgba(30,92,48,0.3);
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clover-light); font-weight: 700; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: #e57373; font-weight: 700; }

/* ─── TABLES ─── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; min-width: 420px; border-collapse: collapse; font-size: 0.88rem; }
thead th {
  background: var(--clover-dark);
  color: var(--clover-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
tbody tr { border-bottom: 1px solid var(--border-color); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(26,122,60,0.06); }
tbody td { padding: 10px 14px; vertical-align: top; }
tbody td:first-child { color: var(--text-muted); font-weight: 600; }

/* ─── STEPS ─── */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.step {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px 16px 18px 54px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--clover-green), var(--clover-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.step h4 { color: var(--clover-gold); margin-bottom: 4px; font-size: 0.88rem; }
.step p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ─── VIP ─── */
.vip-table .vip-level { display: flex; align-items: center; gap: 8px; }
.vip-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.vip-bronze .vip-dot { background: #cd7f32; }
.vip-silver .vip-dot { background: #c0c0c0; }
.vip-gold .vip-dot { background: var(--clover-gold); }
.vip-platinum .vip-dot { background: #e5e4e2; }
.vip-diamond .vip-dot { background: #b9f2ff; }
.vip-elite .vip-dot { background: linear-gradient(135deg, #f0b429, #27ae60); }

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  line-height: 1.4;
}
.faq-question:hover { background: var(--bg-card2); }
.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--clover-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  color: var(--clover-gold);
  font-size: 0.9rem;
  font-weight: 900;
}
.faq-item.active .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  background: var(--bg-card2);
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.25s;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 800px; padding: 16px 18px; }

.star-rating { color: var(--clover-gold); font-size: 1.05rem; letter-spacing: 2px; }

/* ─── TOP BANNER ─── */
.banner-top {
  background: linear-gradient(90deg, var(--clover-dark) 0%, #0a3319 40%, var(--clover-green) 100%);
  border-bottom: 3px solid var(--clover-gold);
  padding: 10px 0;
  text-align: center;
}
.banner-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.banner-top-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
}
.banner-top-text span { color: var(--clover-gold); }

/* ─── HERO ─── */
.hero {
  background: radial-gradient(ellipse at 60% 40%, rgba(26,122,60,0.35) 0%, transparent 60%),
              linear-gradient(180deg, #0a1f0f 0%, #0d2d15 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(39,174,96,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.hero h1 { margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--clover-gold); }
.hero-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; line-height: 1.65; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.hero-stat {
  background: rgba(26,122,60,0.18);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clover-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-logo-big {
  background: linear-gradient(135deg, var(--clover-dark) 0%, #1a5c30 100%);
  border: 2px solid var(--clover-bright);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 0 50px rgba(39,174,96,0.2);
}
.hero-casino-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.hero-casino-name span { color: var(--clover-gold); }
.hero-tagline { color: var(--text-muted); font-size: 0.82rem; margin-top: 7px; }
.hero-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-info-item {
  background: rgba(26,122,60,0.15);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-info-icon { font-size: 1.1rem; }
.hero-info-label { font-size: 0.72rem; color: var(--text-muted); }
.hero-info-val { font-size: 0.88rem; font-weight: 700; color: var(--text-white); }

/* ─── NAVIGATION ─── */
.nav-header {
  background: rgba(10,31,15,0.97);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--clover-gold); }
.nav-links { display: flex; gap: 20px; list-style: none; padding: 0; }
.nav-links a { font-size: 0.84rem; font-weight: 600; color: var(--text-muted); transition: color 0.18s; white-space: nowrap; }
.nav-links a:hover { color: var(--clover-light); }
.nav-btns { display: flex; gap: 8px; flex-shrink: 0; }
.nav-btn-login {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-btn-login:hover { border-color: var(--clover-bright); color: var(--clover-light); }

/* ─── OVERVIEW ─── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.overview-text p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1rem; line-height: 1.7; }

.rating-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.rating-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.rating-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--clover-gold);
  line-height: 1;
}
.rating-meta .star-rating { display: block; margin-bottom: 4px; }
.rating-meta small { color: var(--text-muted); font-size: 0.8rem; }
.rating-bar-item { margin-bottom: 11px; }
.rating-bar-label { display: flex; justify-content: space-between; font-size: 0.79rem; color: var(--text-muted); margin-bottom: 5px; }
.rating-bar-label span:last-child { color: var(--text-white); font-weight: 700; }
.rating-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 50px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--clover-bright), var(--clover-light)); }

/* ─── GAMES ─── */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.game-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-card:hover { border-color: var(--clover-bright); transform: translateY(-4px); }
.game-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clover-dark), var(--clover-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
}
.game-card h3 { font-size: 0.97rem; }
.game-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; flex: 1; line-height: 1.6; }

/* ─── BONUS STRIP BANNER ─── */
.bonus-banner-strip {
  background: linear-gradient(90deg, #0d3d1e 0%, #1a5c30 50%, #0d3d1e 100%);
  border-top: 2px solid var(--clover-gold);
  border-bottom: 2px solid var(--clover-gold);
  padding: 20px 0;
}
.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.bonus-strip-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--clover-gold);
  margin-bottom: 4px;
}
.bonus-strip-sub { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* ─── BONUS CARDS ─── */
.bonus-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: var(--clover-gold); }
.bonus-icon { font-size: 2rem; }
.bonus-card h3 { font-size: 0.97rem; color: var(--clover-gold); }
.bonus-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; flex: 1; line-height: 1.6; }

/* ─── PAYMENTS ─── */
.payment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pay-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
}
.pay-icon { font-size: 1.7rem; margin-bottom: 7px; }
.pay-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.84rem; margin-bottom: 3px; }
.pay-detail { font-size: 0.75rem; color: var(--text-muted); }

/* ─── MOBILE SECTION ─── */
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mobile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.mobile-os { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.mobile-os-icon {
  font-size: 2rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clover-dark);
  border-radius: 13px;
  flex-shrink: 0;
}
.mobile-os-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; }
.mobile-os-sub { font-size: 0.77rem; color: var(--text-muted); }

/* ─── SUPPORT ─── */
.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
}
.support-icon { font-size: 1.8rem; margin-bottom: 10px; }
.support-card h3 { font-size: 0.95rem; margin-bottom: 7px; }
.support-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 13px; line-height: 1.6; }

/* ─── AUTHOR BOX ─── */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--clover-bright);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.author-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clover-dark), var(--clover-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}
.author-info h4 { color: var(--clover-light); margin-bottom: 3px; font-size: 0.95rem; }
.author-info .author-role { font-size: 0.77rem; color: var(--text-muted); margin-bottom: 9px; }
.author-info p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ─── LICENSE ─── */
.license-box {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(26,122,60,0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 18px 0;
}
.license-icon { font-size: 1.6rem; flex-shrink: 0; }
.license-text h4 { font-size: 0.88rem; color: var(--clover-light); margin-bottom: 3px; }
.license-text p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ─── FOOTER ─── */
footer {
  background: #070f09;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 22px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo-text span { color: var(--clover-gold); }
.footer-brand p { font-size: 0.82rem; color: #5a8a66; line-height: 1.6; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clover-light); margin-bottom: 13px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a { font-size: 0.82rem; color: #5a8a66; transition: color 0.18s; }
.footer-col ul a:hover { color: var(--text-main); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright { font-size: 0.79rem; color: #3d6645; }
.footer-gamble { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.gamble-badge {
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  color: #e66;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gamble-text { font-size: 0.72rem; color: #3d6645; }

/* ═══════════════════════════════════════
   TABLET — max-width: 900px
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 18px; }
  section { padding: 44px 0; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; }
  .hero-logo-big { padding: 24px 20px; }
  .hero-casino-name { font-size: 1.5rem; }

  .overview-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .support-cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .payment-cards { grid-template-columns: 1fr 1fr; }

  .section-title p { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════
   MOBILE — max-width: 600px
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .container { padding: 0 14px; }
  section { padding: 36px 0; }

  h1 { font-size: 1.55rem; line-height: 1.2; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  h4 { font-size: 0.9rem; }

  p { font-size: 0.91rem; line-height: 1.68; }

  .btn { font-size: 0.82rem; padding: 12px 22px; }
  .btn-lg { font-size: 0.9rem; padding: 13px 26px; }
  .btn-sm { font-size: 0.77rem; padding: 9px 17px; }

  .section-title { margin-bottom: 22px; }
  .section-title h2 { margin-bottom: 8px; }
  .section-title p { font-size: 0.86rem; }

  /* Banner top */
  .banner-top { padding: 10px 0; }
  .banner-top-inner { flex-direction: column; gap: 8px; padding: 0 8px; }
  .banner-top-text { font-size: 0.82rem; text-align: center; }

  /* Nav */
  .nav-inner { flex-wrap: nowrap; justify-content: space-between; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-btns .nav-btn-login { display: none; }
  .nav-btns .btn { font-size: 0.76rem; padding: 8px 15px; }

  /* Hero */
  .hero { padding: 36px 0 32px; }
  .hero-layout { gap: 22px; }
  .hero-badges { gap: 6px; margin-bottom: 12px; }
  .tag-uk { font-size: 0.7rem; padding: 3px 10px; }
  .badge { font-size: 0.7rem; padding: 2px 9px; }
  .hero h1 { font-size: 1.55rem; margin-bottom: 12px; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 18px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; display: block; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
  .hero-stat { padding: 10px 10px; }
  .hero-stat-num { font-size: 1.25rem; }
  .hero-stat-label { font-size: 0.66rem; }
  .hero-logo-big { padding: 20px 16px; }
  .hero-casino-name { font-size: 1.3rem; }
  .hero-tagline { font-size: 0.76rem; }
  .hero-info-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-info-item { padding: 9px 10px; gap: 7px; }
  .hero-info-icon { font-size: 1rem; }
  .hero-info-label { font-size: 0.66rem; }
  .hero-info-val { font-size: 0.82rem; }

  /* Cards */
  .card { padding: 18px 15px; border-radius: 12px; }
  .card-sm { padding: 14px 13px; }

  /* Author */
  .author-box { flex-direction: column; gap: 13px; padding: 18px 15px; }
  .author-avatar { width: 48px; height: 48px; font-size: 1.1rem; }
  .author-info h4 { font-size: 0.88rem; }
  .author-info .author-role { font-size: 0.72rem; }
  .author-info p { font-size: 0.84rem; }

  /* License */
  .license-box { flex-direction: column; gap: 10px; padding: 14px 15px; align-items: flex-start; }
  .license-text h4 { font-size: 0.83rem; }
  .license-text p { font-size: 0.79rem; }

  /* Rating */
  .rating-block { padding: 18px 15px; }
  .rating-score { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 14px; padding-bottom: 14px; }
  .rating-num { font-size: 2.6rem; }
  .rating-bar-label { font-size: 0.75rem; }

  /* Overview */
  .overview-text p { font-size: 0.88rem; }

  /* Tables */
  table { font-size: 0.78rem; min-width: 380px; }
  thead th { padding: 9px 10px; font-size: 0.7rem; }
  tbody td { padding: 8px 10px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .step { padding: 14px 14px 14px 50px; }
  .step::before { width: 28px; height: 28px; font-size: 0.8rem; left: 12px; }
  .step h4 { font-size: 0.84rem; }
  .step p { font-size: 0.8rem; }

  /* Games */
  .games-grid { grid-template-columns: 1fr; gap: 13px; }
  .game-card { padding: 18px 16px; flex-direction: row; text-align: left; align-items: flex-start; gap: 14px; }
  .game-icon { width: 48px; height: 48px; font-size: 1.5rem; border-radius: 12px; flex-shrink: 0; margin: 0; }
  .game-card-text { flex: 1; }
  .game-card h3 { font-size: 0.92rem; margin-bottom: 5px; }
  .game-card p { font-size: 0.79rem; }
  .game-card .btn { margin-top: 10px; }

  /* Bonus banner strip */
  .bonus-banner-strip { padding: 16px 0; }
  .bonus-strip-inner { flex-direction: column; text-align: center; gap: 13px; }
  .bonus-strip-title { font-size: 0.95rem; }
  .bonus-strip-sub { font-size: 0.8rem; }

  /* Bonus cards */
  .bonus-cards { grid-template-columns: 1fr; gap: 13px; }
  .bonus-card { padding: 18px 15px; }
  .bonus-icon { font-size: 1.7rem; }
  .bonus-card h3 { font-size: 0.9rem; }
  .bonus-card p { font-size: 0.81rem; }

  /* Payment */
  .payment-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pay-card { padding: 13px 11px; }
  .pay-icon { font-size: 1.5rem; margin-bottom: 5px; }
  .pay-name { font-size: 0.79rem; }
  .pay-detail { font-size: 0.7rem; }

  /* Mobile section */
  .mobile-grid { grid-template-columns: 1fr; gap: 16px; }
  .mobile-card { padding: 18px 15px; }
  .mobile-os-icon { width: 42px; height: 42px; font-size: 1.7rem; }
  .mobile-os-name { font-size: 0.97rem; }
  .mobile-os-sub { font-size: 0.72rem; }
  .mobile-card p { font-size: 0.84rem !important; }

  /* Grid 4 small */
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-sm { padding: 13px 12px; }
  .card-sm div[style*="1.8rem"] { font-size: 1.5rem !important; }

  /* Pro/con */
  .pro-con-grid { grid-template-columns: 1fr; gap: 14px; }
  .pros-list li, .cons-list li { font-size: 0.85rem; padding: 6px 0 6px 26px; }

  /* Support */
  .support-cards { grid-template-columns: 1fr; gap: 12px; }
  .support-card { padding: 18px 15px; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .support-icon { font-size: 1.6rem; flex-shrink: 0; margin-bottom: 0; }
  .support-card-body { flex: 1; }
  .support-card h3 { font-size: 0.9rem; }
  .support-card p { font-size: 0.8rem; margin-bottom: 10px; }

  /* VIP table */
  .vip-level { font-size: 0.83rem; }
  .vip-dot { width: 9px; height: 9px; }

  /* FAQ */
  .faq-question { font-size: 0.84rem; padding: 14px 15px; }
  .faq-answer { font-size: 0.85rem; padding: 0 15px; }
  .faq-item.active .faq-answer { padding: 14px 15px; }
  .faq-answer p { font-size: 0.84rem; margin-bottom: 0.8rem; }
  .faq-arrow { width: 20px; height: 20px; font-size: 0.82rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-logo-text { font-size: 1.05rem; }
  .footer-brand p { font-size: 0.78rem; }
  .footer-col h4 { font-size: 0.75rem; }
  .footer-col ul a { font-size: 0.78rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-copyright { font-size: 0.75rem; }
  .gamble-text { font-size: 0.7rem; }

  /* Divider */
  .divider { margin: 28px 0; }
}

/* ═══════════════════════════════════════
   SMALL PHONES — max-width: 380px
═══════════════════════════════════════ */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.1rem; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-casino-name { font-size: 1.15rem; }
  .hero-info-row { grid-template-columns: 1fr 1fr; }
  .payment-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  table { min-width: 340px; font-size: 0.74rem; }
  thead th { padding: 8px 8px; font-size: 0.65rem; }
  tbody td { padding: 7px 8px; }
  .btn { font-size: 0.79rem; padding: 11px 18px; }
  .btn-lg { font-size: 0.84rem; padding: 12px 22px; }
}
