/* verifiedukslots99.com - UKGC Casino Catalog */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg-dark: #0f1923;
  --bg-card: #1a2736;
  --bg-card-hover: rgba(26, 39, 54, 0.9);
  --accent: #00d4aa;
  --accent-dim: #00a88a;
  --accent-blue: #0099cc;
  --text: #e8edf2;
  --text-muted: #8b9cad;
  --border: rgba(0, 212, 170, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link img {
  width: 36px;
  height: 36px;
}

.logo-link span {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Main content */
main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* Hero */
.hero {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.15) 0%,
    rgba(0, 153, 204, 0.1) 100%
  );
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.05rem;
}

.hero-badge {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

/* Layout: sidebar + content */
.layout-with-sidebar {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
  padding-left: 1.5rem;
}

.sidebar-nav {
  position: sticky;
  top: 100px;
}

.sidebar-nav h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  margin-left: -2px;
}

.content-main {
  flex: 1;
  min-width: 0;
}

/* Casino cards grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0, 212, 170, 0.15);
}

.casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.casino-logo {
  width: 80px;
  height: 48px;
  object-fit: contain;
}

.casino-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent);
  font-weight: 600;
}

.casino-bonus {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.trust-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.trust-score-bar {
  flex: 1;
  height: 8px;
  background: rgba(139, 154, 173, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.trust-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.trust-score-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  min-width: 2rem;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.4);
}

.casino-card .read-review {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.casino-card .read-review:hover {
  color: var(--accent);
}

.casino-tc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Filters */
.filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* Review cards (Trustpilot style) */
.reviews-section {
  background: rgba(26, 39, 54, 0.5);
  padding: 3rem 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.reviews-nav {
  display: flex;
  gap: 0.5rem;
}

.reviews-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.reviews-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-dark);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  color: #00c853;
}

.review-stars .star.low {
  color: #ff5252;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.review-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-company {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-site {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Why Trust Us */
.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.trust-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trust-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* Footer */
.site-footer {
  background: #0a1219;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-link img {
  width: 32px;
  height: 32px;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-nav h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.responsible-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.responsible-logos a {
  opacity: 0.7;
}

.responsible-logos a:hover {
  opacity: 1;
}

.responsible-logos img {
  height: 28px;
  width: auto;
}

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

/* Page content */
.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 720px;
}

/* Bonus cards */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bonus-item-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.bonus-item-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Payment methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.payment-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
}

.payment-card h3 {
  font-size: 1rem;
}

/* Contact form */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Content pages */
.content-page {
  max-width: 720px;
}

.content-page h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.content-page ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout-with-sidebar {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .sidebar-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sidebar-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .sidebar-nav a {
    border-left: none;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
  }

  .sidebar-nav a.active {
    border-left: none;
  }
}

/* News grid & cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

.news-card-link:hover {
  opacity: 0.9;
}

.news-card-link .news-card:hover {
  border-color: var(--accent);
}

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

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.25rem;
}

.news-card-body time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-card-body h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* News preview (index) */
.news-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.news-preview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-preview-body {
  padding: 1.25rem;
}

.news-preview-body time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-preview-body h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0;
}

.news-preview-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* News article page */
.news-article {
  max-width: 720px;
  margin: 0 auto;
}

.news-article-back {
  margin-bottom: 1.5rem;
}

.news-article-back a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-article-back a:hover {
  color: var(--accent);
}

.news-article time {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.news-article h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.3;
}

.news-article-img {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
}

.news-article-img img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.news-article p {
  margin-bottom: 1rem;
}

/* Guides grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.guide-card-body {
  padding: 1.25rem;
}

.guide-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.guide-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero images */
.hero-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Page hero images */
.page-hero-img {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

/* Trust feature images */
.trust-feature-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

/* About page images */
.about-hero-img {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-hero-img img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.about-inline-img {
  margin: 1rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-inline-img img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

/* Org images (responsible gambling) */
.org-img {
  margin: 1rem 0;
  max-width: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.org-img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* Decorative grid */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.decor-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

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

  .burger-btn {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto;
  }

  .casino-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .news-preview {
    grid-template-columns: 1fr;
  }

  .decor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }
}
