:root {
  --primary-bg: #0f172a;
  --secondary-bg: #1e293b;
  --accent-color: #197eb5;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --border-radius: 0.5rem;
  --font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  margin-top: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  p,
  li,
  a {
    font-size: 0.95rem;
    word-wrap: break-word;
  }
}

a,
a:hover,
a:focus {
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    filter 0.3s ease,
    transform 0.2s ease;
}

button:active {
  transform: scale(0.98);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

input[type="checkbox"].checkbox {
  border-radius: 0.25rem;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-100 {
  z-index: 100;
}

.z-90 {
  z-index: 90;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ===== responsible_gaming_bar ===== */
#top_bar {
  width: 100%;
  z-index: 100;
  position: relative;
}

/* ===== header ===== */
#header {
  width: 100%;
}

.js-mobile-menu-overlay {
  width: 100%;
  height: 100vh;
}

/* ===== hero_section ===== */
#hero {
  width: 100%;
  position: relative;
}

.hero-bg-glow {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(25, 126, 181, 0.15) 0%,
    transparent 70%
  );
}

/* ===== about_Francetopgains ===== */
#about_section {
  width: 100%;
}

.js-reveal {
  will-change: opacity, transform;
}

/* ===== offers_grid ===== */
#offers_grid {
  width: 100%;
  background-color: var(--primary-bg);
}

.js-offer-card {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* ===== user_reviews ===== */
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== faq_accordion ===== */
.collapse-title::after {
  color: var(--accent-color) !important;
}

.collapse-arrow .collapse-title:after {
  top: 1.5rem;
}

.collapse-content {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* ===== gaming_strategies ===== */
.js-fade-in {
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
  transform: translateY(20px);
}

.js-fade-in.opacity-100 {
  transform: translateY(0);
}

/* ===== important_disclaimer ===== */
#disclaimer_block {
  width: 100%;
}

#disclaimer_block strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== footer ===== */
.footer-logo {
  max-width: 120px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo-small {
  max-width: 40px;
  height: auto;
  display: block;
}
