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

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

body {
  font-family: 'Inter', sans-serif;
  color: #010101;
  background: #ffffff;
  line-height: normal;
  overflow-x: hidden;
}

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

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

.text-block {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.text-block p + p {
  margin-top: 0;
}

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

.header {
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.logo span {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
}

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

.nav a {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  border-radius: 60px;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(235, 61, 91, 0.35);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.nav a,
.footer-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  transition: width 0.25s ease;
}

.nav a:hover,
.footer-nav a:hover {
  color: #eb3d5b;
}

.nav a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

.logo {
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: scale(1.04);
}

.footer-social a {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.1);
}

.hero {
  padding-top: 0;
}

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

.hero-image {
  width: 968px;
  height: 355px;
  border-radius: 40px;
  object-fit: cover;
}

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

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

.hero-text h1 {
  font-weight: 900;
  font-size: 52px;
  width: 1012px;
  max-width: 100%;
}

.hero-text .text-block {
  width: 871px;
  max-width: 100%;
}

.section-style {
  background: linear-gradient(90deg, rgba(235, 61, 91, 0.2) 0%, rgba(255, 115, 205, 0.2) 100%);
  padding: 60px 0;
  margin-top: 60px;
}

.section-style .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-style-image {
  width: 503px;
  height: 467px;
  border-radius: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-style-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 667px;
}

.section-style-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.section-style-text h2 {
  font-weight: 900;
  font-size: 50px;
}

.highlights {
  padding: 60px 0;
}

.highlights .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.highlights-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.highlights-header h2 {
  font-weight: 900;
  font-size: 50px;
}

.highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.highlights-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.highlight-card {
  width: 590px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  box-shadow: 0px 4px 20px 0px rgba(62, 0, 185, 0.1);
  overflow: hidden;
}

.highlight-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.highlight-card-icon {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.highlight-card-icon img {
  position: absolute;
  left: -21.48%;
  top: -19.26%;
  width: 143.7%;
  height: 143.7%;
  max-width: none;
}

.highlight-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.highlight-card-text .card-title {
  font-weight: 900;
  font-size: 40px;
  line-height: normal;
}

.highlight-card-text .card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.games-section {
  padding: 60px 0;
}

.games-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.games-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 1035px;
  max-width: 100%;
  text-align: center;
}

.games-header h2 {
  font-weight: 900;
  font-size: 50px;
}

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

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

.games-row img {
  width: 190px;
  height: 190px;
  border-radius: 24px;
  object-fit: cover;
}

.jump-section {
  padding: 60px 0;
}

.jump-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

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

.jump-text h2 {
  font-weight: 900;
  font-size: 50px;
}

.jump-text .text-block {
  width: 871px;
  max-width: 100%;
}

.jump-image {
  width: 968px;
  height: 355px;
  border-radius: 40px;
  object-fit: cover;
}

.contact-section {
  background: linear-gradient(90deg, rgba(235, 61, 91, 0.2) 0%, rgba(255, 115, 205, 0.2) 100%);
  padding: 60px 0;
}

.contact-section .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-image {
  width: 503px;
  height: 467px;
  border-radius: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 667px;
}

.contact-content h2 {
  font-weight: 900;
  font-size: 50px;
}

.contact-content .text-block {
  font-size: 14px;
  font-weight: 400;
}

.contact-content .contact-details {
  font-weight: 700;
  font-size: 18px;
}

.footer {
  padding: 20px 0;
}

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

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

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

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

.footer-social a {
  width: 60px;
  height: 60px;
  display: block;
}

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

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

.policy-section {
  padding: 0 0 60px;
}

.policy-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 1098px;
}

.policy-section h1 {
  font-weight: 900;
  font-size: 50px;
}

.policy-content {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

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

.policy-content .policy-break {
  height: 14px;
}

.policy-contact {
  line-height: normal;
}

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

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

.game-thumb {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  object-fit: cover;
}

.game-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 1035px;
  max-width: 100%;
  text-align: center;
}

.game-detail-content h1 {
  font-weight: 900;
  font-size: 50px;
}

