/* main.css — bassettforktrucks.co.uk — Non Gamstop Casinos GB */
:root {
  --gold: #d4a017;
  --dark: #0e0e1a;
  --darker: #070710;
  --card-bg: #16162a;
  --accent: #7c3aed;
  --accent2: #f59e0b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slideDown {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 600px; opacity: 1; }
}
@keyframes bounceIn {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAVIGATION */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,16,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(212,160,23,0.15);
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  padding: 1rem 1.5rem;
}
.mobile-menu ul li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu ul li:last-child { border-bottom: none; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 1rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0e0e1a 0%, #1a0a2e 50%, #0e0e1a 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-author-block img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.hero-author-details { text-align: left; }
.author-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.hero-pub-date {
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-cta {
  animation: fadeInUp 0.7s ease 0.4s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-gold 2s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}

/* TRUST BAR */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }

/* CONTENT */
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 3.5rem 0; }

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.75rem;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
p { margin-bottom: 1.1rem; color: var(--text); }

.h2-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* CASINO TABLE */
.casino-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.casino-table th {
  background: var(--card-bg);
  color: var(--gold);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}
.casino-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}
.casino-table tr:hover td { background: rgba(255,255,255,0.03); }
.rating-stars { color: var(--gold); font-size: 0.85rem; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
  animation: fadeInUp 0.5s ease both;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.3);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { margin-top: 0; font-size: 1.1rem; }

/* BONUS CARDS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.bonus-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.bonus-label { font-size: 0.85rem; color: var(--muted); }

/* INTERACTIVE ELEMENTS */

/* Quiz */
.quiz {
  background: var(--card-bg);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.quiz h3 { color: var(--text); font-size: 1.3rem; margin-top: 0; }
.quiz-question { font-size: 1.05rem; margin-bottom: 1.25rem; color: var(--text); }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.quiz-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text);
}
.quiz-option:hover { border-color: var(--accent); background: rgba(124,58,237,0.1); }
.quiz-option.selected { border-color: var(--accent); background: rgba(124,58,237,0.2); }
.quiz-option.correct { border-color: var(--green); background: rgba(34,197,94,0.1); }
.quiz-option.wrong { border-color: var(--red); background: rgba(239,68,68,0.1); }
.quiz-result {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}
.quiz-result.show { display: block; animation: bounceIn 0.4s ease; }
.quiz-result.pass { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid var(--green); }
.quiz-result.fail { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid var(--red); }
.btn-quiz {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-quiz:hover { background: #6d28d9; }

/* Calculator */
.calculator {
  background: var(--card-bg);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.calculator h3 { color: var(--text); margin-top: 0; }
.calc-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.calc-row label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.calc-row input, .calc-row select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.calc-row input:focus, .calc-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.calc-result {
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
}
.calc-result .amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.btn-calc {
  background: linear-gradient(135deg, var(--gold), var(--accent2));
  color: #000;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-calc:hover { opacity: 0.85; }

/* Finder */
.finder {
  background: var(--card-bg);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.finder h3 { color: var(--text); margin-top: 0; }
.finder-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.finder-filter select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--text);
  font-size: 0.9rem;
}
.finder-result {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  padding: 1rem;
  display: none;
}
.finder-result.show { display: block; animation: fadeInUp 0.3s ease; }
.btn-finder {
  background: var(--green);
  color: #000;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn-finder:hover { opacity: 0.85; }

/* Checker */
.checker {
  background: var(--card-bg);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.checker h3 { color: var(--text); margin-top: 0; }
.checker-input {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.checker-input input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 1rem;
}
.checker-input input:focus { outline: none; border-color: var(--red); }
.btn-checker {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-checker:hover { opacity: 0.85; }
.checker-out {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 600;
}
.checker-out.show { display: block; animation: bounceIn 0.3s ease; }
.checker-out.ok { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid var(--green); }
.checker-out.warn { background: rgba(245,158,11,0.1); color: var(--accent2); border: 1px solid var(--accent2); }

/* FAQ */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--card-bg);
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  background: var(--card-bg);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.25rem 1.25rem;
}

/* REVIEWED BY */
.reviewed-by-section {
  background: var(--card-bg);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.reviewed-by-section img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}
.author-meta { font-size: 0.88rem; color: var(--muted); }
.author-meta strong { color: var(--text); font-size: 1rem; display: block; margin-bottom: 0.3rem; }
.author-meta span { display: block; margin-top: 0.2rem; }

/* PROS/CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.pros, .cons {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4, .cons h4 { margin-bottom: 0.75rem; font-size: 1rem; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pros ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1a0a2e, #0e1a2e);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-section h2 { font-size: 1.75rem; }
.cta-section h2::after { left: 50%; transform: translateX(-50%); }
.cta-section p { color: var(--muted); max-width: 560px; margin: 0 auto 1.5rem; }

/* DISCLAIMER */
.disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 2rem 0;
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* UTILITIES */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-new { background: rgba(124,58,237,0.2); color: #a78bfa; border: 1px solid rgba(124,58,237,0.3); }
.badge-hot { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.badge-top { background: rgba(212,160,23,0.2); color: var(--gold); border: 1px solid rgba(212,160,23,0.3); }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,160,23,0.3), transparent);
  margin: 2rem 0;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .pros-cons { grid-template-columns: 1fr; }
  .finder-filters { grid-template-columns: 1fr; }
  .reviewed-by-section { flex-direction: column; }
  .checker-input { flex-direction: column; }
  .hero { padding: 3rem 1rem 2.5rem; }
  h2 { font-size: 1.5rem; }
  .casino-table th, .casino-table td { padding: 0.6rem 0.5rem; font-size: 0.8rem; }
}
