/* Bestierbonusesforyou.com — Design unique */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg-cream: #f8f5f0;
  --bg-warm: #f0ebe3;
  --bg-card: #ffffff;
  --text-dark: #2c2419;
  --text-muted: #5c5348;
  --accent-terracotta: #c45c3e;
  --accent-olive: #6b7c4a;
  --accent-gold: #b8860b;
  --border-soft: #e5dfd6;
  --shadow-soft: 0 4px 20px rgba(44, 36, 25, 0.06);
  --shadow-card: 0 8px 32px rgba(44, 36, 25, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--accent-terracotta);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 50%, #e8e2d9 100%);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--accent-olive);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero h1 span {
  color: var(--accent-terracotta);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-visual {
  max-width: 280px;
  margin: 0 auto 2rem;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Offers */
.offers {
  padding: 4rem 1.5rem;
}

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

.section-tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-olive);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.offer-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 25, 0.12);
}

.offer-logo-wrap {
  width: 100%;
  height: 80px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.offer-logo-wrap.offer-logo-dark {
  background: #2c2419;
  border-radius: var(--radius-md);
}

.offer-bonus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 0.75rem;
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.offer-rating-num {
  font-weight: 600;
  color: var(--text-dark);
}

.offer-rating-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.offer-payment {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.offer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.offer-icons span {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.offer-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.9rem 1.75rem;
  background: var(--accent-terracotta);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.offer-btn:hover {
  background: #a84d32;
  transform: scale(1.02);
}

/* Block with image */
.block-with-img {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 3rem 1.5rem;
  background: var(--bg-warm);
}

.block-with-img.reverse {
  flex-direction: row-reverse;
}

.block-img {
  flex: 0 0 280px;
  margin: 0 2rem;
}

.block-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.block-content {
  flex: 1;
  max-width: 600px;
}

.block-content h2 {
  font-size: 1.75rem;
  color: var(--accent-olive);
  margin-bottom: 1rem;
}

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

/* Security section */
.security {
  padding: 4rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
}

.security .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.security .block-img {
  flex: none;
}

.security h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-terracotta);
  margin-bottom: 1.25rem;
}

/* Responsible */
.responsible {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.responsible .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-olive);
}

.responsible-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.responsible p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 700px;
}

.policy-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.policy-btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--accent-olive);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.policy-btn:hover {
  background: #5a6e3d;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--bg-cream);
  padding: 2.5rem 1.5rem;
}

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

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

.footer-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-org-logo {
  height: 32px;
  opacity: 0.9;
}

.footer-org-link:hover .footer-org-logo {
  opacity: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.8);
}

/* Page content */
.page-content {
  padding: 4rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.page-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--accent-olive);
}

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

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

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--accent-olive);
}

/* Games page */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.game-card .block-img {
  flex: none;
  margin: 0 0 1rem 0;
  height: 120px;
}

.game-card .block-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.game-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .security .grid {
    grid-template-columns: 1fr;
  }

  .block-with-img,
  .block-with-img.reverse {
    flex-direction: column;
    text-align: center;
  }

  .block-img {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .footer-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}