.game-subtitle {
  font-weight: 900;
  font-size: 30px;
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-info {
  padding: 0 0 60px;
}

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

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

.game-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.game-info-text h2 {
  font-weight: 900;
  font-size: 50px;
  width: 1012px;
  max-width: 100%;
}

.game-info-text .text-block {
  width: 871px;
  max-width: 100%;
}

.game-info-image {
  width: 968px;
  height: 355px;
  border-radius: 40px;
  object-fit: cover;
}

.corners-section {
  padding: 60px 0;
}

.corners-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.corners-section h2 {
  font-weight: 900;
  font-size: 50px;
  text-align: center;
}

.corners-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.corner-card {
  width: 285px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  box-shadow: 0px 4px 20px 0px rgba(62, 0, 185, 0.1);
  overflow: hidden;
}

.corner-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.corner-card-icon {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.corner-card-icon img {
  position: absolute;
  left: -21.48%;
  top: -19.26%;
  width: 143.7%;
  height: 143.7%;
  max-width: none;
}

.corner-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.corner-card-text .card-title {
  font-weight: 900;
  font-size: 40px;
  line-height: normal;
}

.corner-card-text .card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.games-row a {
  display: block;
  border-radius: 24px;
  flex-shrink: 0;
}

.games-row a img {
  width: 190px;
  height: 190px;
  border-radius: 24px;
  object-fit: cover;
}

.highlight-card,
.corner-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover,
.corner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(235, 61, 91, 0.25);
}

.hero-image,
.section-style-image,
.jump-image,
.contact-image,
.game-info-image,
.game-thumb {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover,
.section-style-image:hover,
.jump-image:hover,
.contact-image:hover,
.game-info-image:hover,
.game-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.games-row a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games-row a img {
  transition: transform 0.4s ease;
}

.games-row a:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(235, 61, 91, 0.25);
}

.games-row a:hover img {
  transform: scale(1.08);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: reveal-up 0.7s ease forwards;
}

@keyframes cookie-slide-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

  .reveal.is-visible,
  .cookie-banner {
    animation: none;
  }

  * {
    transition: none !important;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 600px;
  max-width: calc(100% - 40px);
  z-index: 1000;
  animation: cookie-slide-up 0.5s ease forwards;
}

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

.cookie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px;
  border-radius: 40px;
  background: #0d0d0d;
  text-align: center;
  color: #ffffff;
}

.cookie-card-icon {
  width: 60px;
  height: 60px;
}

.cookie-card h2 {
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
}

.cookie-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 22px 50px;
  border: none;
  border-radius: 60px;
  font-family: inherit;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #eb3d5b 0%, #ff73cd 100%);
  color: #ffffff;
}

.cookie-btn.settings {
  background: #ffffff;
  color: #010101;
}

@media (max-width: 768px) {
  .container {
    width: 330px;
  }

  .cookie-card {
    padding: 30px 24px;
  }

  .cookie-card h2 {
    font-size: 30px;
  }

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

  .hero-image {
    width: 330px;
    height: 240px;
  }

  .hero-text h1 {
    font-size: 34px;
    width: 330px;
  }

  .hero-text .text-block {
    width: 330px;
  }

  .section-style {
    padding: 60px 0;
    margin-top: 0;
  }

  .section-style .container {
    flex-direction: column;
    gap: 30px;
  }

  .section-style-image {
    width: 100%;
    height: 306px;
  }

  .section-style-content {
    width: 330px;
  }

  .section-style-text h2 {
    font-size: 28px;
  }

  .highlights-header h2 {
    font-size: 28px;
  }

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

  .highlight-card {
    width: 330px;
  }

  .highlight-card-text .card-title {
    font-size: 26px;
  }

  .games-section .container {
    width: 330px;
  }

  .games-header {
    width: 330px;
  }

  .games-header h2 {
    font-size: 28px;
  }

  .games-grid {
    width: 330px;
  }

  .games-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .games-row img {
    width: 190px;
    height: 190px;
  }

  .jump-text h2 {
    font-size: 28px;
  }

  .jump-text .text-block {
    width: 330px;
  }

  .jump-image {
    width: 330px;
    height: 355px;
  }

  .contact-section .container {
    flex-direction: column;
  }

  .contact-image {
    width: 330px;
    height: 467px;
  }

  .contact-content {
    width: 330px;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .policy-section .container {
    width: 330px;
  }

  .policy-section h1 {
    font-size: 28px;
  }

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

  .game-subtitle {
    font-size: 20px;
  }

  .game-info-text h2 {
    font-size: 28px;
  }

  .game-info-text .text-block {
    width: 330px;
  }

  .game-info-image {
    width: 330px;
    height: 355px;
  }

  .corners-section h2 {
    font-size: 28px;
  }

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

  .corner-card {
    width: 330px;
  }

  .corner-card-text .card-title {
    font-size: 26px;
  }

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

  .footer-copy {
    text-align: center;
    width: 330px;
  }
}
