@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap");

:root {
  --bg: #f3f3f3;
  --purple: #8800ff;
  --purple-2: #c888ff;
  --dark-purple: #623b98;
  --black: #000000;
  --white: #ffffff;
  --gold: #fcb000;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
}

/* Full-bleed: break out of the centered container to span the whole screen */
.full-bleed {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

.section {
  padding: 60px;
}

.site-header {
  background: var(--bg);
  padding: 10px 60px;
}

.header-bar {
  background: var(--black);
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  width: 26px;
  height: 14px;
}

.nav-toggle img {
  width: 100%;
  height: 100%;
}

.hero {
  background: var(--bg);
  padding: 10px 60px 60px;
}

.hero-inner {
  position: relative;
  min-height: 684px;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-title {
  font-weight: 800;
  font-size: 128px;
  line-height: 1.2;
  color: var(--purple);
  text-transform: uppercase;
  text-align: center;
}

.hero-head p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  max-width: 377px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero-stats {
  width: 285px;
  flex-shrink: 0;
}

.stat-num {
  font-weight: 800;
  font-size: 40px;
  color: var(--black);
}

.stat-label {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 14px;
}

.stat-label:last-child {
  margin-bottom: 0;
}

.hero-cta {
  width: 323px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-cta p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 340px;
  width: 408px;
  height: 684px;
  z-index: 2;
}

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--purple), var(--purple-2));
  padding: 22px 60px;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.btn:hover {
  filter: brightness(1.08);
}

.about {
  background: var(--bg);
  padding: 60px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-img {
  flex: 1 1 0;
  min-width: 0;
  height: 588px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.heading {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.2;
  color: var(--purple);
  text-transform: uppercase;
}

.about-content > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  gap: 20px;
}

.feature-card {
  background: var(--black);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-card.wide {
  width: 100%;
}

.feature-card.half {
  width: 250px;
  flex-shrink: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #d9d9d9;
}

.feature-card h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
}

.feature-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}

.history {
  background: var(--bg);
  padding: 60px;
}

.history-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.history-head {
  width: 821px;
  max-width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.history-head .heading {
  padding-left: 90px;
}

.history-head .intro {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
}

.history-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.year {
  font-weight: 900;
  font-size: 281px;
  line-height: 0.8;
  color: var(--dark-purple);
  text-transform: uppercase;
  width: 387px;
  flex-shrink: 0;
}

.year span {
  display: block;
}

.history-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.history-col img {
  width: 100%;
  height: 311px;
  object-fit: cover;
}

.history-col .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
}

.history-col .desc p + p {
  margin-top: 21px;
}

.reviews {
  background: var(--bg);
  padding: 60px;
}

.reviews-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.reviews-left {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-row {
  display: flex;
  gap: 20px;
}

.review-card {
  background: var(--black);
  padding: 20px;
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stars {
  display: flex;
  gap: 3px;
  height: 15px;
}

.stars img {
  width: 13px;
  height: 13px;
}

.review-card h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
}

.review-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}

.reviews-img {
  flex: 1 1 0;
  min-width: 0;
  height: 547px;
}

.reviews-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--purple);
  padding: 60px;
  display: flex;
  justify-content: center;
}

