/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anton", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.logo span {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff8c00;
}

/* Hero Section */
.hero {
  background: white;
  padding: 100px 0 60px;
  margin-top: 30px;
}

.hero-wrapper {
  width: 100%;
}

/* Title and Badge Row */
.title-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.main-title {
  font-family: "Anton", sans-serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 0.9;
  color: #333333;
  letter-spacing: -2px;
  margin: 0;

  color: #131313;
  font-family: Anton;
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 160px */
  text-transform: uppercase;
}

.rainbow-badge {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

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

/* Characters and Content Row */
.content-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.characters-section {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.character {
  width: 100%;
  height: auto;
}

.text-section {
  flex: 1;
  padding-left: 40px;
}

.mini-games-title {
  font-family: "Anton", sans-serif;
  font-size: 75px;
  font-weight: 900;
  line-height: 1;
  color: #1a237e;
  margin-bottom: 25px;
  letter-spacing: -1px;

  color: #14006f;
  font-family: Anton;
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 160px */
  text-transform: uppercase;
}

.description {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: normal;
}

.view-games-btn {
  background: linear-gradient(45deg, #ff8c00, #ffa726);
  color: white;
  border: none;
  padding: 15px 35px;
  font-family: "Anton", sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;

  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #ffeb38 0%, #f89900 100%);
  color: #131313;
  font-family: Anton;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.view-games-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.cta-button {
  background: linear-gradient(45deg, #ff8c00, #ffa726);
  color: white;
  border: none;
  padding: 15px 30px;
  font-family: "Anton", sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;

  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #ffeb38 0%, #f89900 100%);
  color: #131313;
  font-family: Anton;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;

  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Games Collection Section */
.games-collection {
  background: linear-gradient(135deg, #1a237e 0%, #2c387e 100%);
  padding: 80px 0;
  color: white;
  background: linear-gradient(180deg, #131313 0%, #14006f 100%);
}

.games-collection h2 {
  font-size: 72px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: white;
  letter-spacing: -2px;
}

.collection-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.collection-left {
  flex: 2;
}

.collection-left p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: normal;
}

.collection-right {
  flex: 1;
  text-align: center;
}

.collection-right img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* Why Choose Section */
.why-choose {
  background: white;
  padding: 80px 0;
}

.why-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: -2px;

  color: #131313;
  font-family: Anton;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.why-left p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  font-weight: normal;

  color: #131313;
  font-family: Anton;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.why-right {
  flex: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: #1a237e;
  color: white;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: left;

  border-radius: 28px;
  background: #14006f;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.feature-card p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: white;
  font-weight: normal;
}

/* Player Experience Section */
.player-experience {
  background: white;
  padding: 80px 0;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.experience-left {
  flex: 1;
}

.experience-left img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.experience-right {
  flex: 1;
}

.experience-right h2 {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: -2px;

  color: #131313;
  font-family: Anton;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.experience-right p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;

  color: #131313;
  font-family: Anton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Future Section */
.future {
  background: linear-gradient(180deg, #131313 0%, #14006f 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.future h2 {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.future p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
}

.future-artifact {
  margin-top: 60px;
}

.future-artifact img {
  width: 300px;
  height: auto;
}

/* Footer */
.footer {
  background: white;
  padding: 60px 0 30px;
}

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

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

.footer-logo span {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1a237e;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-info p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 5px;
}

.footer-info p strong {
  color: #1a237e;
  font-weight: bold;
}

.footer-info a {
  color: #1a237e;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-links a {
  display: block;
  width: 40px;
  height: 40px;
  background: #1a237e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cookie-content h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #333;
}

.cookie-content p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accept-all {
  background: linear-gradient(45deg, #ff8c00, #ffa726);
  color: white;
  border: none;
  padding: 15px 30px;
  font-family: "Anton", sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

.reject-non-essential {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 13px 30px;
  font-family: "Anton", sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.reject-non-essential:hover {
  background: #333;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title-badge-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    align-items: flex-start;
  }

  .main-title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .rainbow-badge {
    width: 120px;
    height: 120px;
  }

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

  .characters-section {
    justify-content: center;
  }

  .description {
    color: #131313;
    font-family: Anton;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
  }
  .text-section {
    text-align: left;
    align-items: flex-start;
  }
  .text-section {
    padding-left: 0;
  }

  .mini-games-title {
    font-size: 45px;
  }

  .collection-content,
  .why-content,
  .experience-content {
    flex-direction: column;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .games-collection h2,
  .why-left h2,
  .experience-right h2,
  .future h2 {
    font-size: 48px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-content {
    padding: 30px 20px;
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 36px;
  }

  .mini-games-title {
    font-size: 32px;
  }

  .games-collection h2,
  .why-left h2,
  .experience-right h2,
  .future h2 {
    font-size: 32px;
  }

  .rainbow-badge {
    width: 100px;
    height: 100px;
  }

  .container {
    padding: 0 15px;
  }
}
.mob {
  display: none;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .mob {
    display: block;
  }
  .rainbow-badge.mob {
    margin-bottom: 20px;
  }
  .main-title {
    color: #131313;
    font-family: Anton;
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 90px */
    text-transform: uppercase;
    text-align: left;
  }
  .mini-games-title {
    color: #14006f;
    font-family: Anton;
    font-size: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 90px */
    text-transform: uppercase;
    text-align: left;
  }
  .header .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* Game Catalog Section */
.game-catalog {
  background: linear-gradient(180deg, #131313 0%, #14006f 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.game-catalog h2 {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -2px;
  color: white;
}

.catalog-description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  text-align: left;

  color: #fff;
  text-align: center;
  font-family: Anton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.catalog-description:last-of-type {
  margin-bottom: 60px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
  aspect-ratio: 1;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: opacity 0.3s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-title {
  color: white;
  font-family: "Anton", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 0 15px;
  line-height: 1.2;
}

/* Responsive для секции каталога */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .game-catalog h2 {
    font-size: 48px;
  }

  .catalog-description {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }

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

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .game-catalog h2 {
    font-size: 32px;
  }

  .catalog-description {
    font-size: 13px;
  }
}

/* Game Hero Section */
.game-hero {
  background: linear-gradient(180deg, #131313 0%, #14006f 100%);
  padding: 100px 0 80px;
  color: white;
  text-align: center;
}

.game-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 25px;
  overflow: hidden;
}

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

.game-hero h1 {
  font-family: "Anton", sans-serif;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -2px;
  color: white;
}

.game-hero h2 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
  color: white;
}

.game-description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: normal;

  color: #fff;
  text-align: center;
  font-family: Anton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.play-now-btn {
  background: linear-gradient(45deg, #ff8c00, #ffa726);
  color: white;
  border: none;
  padding: 15px 35px;
  font-family: "Anton", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  border-radius: 60px;
  background: radial-gradient(50% 50% at 50% 50%, #ffeb38 0%, #f89900 100%);
  color: #131313;
  font-family: Anton;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.play-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* About Game Section */
.about-game {
  background: white;
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-left {
  flex: 2;
}

.about-left h2 {
  font-family: "Anton", sans-serif;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #333;
  letter-spacing: -2px;
}

.about-description {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;

  color: #131313;
  font-family: Anton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-left h3 {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #333;
}

.advantages-list {
  list-style: none;
  margin-bottom: 40px;
}

.advantages-list li {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;

  color: #131313;
  font-family: Anton;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.advantages-list li strong {
  font-weight: bold;
  color: #1a237e;
}

.about-right {
  flex: 1;
}

.about-right img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .game-hero h1 {
    font-size: 48px;
  }

  .game-hero h2 {
    font-size: 24px;
  }

  .game-description {
    font-size: 14px;
    padding: 0 20px;
  }

  .game-icon {
    width: 120px;
    height: 120px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .game-hero h1 {
    font-size: 36px;
  }

  .game-hero h2 {
    font-size: 18px;
  }

  .game-icon {
    width: 100px;
    height: 100px;
  }

  .about-left h2 {
    font-size: 36px;
  }
}
