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

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

:root {
  --grad: linear-gradient(to right, #002efd, #139fea);
  --dark: #0e0e0e;
  --border-blue: #002efd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #0e0e0e;
  overflow-x: hidden;
}

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

img {
  display: block;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px 68px;
  border-radius: 60px;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
  cursor: pointer;
  flex-shrink: 0;
  max-width: 200px;
  transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.btn-solid {
  background: var(--grad);
  color: #ffffff;
  border: none;
}

.btn-bordered {
  background: var(--grad);
  color: #ffffff;
  border: 3px solid #ffffff;
}

.header {
  background: #0e0e0e;
  border-radius: 0 0 40px 40px;
  height: 50px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

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

.header-nav a {
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.2s;
}

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

.hero {
  max-width: 1054px;
  margin: 0 auto;
  padding: 20px 15px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-banner {
  width: 809px;
  max-width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hero-banner img {
  position: absolute;
  width: 100%;
  height: 149.44%;
  top: -7.22%;
  left: 0;
  object-fit: cover;
  max-width: none;
}

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

.hero-title {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
}

.hero-desc {
  font-size: 14px;
  color: #0e0e0e;
  text-align: center;
  max-width: 814px;
  line-height: normal;
}

.hero-desc p + p {
  margin-top: 1em;
}

.mood {
  padding: 50px 0 50px;
}

.mood-inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.mood-heading {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  width: 692px;
  flex-shrink: 0;
}

.mood-body {
  font-size: 14px;
  color: #0e0e0e;
  line-height: normal;
  width: 470px;
  flex-shrink: 0;
}

.mood-body p + p {
  margin-top: 1em;
}

.full-banner {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

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

.players {
  max-width: 1368px;
  margin: 0 auto;
  padding: 60px 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  max-width: 692px;
}

.players-grid {
  display: flex;
  align-items: center;
  gap: 41px;
  width: 100%;
}

.players-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 387px;
  flex-shrink: 0;
}

.info-card {
  border: 1px solid var(--border-blue);
  border-radius: 26px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 46, 253, 0.14);
}

.info-card-title {
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
}

.info-card-body {
  font-size: 14px;
  color: #0e0e0e;
  line-height: normal;
  margin-top: 1em;
}

.players-mascot {
  flex: 1;
  height: 508px;
  overflow: hidden;
}

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

.featured {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 84px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.game-card {
  flex: 1;
  background: var(--grad);
  border: 1px solid var(--border-blue);
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 46, 253, 0.25);
}

.game-card-img {
  width: 100%;
  height: 160px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.game-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: normal;
}

.game-card-body {
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
  margin-top: 1em;
}

.breaks {
  background: var(--grad);
  padding: 60px 84px;
  overflow: hidden;
}

.breaks-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
}

.breaks-text {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.breaks-title {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  line-height: normal;
}

.breaks-body {
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
}

.breaks-body p + p {
  margin-top: 1em;
}

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

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

.thumb {
  width: 190px;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.thumb:hover {
  transform: scale(1.06);
}

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

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

.contact-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

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

.contact-content {
  max-width: 1368px;
  width: 100%;
  padding: 0 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.contact-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  max-width: 692px;
}

.contact-body {
  font-size: 14px;
  color: #0e0e0e;
  line-height: normal;
  max-width: 814px;
  text-align: center;
}

.contact-body p + p {
  margin-top: 1em;
}

.contact-address {
  font-size: 18px;
  font-weight: bold;
  color: #0e0e0e;
  line-height: normal;
  margin-top: 1em;
}

.footer {
  background: #0e0e0e;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  height: 212px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 217px;
  padding: 0 0 0 84px;
  height: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

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

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

.footer-logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

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

.footer-nav a {
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  line-height: normal;
  transition: opacity 0.2s;
}

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

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

.footer-social a {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.footer-social a:hover {
  transform: scale(1.12);
  opacity: 0.8;
}

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

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
  white-space: nowrap;
}

.footer-mascot {
  width: 470px;
  height: 212px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-mascot img {
  position: absolute;
  width: 100.65%;
  height: 167.6%;
  left: -0.65%;
  top: -26.26%;
  max-width: none;
}

/* ============ GAME PAGE ============ */
.game-hero {
  background: var(--grad);
  padding: 70px 84px 20px;
  margin-top: -50px;
}

.game-hero-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.game-hero-thumb {
  width: 280px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.game-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

.game-hero-desc p + p {
  margin-top: 1em;
}

.game-info {
  max-width: 1368px;
  margin: 0 auto;
  padding: 60px 84px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.game-info-text {
  width: 793px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-info-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  max-width: 692px;
}

.game-info-desc {
  font-size: 14px;
  color: #0e0e0e;
  line-height: normal;
}

.game-info-desc p + p {
  margin-top: 1em;
}

.game-info-img {
  width: 387px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* ============ CATALOG PAGE ============ */
.catalog-hero {
  background: var(--grad);
  padding: 70px 84px 60px;
  display: flex;
  align-items: center;
  min-height: 480px;
  margin-top: -50px;
}

.catalog-hero-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-text {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.catalog-title {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  line-height: normal;
}

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

.catalog-desc p + p {
  margin-top: 1em;
}

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

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

.catalog-card {
  width: 190px;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.catalog-card:hover {
  transform: scale(1.06);
  opacity: 0.88;
}

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

/* ============ COOKIE BANNER ============ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-card {
  background: #ffffff;
  border: 2px solid #002efd;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.cookie-title {
  font-size: 28px;
  font-weight: bold;
  color: #002efd;
  line-height: normal;
}

.cookie-body {
  font-size: 14px;
  color: #0e0e0e;
  line-height: 1.5;
}

.cookie-body p + p {
  margin-top: 0.4em;
}

.cookie-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 60px;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s, opacity 0.2s;
}

.cookie-btn:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.cookie-btn-accept {
  background: var(--grad);
  color: #ffffff;
  border: none;
}

.cookie-btn-settings {
  background: #ffffff;
  color: #002efd;
  border: 2px solid #002efd;
}

/* ============ POLICY PAGES ============ */
.policy {
  max-width: 1368px;
  margin: 0 auto;
  padding: 70px 84px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-title {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  max-width: 692px;
}

.policy-body {
  font-size: 14px;
  color: #0e0e0e;
  line-height: normal;
  max-width: 1098px;
}

.policy-body p + p {
  margin-top: 1em;
}
@media (max-width: 1290px) {
  .game-info{
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  .header {
    height: 81px;
    align-items: flex-start;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 15px 0;
    gap: 15px;
    height: auto;
  }

  .hero {
    max-width: 100%;
    padding: 20px 15px 60px;
  }

  .hero-banner {
    width: 100%;
    height: 122px;
  }

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

  .hero-desc {
    max-width: 100%;
  }

  .mood {
    padding: 40px 0;
  }

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

  .mood-heading {
    font-size: 36px;
    width: 100%;
  }

  .mood-body {
    width: 100%;
  }

  .players {
    max-width: 100%;
    padding: 60px 15px;
  }

  .section-title {
    font-size: 36px;
    width: 100%;
    max-width: 100%;
  }

  .players-grid {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .players-col {
    width: 100%;
  }

  .players-mascot {
    width: 284px;
    height: 420px;
    flex: none;
    margin: 0 auto;
  }

  .featured {
    max-width: 100%;
    padding: 0 15px 60px;
  }

  .game-cards {
    flex-direction: column;
  }

  .game-card {
    flex: none;
    width: 100%;
  }

  .breaks {
    padding: 60px 15px;
  }

  .breaks-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .breaks-text {
    width: 100%;
  }

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

  .breaks-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 157px 157px;
    gap: 15px;
  }

  .breaks-row {
    display: contents;
  }

  .thumb {
    width: 157px;
    height: 157px;
  }

  .game-hero {
    padding: 101px 15px 40px;
    margin-top: -81px;
  }

  .game-hero-inner {
    flex-direction: column;
  }

  .game-hero-thumb {
    width: 220px;
    height: 220px;
  }

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

  .game-info {
    padding: 40px 15px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .game-info-title {
    font-size: 36px;
    max-width: 100%;
  }

  .game-info-img {
    width: 100%;
    max-width: 329px;
    height: 238px;
  }

  .catalog-hero {
    padding: 101px 15px 60px;
    min-height: auto;
    align-items: flex-start;
    margin-top: -81px;
  }

  .catalog-hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .catalog-text {
    width: 100%;
  }

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

  .catalog-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 157px 157px;
    gap: 15px;
  }

  .catalog-row {
    display: contents;
  }

  .catalog-card {
    width: 157px;
    height: 157px;
  }

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

  .contact-title {
    font-size: 36px;
    max-width: 100%;
  }

  .contact-body {
    max-width: 100%;
  }

  .footer {
    height: auto;
    min-height: 540px;
    padding: 20px 0 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 15px;
    height: auto;
  }

  .footer-left {
    width: 100%;
  }

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

  .footer-mascot {
    width: 330px;
    height: 148px;
  }

  .policy {
    padding: 40px 15px 60px;
  }

  .policy-title {
    font-size: 36px;
    max-width: 100%;
  }

  .cookie-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

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