@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;700;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --purple: #7749ff;
  --magenta: #c90cee;
  --btn-start: #ffcf3e;
  --btn-end: #e46700;
  --body-text: #444444;
  --white: #ffffff;
  --content-width: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  color: var(--body-text);
  background: #fff;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--btn-start) 0%, var(--btn-end) 100%);
  border: 2px solid var(--white);
  border-radius: 60px;
  padding: 28px 60px;
  font-family: 'Lexend', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(228, 103, 0, 0.45);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 84px;
}

.navbar {
  max-width: var(--content-width);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

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

.nav-logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

.nav-links a:hover {
  opacity: 0.75;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  min-height: 819px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  min-height: 819px;
}

.hero-content {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  min-width: 0;
}

.hero-title {
  font-weight: 900;
  font-size: 80px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.75;
  max-width: 687px;
  margin-bottom: 40px;
}

.hero-image {
  flex-shrink: 0;
  width: 483px;
  padding-bottom: 20px;
  align-self: flex-end;
}

.hero-image img {
  width: 483px;
  height: 670px;
  object-fit: contain;
  object-position: bottom center;
  animation: float 5s ease-in-out infinite;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about {
  background: #ffffff;
  padding-top: 60px;
}

.about-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

.about-image {
  flex-shrink: 0;
}

.about-image img {
  width: 449px;
  height: 670px;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
  min-width: 0;
  padding-bottom: 60px;
}

.about-title {
  font-weight: 900;
  font-size: 70px;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
}

.about-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, rgba(119, 73, 255, 0.1) 0%, rgba(201, 12, 238, 0.1) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-us-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.why-us-heading {
  font-weight: 900;
  font-size: 70px;
  text-transform: uppercase;
  line-height: 1.0;
  text-align: center;
  margin-bottom: 24px;
}

.why-us-subtext {
  font-weight: 300;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.feature-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  width: 285px;
  min-height: 338px;
  border-radius: 30px;
  padding: 24px 20px 80px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(119, 73, 255, 0.25);
}

.feature-card--white {
  background: #ffffff;
}

.feature-card--purple {
  background: var(--purple);
}

.feature-card-title {
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.feature-card--white .feature-card-title {
  color: var(--purple);
}

.feature-card--purple .feature-card-title {
  color: var(--white);
}

.feature-card-body {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
}

.feature-card--white .feature-card-body {
  color: var(--body-text);
}

.feature-card--purple .feature-card-body {
  color: rgba(255, 255, 255, 0.85);
}

.feature-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.why-us-decor {

  width: 254px;
  height: 206px;
  pointer-events: none;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

/* ============================================================
   TOP POPULAR GAMES SECTION
   ============================================================ */
.games {
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  padding: 80px 0;
}

.games-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.games-header {

  margin-bottom: 50px;
}

.games-title {
  font-weight: 900;
  font-size: 70px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 24px;
}

.games-subtext {
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.75;
  max-width: 900px;

}

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

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

.games-row--left {
  justify-content: flex-start;
}

.games-row--right {
  justify-content: flex-end;
}

.game-thumb {
  display: block;
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px 0 rgba(255, 255, 255, 0.6);
}

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

.game-thumb-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffcf3e, #e46700);
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-thumb:hover .game-thumb-name {
  opacity: 1;
}

.games-cta {

  margin-top: 50px;
  margin-bottom: 50px;
}

/* ============================================================
   CONTACT / GET IN TOUCH SECTION
   ============================================================ */
.contact {
  background: #ffffff;
  padding-top: 60px;
}

.contact-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 50px;
  align-items: center;
}

.contact-image {
  flex-shrink: 0;
}

.contact-image img {
  width: 409px;
  height: 702px;
  object-fit: cover;
  display: block;
}

.contact-content {
  flex: 1;
  min-width: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-title {
  font-weight: 900;
  font-size: 70px;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
}

.contact-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-detail {
  font-weight: 700;
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  padding: 30px 84px;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
}

.footer-logo-text {
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

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

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

.footer-social-link {
  display: block;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s;
}

.footer-social-link:hover {
  opacity: 0.75;
}

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

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

/* ============================================================
   RESPONSIVE — TABLET (max 1240px)
   ============================================================ */
@media (max-width: 1240px) {
  .site-header {
    padding: 20px 24px;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 64px;
    text-align: left;
  }

  .hero-image {
    width: 360px;
  }

  .hero-image img {
    width: 360px;
    height: 500px;
  }

  .about-inner,
  .contact-inner {
    padding: 0 24px;
  }

  .about-title,
  .contact-title {
    font-size: 56px;
  }

  .about-image img {
    width: 340px;
    height: auto;
  }

  .contact-image img {
    width: 320px;
    height: auto;
  }

  .why-us-inner,
  .games-inner {
    padding: 0 24px;
  }

  .why-us-heading {
    font-size: 56px;
  }

  .feature-cards {
    flex-wrap: wrap;
  }

  .games-title {
    font-size: 56px;
  }

  .site-footer {
    padding: 30px 24px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ----- Header ----- */
  .site-header {
    padding: 15px;
  }

  .navbar {
    border-radius: 22px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* ----- Hero ----- */
  .hero {
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 130px 15px 40px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 30px;
   
  }

  .hero-title {
    font-size: 34px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-body {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: left;
  }
 

  .hero-image {
    width: 237px;
    padding-bottom: 0;
    align-self: center;
  }

  .hero-image img {
    width: 237px;
    height: 328px;
  }

  /* ----- About ----- */
  .about {
    padding-top: 40px;
  }

  .about-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 0;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
  }

  .about-content {
    padding: 0 15px 40px;
  }

  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* ----- Why Us ----- */
  .why-us {
    padding: 50px 0;
  }

  .why-us-inner {
    padding: 0 15px;
  }

  .why-us-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .why-us-subtext {
    margin-bottom: 35px;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .feature-card {
    width: 330px;
    max-width: 100%;
  }

  .why-us-decor {
    display: none;
  }

  /* ----- Games ----- */
  .games {
    padding: 50px 0;
  }

  .games-inner {
    padding: 0 15px;
  }

  .games-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .games-grid {
    gap: 15px;
  }

  .games-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .games-row--right {
    justify-content: center;
  }

  .game-thumb {
    width: 260px;
    height: 260px;
  }

  .games-cta {
    margin-top: 35px;
  }

  /* ----- Contact ----- */
  .contact {
    padding-top: 40px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 0;
  }

  .contact-image {
    width: 100%;
  }

  .contact-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
  }

  .contact-content {
    padding: 0 15px 40px;
    padding-top: 0;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .contact-detail {
    font-size: 16px;
  }

  /* ----- Footer ----- */
  .site-footer {
    padding: 20px 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-title {
    font-size: 28px;
  }

  .about-title,
  .why-us-heading,
  .games-title,
  .contact-title {
    font-size: 28px;
  }

  .btn-cta {
    padding: 20px 36px;
    font-size: 13px;
  }

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

/* ============================================================
   PAGE: CATALOG — catalog hero banner
   ============================================================ */
.catalog-hero {
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  min-height: 860px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.catalog-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog-title {
  font-weight: 900;
  font-size: 70px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.catalog-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.75;
  max-width: 900px;
}

/* Catalog uses the shared .games-grid / .games-row / .game-thumb styles */

/* ---- Catalog responsive ---- */
@media (max-width: 1240px) {
  .catalog-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .catalog-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .catalog-hero-inner {
    padding-top: 130px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 30px;
  }

  .catalog-title {
    font-size: 34px;
    margin-bottom: 15px;
  }
}

@media (max-width: 400px) {
  .catalog-title {
    font-size: 28px;
  }
}

/* ============================================================
   PAGE: INDIVIDUAL GAME DETAIL PAGES
   ============================================================ */

/* --- Game Hero --- */
.game-hero {
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  min-height: 474px;
  overflow: hidden;
  padding-bottom: 60px;
}

.game-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.game-hero-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.game-hero-thumb {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.game-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-hero-right {
  flex: 1;
  min-width: 0;
}

.game-hero-title {
  font-weight: 900;
  font-size: 70px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.game-hero-desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.75;
}

/* --- Game Detail Section (white bg, text left + screenshot right) --- */
.game-detail {
  background: #ffffff;
  padding: 60px 0;
}

.game-detail-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.game-detail-text {
  width: 701px;
  flex-shrink: 0;
}

.game-detail-heading {
  font-weight: 900;
  font-size: 70px;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
}

.game-detail-body {
  font-weight: 300;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 40px;
}

.game-detail-screenshot {
  flex: 1;
  min-width: 0;
}

.game-detail-screenshot img {
  width: 449px;
  height: 670px;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

/* --- Game detail responsive (tablet) --- */
@media (max-width: 1240px) {
  .game-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .game-hero-title {
    font-size: 56px;
  }

  .game-detail-inner {
    padding: 0 24px;
  }

  .game-detail-text {
    width: auto;
    flex: 1;
  }

  .game-detail-heading {
    font-size: 56px;
  }

  .game-detail-screenshot img {
    width: 340px;
    height: auto;
  }
}

/* --- Game detail responsive (mobile) --- */
@media (max-width: 768px) {
  .game-hero {
    min-height: auto;
    overflow: visible;
    padding-bottom: 40px;
  }

  .game-hero-inner {
    flex-direction: column;
    align-items: center;
    padding-top: 130px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 20px;
  }

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

  .game-hero-right {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .game-hero-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .game-detail {
    padding: 40px 0;
  }

  .game-detail-inner {
    flex-direction: column;
    padding: 0 15px;
    gap: 30px;
  }

  .game-detail-text {
    width: 100%;
  }

  .game-detail-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .game-detail-screenshot {
    width: 100%;
  }

  .game-detail-screenshot img {
    width: 100%;
    height: auto;
    max-height: 494px;
    object-fit: cover;
  }
}

@media (max-width: 400px) {
  .game-hero-title {
    font-size: 28px;
  }

  .game-detail-heading {
    font-size: 28px;
  }
}

/* ===== POLICY PAGES ===== */
.site-header--solid {
  position: relative;
  background: linear-gradient(180deg, var(--purple) 0%, var(--magenta) 100%);
  height: 100px;
}

.policy-main {
  background: #ffffff;
  padding: 20px 84px 80px;
}

.policy-title {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.6;
}

.policy-body p {
  margin: 0;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Policy pages responsive (tablet) --- */
@media (max-width: 1240px) {
  .policy-main {
    padding: 20px 24px 60px;
  }

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

/* --- Policy pages responsive (mobile) --- */
@media (max-width: 768px) {
  .policy-main {
    padding: 20px 15px 50px;
  }

  .policy-title {
    font-size: 34px;
    margin-bottom: 16px;
  }
}

@media (max-width: 400px) {
  .policy-title {
    font-size: 28px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner--hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.cookie-banner-title {
  font-family: 'Lexend', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-banner-text {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookie-btn-accept {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--btn-start) 0%, var(--btn-end) 100%);
  border: 2px solid var(--white);
  border-radius: 60px;
  transition: opacity 0.2s ease;
}

.cookie-btn-accept:hover {
  opacity: 0.88;
}

.cookie-btn-settings {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  background: #ffffff;
  border: 2px solid #111111;
  border-radius: 60px;
  font-family: 'Lexend', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-btn-settings:hover {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 15px;
    right: 15px;
    width: auto;
    bottom: 15px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-title {
  animation: fadeInUp 0.7s ease both;
}

.hero-body {
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero-content .btn-cta {
  animation: fadeInUp 0.7s ease 0.3s both;
}

.nav-logo {
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.06);
}

.footer-logo {
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.06);
}

[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-anim].anim-visible {
  opacity: 1;
  transform: none;
}

.feature-card:nth-child(2)[data-anim] { transition-delay: 0.1s; }
.feature-card:nth-child(3)[data-anim] { transition-delay: 0.2s; }
.feature-card:nth-child(4)[data-anim] { transition-delay: 0.3s; }

.games-row:nth-child(2)[data-anim] { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; }
  .hero-title, .hero-body, .hero-content .btn-cta { animation: none; }
  [data-anim] { opacity: 1; transform: none; transition: none; }
}
