@import url("./components/header.css");
@import url("./components/mobile-menu.css");
@import url("./components/footer.css");
@import url("./components/hero.css");
@import url("./components/advantages.css");
@import url("./components/reviews.css");
@import url("./components/featured-game.css");
@import url("./components/forms.css");
@import url("./components/cards.css");
@import url("./components/legal.css");
@import url("./components/age-modal.css");
@import url("./components/toast.css");

:root {
  --color-bg: #050816;
  --color-surface: #111827;
  --color-accent: #4ade80;
  --color-accent-secondary: #ffd700;
  --color-accent-red: #dc143c;
  --color-text: #f9fafb;
  --color-text-muted: #9ca3af;
  --color-border: #1f2937;

  --color-christmas-green: #1a472a;
  --color-christmas-green-light: #2d5f3f;
  --color-christmas-red: #8b0000;
  --color-christmas-gold: #ffd700;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(74, 222, 128, 0.3);

  --transition-main: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 90px);
}

.section {
  padding-block: clamp(40px, 8vw, 75px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 768px) {

  .section {
    padding-block: clamp(30px, 6vw, 60px);
  }

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