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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0c0c0c;
  background: #fff;
  line-height: normal;
  font-size: 14px;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 1200px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, #ffb454 0%, #ff6378 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  border-radius: 60px;
  background: linear-gradient(90deg, #ffb454 0%, #ff6378 100%);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #0c0c0c;
  filter: drop-shadow(0px 0px 11.5px rgba(255, 180, 84, 0.4));
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-3px);
  filter: drop-shadow(0px 6px 18px rgba(255, 99, 120, 0.5));
}

.btn-primary:active {
  transform: translateY(-1px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 84px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.header-logo:hover {
  opacity: 0.85;
}

.header-logo img,
.footer-logo img {
  transition: transform 0.5s ease;
}

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

.header-nav a {
  position: relative;
  transition: opacity 0.3s ease;
}

.header-logo img {
  width: 30px;
  height: 30px;
}

.header-logo span {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #0c0c0c;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.header-nav a {
  white-space: nowrap;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

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

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

.footer-logo span {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #0c0c0c;
}

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

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

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

.footer-social a {
  display: block;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.08);
  opacity: 0.9;
}

.footer-social img {
  width: 100%;
  height: 100%;
}

.footer-copy {
  font-size: 14px;
  color: rgba(12, 12, 12, 0.6);
}

.hero {
  width: 100%;
}

.hero-top {
  background: linear-gradient(90deg, #0f0729 0%, #48184b 100%);
  padding: 40px 84px;
  overflow: hidden;
}

.hero-top-inner {
  display: flex;
  gap: 75px;
  align-items: flex-end;
}

.hero-title {
  font-weight: 800;
  font-size: 74px;
  text-transform: uppercase;
  line-height: normal;
  width: 800px;
  background: linear-gradient(90deg, #ffb454 0%, #ff6378 100%), linear-gradient(90deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 325px;
}

.hero-desc {
  font-size: 14px;
  color: #fff;
  line-height: normal;
}

.hero-banner {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.section-feeling {
  padding: 50px 84px;
}

.feeling-header {
  width: 895px;
  margin-bottom: 30px;
}

.feeling-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 30px;
}

.feeling-text p {
  line-height: normal;
  font-size: 14px;
}

.feeling-content {
  display: flex;
  gap: 25px;
  align-items: stretch;
}

.feeling-img {
  width: 687px;
  height: 418px;
  border-radius: 30px;
  object-fit: cover;
  flex-shrink: 0;
}

.feeling-card {
  background: rgba(46, 190, 239, 0.2);
  border-radius: 30px;
  padding: 20px;
  width: 488px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feeling-card-text h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 0;
}

.feeling-card-text p {
  font-size: 14px;
  line-height: normal;
}

.feeling-card-text .spacer {
  height: 0;
}

.section-lanes {
  background: linear-gradient(90deg, #0f0729 0%, #48184b 100%);
  padding: 50px 84px;
  overflow: hidden;
}

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

.lanes-left {
  width: 590px;
  flex-shrink: 0;
}

.lanes-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 30px;
}

.lanes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lane-card {
  width: 285px;
  border-radius: 30px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lane-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 7, 41, 0.35);
}

.lane-card-icon img {
  transition: transform 0.5s ease;
}

.lane-card:hover .lane-card-icon img {
  transform: scale(1.12) rotate(6deg);
}

.lane-card-blue { background: #2ebeef; }
.lane-card-purple { background: #b97efd; }
.lane-card-pink { background: #ff6378; }
.lane-card-orange { background: #ffb454; }

.lane-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.lane-card-icon img {
  position: absolute;
  width: 132.61%;
  height: 132.97%;
  top: -18.8%;
  left: -12.23%;
  max-width: none;
}

.lane-card h3 {
  font-weight: 800;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 8px;
}

.lane-card p {
  font-size: 14px;
  line-height: normal;
}

.lanes-img {
  width: 580px;
  height: 604px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-journal {
  padding: 60px 84px;
  text-align: center;
}

.journal-header {
  max-width: 989px;
  margin: 0 auto 30px;
}

.journal-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 30px;
}

.journal-text {
  text-align: center;
}

.journal-text p {
  font-size: 14px;
  line-height: normal;
}

.journal-btn {
  margin-bottom: 30px;
}

.journal-gallery {
  display: flex;
  gap: 21px;
  align-items: flex-end;
  justify-content: center;
}

.journal-arrow {
  width: 228px;
  height: 128px;
  object-fit: cover;
  flex-shrink: 0;
}

.journal-arrow-flipped {
  transform: scaleX(-1);
}

.journal-grid {
  display: flex;
  gap: 20px;
  height: 462px;
  align-items: center;
}

.journal-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 221px;
}

.journal-col img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 26px;
  object-fit: cover;
}

.section-moments {
  padding: 60px 84px;
}

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

.moments-left {
  width: 724px;
  flex-shrink: 0;
}

.moments-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 30px;
}

.moments-text p {
  font-size: 14px;
  line-height: normal;
}

.moments-text {
  margin-bottom: 30px;
}

.moments-img {
  width: 446px;
  height: 587px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-contact {
  background: linear-gradient(90deg, #0f0729 0%, #48184b 100%);
  padding: 50px 199px;
  overflow: hidden;
  text-align: center;
}

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

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.contact-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
}

.contact-text {
  color: #fff;
}

.contact-text p {
  font-size: 14px;
  line-height: normal;
}

.contact-details {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #fff;
}

.contact-img {
  width: 491px;
  height: 504px;
  object-fit: cover;
}

.game-hero {
  background: linear-gradient(90deg, #0f0729 0%, #48184b 100%);
  padding: 50px 199px;
  text-align: center;
  overflow: hidden;
}

.game-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1201px;
  margin: 0 auto;
}

.game-hero-header {
  max-width: 989px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-hero-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
}

.game-hero-desc {
  font-size: 14px;
  color: #fff;
  line-height: normal;
}

.game-hero-img {
  width: 300px;
  height: 300px;
  border-radius: 26px;
  object-fit: cover;
}

.game-about {
  padding: 60px 84px;
  text-align: center;
}

.game-about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 989px;
  margin: 0 auto;
}

.game-about-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
}

.game-about-text p {
  font-size: 14px;
  line-height: normal;
}

.policy-section {
  padding: 50px 84px 60px;
}

.policy-title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 30px;
}

.policy-text {
  max-width: 1098px;
  font-size: 14px;
  line-height: normal;
}

.policy-text p {
  margin-bottom: 0;
}

.policy-text .spacer {
  height: 14px;
}

.catalog-journal {
  padding: 60px 84px;
  text-align: center;
}

.catalog-journal .journal-header {
  max-width: 989px;
  margin: 0 auto 30px;
}

.catalog-journal .journal-gallery {
  display: flex;
  gap: 21px;
  align-items: flex-end;
  justify-content: center;
}

.catalog-journal .journal-grid a {
  display: block;
  transition: transform 0.2s;
}

.catalog-journal .journal-grid a:hover {
  transform: scale(1.04);
}

.catalog-journal .journal-grid a img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 26px;
  object-fit: cover;
}

.feeling-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feeling-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46, 190, 239, 0.25);
}

