@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

:root {
  --bg: #0a061b;
  --grad-start: #dd4752;
  --grad-end: #f0bc00;
  --gradient: linear-gradient(90deg, #dd4752, #f0bc00);
  --font-display: 'Creepster', cursive;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --white: #ffffff;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-07: rgba(255, 255, 255, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border: 2px solid var(--white-40);
  border-radius: 60px;
  padding: 24px 60px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  box-shadow: 0 4px 20px #df504c;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  max-width: 240px;
}


.site-header {
  position: relative;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1368px;
  margin: 0 auto;
  padding: 20px 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.logo__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
}

.site-nav a {
  color: var(--white);
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 0.8;
}

.site-footer {
  background: var(--bg);
}

.site-footer__inner {
  max-width: 1368px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 84px 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
}

.footer-nav a {
  color: var(--white);
  white-space: nowrap;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-social a img {
  width: 40px;
  height: 40px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--white-60);
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 480px;
  background: #1a1528;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 28px 28px 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.cookie-banner.cookie-banner--hidden {
  display: none;
}

.cookie-banner__img {
  width: 90px;
  height: 90px;
}

.cookie-banner__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.cookie-banner__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__allow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(90deg, #dd4752, #f0bc00);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(221, 71, 82, 0.5);
  transition: opacity 0.2s;
}


.cookie-banner__decline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}


@media (max-width: 768px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 360px;
    padding: 20px 15px;
  }

  .site-footer__inner {
    max-width: 360px;
    padding: 20px 15px 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}