.play-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.play-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.play-word {
  font-weight: 700;
  font-size: 160px;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.play-img {
  width: 279px;
  height: 186px;
  flex-shrink: 0;
}

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

.play-sub {
  font-weight: 700;
  font-size: 50px;
  line-height: 0.9;
  text-transform: uppercase;
}

.play-sub.muted {
  color: rgba(255, 255, 255, 0.7);
  width: 286px;
}

.play-sub.dark {
  color: var(--black);
  width: 386px;
}

.play-sub.muted.wide {
  width: 305px;
}

.contact {
  background: var(--bg);
  padding: 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-inner .heading {
  text-align: center;
  width: 100%;
}

.contact-inner > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  text-align: center;
  width: 100%;
}

.contact-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  padding: 14px 40px;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.pill:hover {
  filter: brightness(1.1);
}

.contact-image {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 351px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contact-image:hover img {
  transform: scale(1.04);
}

.site-footer {
  background: var(--bg);
  padding: 20px 60px;
}

.footer-box {
  background: var(--black);
  padding: 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: 11px;
}

.footer-social a {
  display: block;
  transition: opacity 0.2s ease;
}

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

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

.footer-copy {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.catalog {
  background: var(--bg);
  padding: 60px;
}

.catalog-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.game-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.game-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  height: 53px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.game-link:hover {
  opacity: 0.75;
}

.game-name {
  font-weight: 800;
  font-size: 60px;
  line-height: 0.9;
  color: var(--black);
  text-transform: uppercase;
}

.game-arrow {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  display: block;
}

.game-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.game-row--accent .game-link {
  height: 85px;
}

.game-row--accent .game-name {
  color: var(--purple);
}

.game-row--accent .game-arrow {
  margin-top: 0;
}

.catalog-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding-right: 79px;
}

.catalog-thumbs {
  display: flex;
  gap: 12px;
}

.catalog-thumbs img {
  width: 204px;
  height: 130px;
  object-fit: cover;
  display: block;
}

.catalog-text {
  width: 507px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.catalog-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
}

.catalog-contact .contact-inner {
  padding-top: 60px;
}

.game-page {
  background: var(--bg);
  padding: 60px;
}

.game-page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.2;
  color: var(--purple);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.game-image {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card {
  background: var(--dark-purple);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.game-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  text-align: center;
}

.game-card p + p {
  margin-top: 0;
}

.policy {
  background: var(--bg);
  padding: 60px;
}

.policy-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.2;
  color: var(--purple);
  text-transform: uppercase;
}

.policy-intro {
  background: var(--dark-purple);
  padding: 20px;
}

.policy-intro p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
}

.policy-intro p + p {
  margin-top: 10px;
}

.policy-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
}

.policy-body > * + * {
  margin-top: 10px;
}

.policy-body h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
}

.policy-body ul {
  padding-left: 24px;
  list-style: disc;
}

.policy-body a {
  color: inherit;
  text-decoration: underline;
}

.policy-body a:hover {
  color: var(--purple);
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--dark-purple);
  padding: 30px 60px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cookie-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon {
  width: 60px;
  height: 60px;
  animation: cookie-pop 0.5s ease both;
}

.cookie-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}

.cookie-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  text-align: center;
  max-width: 1100px;
}