.feeling-img,
.lanes-img,
.moments-img,
.contact-img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feeling-img:hover,
.moments-img:hover,
.contact-img:hover {
  transform: scale(1.025);
}

.game-hero-img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.game-hero-img:hover {
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.journal-grid a {
  display: block;
  border-radius: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 36px rgba(255, 99, 120, 0.3);
}

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

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 760px;
  z-index: 1000;
  animation: cookieSlideUp 0.5s ease both;
}

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

.cookie-banner.closing {
  animation: cookieSlideDown 0.3s ease both;
}

.cookie-card {
  background: #0f0729;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  padding: 30px 35px 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

.cookie-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cookie-title {
  font-weight: 800;
  font-size: 32px;
  line-height: normal;
  color: #fff;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.cookie-accept,
.cookie-manage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 60px;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, filter 0.3s ease;
}

.cookie-accept {
  border: none;
  color: #0c0c0c;
  background: linear-gradient(90deg, #ffb454 0%, #ff6378 100%);
  filter: drop-shadow(0px 0px 11.5px rgba(255, 180, 84, 0.4));
}

.cookie-accept:hover {
  opacity: 0.92;
  transform: translateY(-3px);
  filter: drop-shadow(0px 6px 18px rgba(255, 99, 120, 0.5));
}

.cookie-manage {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cookie-manage:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translate(-50%, 40px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes cookieSlideDown {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, 40px); }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 15px;
  }

  .hero-top {
    padding: 30px 15px;
  }

  .hero-top-inner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .hero-title {
    width: 100%;
    font-size: 40px;
  }

  .hero-right {
    width: 100%;
  }

  .hero-banner {
    height: 280px;
  }

  .section-feeling {
    padding: 30px 15px;
  }

  .feeling-header {
    width: 100%;
  }

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

  .feeling-content {
    flex-direction: column;
  }

  .feeling-img {
    width: 100%;
    height: 200px;
  }

  .feeling-card {
    width: 100%;
  }

  .section-lanes {
    padding: 50px 15px;
  }

  .lanes-inner {
    flex-direction: column;
  }

  .lanes-left {
    width: 100%;
  }

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

  .lanes-grid {
    flex-direction: column;
  }

  .lane-card {
    width: 100%;
  }

  .lanes-img {
    display: none;
  }

  .section-journal {
    padding: 30px 15px;
  }

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

  .journal-gallery {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-arrow {
    width: 228px;
    height: 128px;
  }

  .journal-arrow-flipped {
    align-self: flex-end;
  }

  .journal-grid {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .journal-col {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .journal-col img {
    width: calc(50% - 10px);
    height: auto;
    aspect-ratio: 1/1;
  }

  .section-moments {
    padding: 30px 15px;
  }

  .moments-inner {
    flex-direction: column;
  }

  .moments-left {
    width: 100%;
  }

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

  .moments-img {
    width: 100%;
    height: auto;
  }

  .section-contact {
    padding: 50px 15px;
  }

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

  .contact-img {
    width: 100%;
    height: auto;
  }

  .policy-section {
    padding: 30px 15px;
  }

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

  .game-hero {
    padding: 50px 15px;
  }

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

  .game-about {
    padding: 30px 15px;
  }

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

  .catalog-journal {
    padding: 30px 15px;
  }

  .footer {
    padding: 20px 15px;
  }

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

  .cookie-banner {
    bottom: 15px;
    width: calc(100% - 24px);
  }

  .cookie-card {
    padding: 25px 20px 28px;
    border-radius: 26px;
  }

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

  .cookie-accept,
  .cookie-manage {
    padding: 18px 30px;
  }
}