.cookie-actions {
  display: flex;
  gap: 20px;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  background: var(--purple-2);
  padding: 16px 60px;
  font-family: inherit;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.cookie-btn:active {
  transform: translateY(0);
}

@keyframes cookie-pop {
  from { transform: scale(0.4) rotate(-25deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===== Hover & interaction polish ===== */
.brand-logo,
.footer-logo {
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo,
.brand:hover .footer-logo {
  transform: rotate(-8deg) scale(1.08);
}

.feature-card,
.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(98, 59, 152, 0.25);
}

.about-img,
.reviews-img,
.game-image {
  overflow: hidden;
}

.about-img img,
.reviews-img img,
.game-image img,
.history-col img,
.catalog-thumbs img {
  transition: transform 0.6s ease;
}

.about-img:hover img,
.reviews-img:hover img,
.game-image:hover img,
.catalog-thumbs img:hover {
  transform: scale(1.05);
}

.history-col:hover img {
  transform: scale(1.03);
}

.catalog-thumbs img {
  position: relative;
}

.game-arrow img {
  transition: transform 0.25s ease;
}

.game-link:hover .game-arrow img {
  transform: translate(4px, -4px);
}

.btn {
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.pill:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .cookie-icon,
  .cookie-banner,
  .feature-card,
  .review-card,
  .about-img img,
  .reviews-img img,
  .game-image img,
  .history-col img,
  .catalog-thumbs img,
  .contact-image img,
  .game-arrow img {
    transition: none;
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .hero,
  .about,
  .history,
  .reviews,
  .play,
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .hero-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .hero-col {
    gap: 40px;
  }

  .hero-img {
    position: static;
    width: 100%;
    max-width: 408px;
    height: auto;
    margin: 0 auto;
    order: -1;
  }

  .hero-img img {
    height: auto;
  }

  .hero-title {
    font-size: 88px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .hero-stats,
  .hero-cta {
    width: 100%;
  }

  .hero-head p {
    max-width: none;
  }

  .about-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .about-img {
    width: 100%;
    height: 360px;
  }

  .about-content {
    width: 100%;
  }

  .feature-row {
    flex-direction: column;
  }

  .feature-card.half {
    width: 100%;
  }

  .history-head {
    width: 100%;
    margin-left: 0;
  }

  .history-head .heading {
    padding-left: 0;
  }

  .history-body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .year {
    width: 100%;
    font-size: 180px;
    text-align: left;
  }

  .reviews-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-left {
    width: 100%;
    order: 2;
  }

  .reviews-img {
    width: 100%;
    height: 320px;
    order: 1;
  }

  .review-row {
    flex-direction: column;
  }

  .review-card {
    width: 100%;
  }

  .play {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .play-word {
    font-size: 110px;
  }

  .play-sub {
    font-size: 38px;
  }

  .contact-inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
  }

  .catalog {
    padding: 40px;
  }

  .game-name {
    font-size: 48px;
  }

  .game-arrow {
    width: 80px;
    height: 80px;
  }

  .game-link {
    height: 43px;
  }

  .game-row--accent .game-link {
    height: 65px;
  }

  .catalog-intro {
    padding-right: 0;
    align-items: center;
  }

  .catalog-thumbs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .catalog-text {
    width: 100%;
  }

  .game-page {
    padding: 40px;
  }

  .game-title {
    font-size: 48px;
  }

  .policy {
    padding: 40px;
  }

  .policy-title {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 20px;
    position: relative;
  }

  .header-bar {
    padding: 12px 20px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--black);
    padding: 16px 20px;
    gap: 16px;
    z-index: 30;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-col {
    gap: 30px;
  }

  .hero-title {
    font-size: 48px;
  }

  .about,
  .history,
  .reviews {
    padding: 40px 20px;
  }

  .heading {
    font-size: 36px;
  }

  .about-img {
    height: 300px;
  }

  .year {
    font-size: 140px;
    text-align: left;
  }

  .year span {
    display: inline;
  }

  .play {
    padding: 40px 20px;
  }

  .play-inner {
    width: 100%;
    gap: 20px;
  }

  .play-row {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .play-row.row1 {
    order: 1;
  }

  .play-row.row3 {
    order: 2;
  }

  .play-row.row2 {
    order: 3;
  }

  .play-word {
    font-size: clamp(48px, 18vw, 80px);
    text-align: center;
    width: 100%;
    white-space: normal;
  }

  .play-sub {
    font-size: 30px;
    text-align: center;
    width: 100% !important;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-inner {
    padding: 40px 20px 0;
    gap: 20px;
  }

  .contact-pills {
    flex-direction: column;
    width: 100%;
  }

  .pill {
    width: 100%;
  }

  .contact-image {
    height: 300px;
  }

  .site-footer {
    padding: 20px;
  }

  .footer-box {
    padding: 30px 20px;
  }

  .catalog {
    padding: 40px 20px;
  }

  .catalog-inner {
    gap: 24px;
  }

  .game-list {
    gap: 8px;
  }

  .game-name {
    font-size: 30px;
  }

  .game-arrow {
    width: 60px;
    height: 60px;
  }

  .game-link {
    height: 27px;
  }

  .game-row--accent .game-link {
    height: 45px;
  }

  .catalog-thumbs {
    gap: 12px;
  }

  .catalog-thumbs img {
    width: calc(50% - 6px);
    height: auto;
    aspect-ratio: 204 / 130;
  }

  .catalog-thumbs img:nth-child(3) {
    width: 100%;
    max-width: 280px;
  }

  .game-page {
    padding: 40px 20px;
  }

  .game-page-inner {
    gap: 20px;
  }

  .game-title {
    font-size: 36px;
  }

  .game-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .policy {
    padding: 40px 20px;
  }

  .policy-inner {
    gap: 20px;
  }

  .policy-title {
    font-size: 36px;
  }

  .cookie-banner {
    padding: 24px 20px;
  }

  .cookie-inner {
    gap: 16px;
  }

  .cookie-head {
    gap: 14px;
  }

  .cookie-icon {
    width: 44px;
    height: 44px;
  }

  .cookie-title {
    font-size: 32px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cookie-btn {
    width: 100%;
    padding: 14px 20px;
  }
}
