h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

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

/* CSS Variables */
:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2a2a2a;
  --accent-purple: #7c5cdb;
  --accent-purple-hover: #6a4bc4;
  --text-white: #ffffff;
  --text-gray: #ecebeb;
  --text-light-gray: #e0e0e0;
  --bg-dark: #151515;
  --bg-card: #091c1a;
  --star-yellow: #ffd700;
  --transition: all 0.3s ease;
  --color-dark-bg: #1a1a1a;
  --color-card-bg: #3e3e3e;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-border: #404040;
  --font-main: "Unbounded", sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --border-radius: 8px;
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Unbounded", sans-serif;
  background-color: #20232B;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Modal Overlay Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background-color: #161921;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Age Modal Styles */
.age-content {
  text-align: center;
}

.age-icon {
  background-color: #ff0000;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: 900;
  margin: 0 auto 30px;
}

.age-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.age-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.age-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-light-gray);
}

.age-checkbox {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.age-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.age-checkbox label {
  font-size: 18px;
  cursor: pointer;
  text-align: left;
  max-width: 450px;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-enter,
.btn-exit {
  padding: 15px 40px;
  border: none;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Unbounded", sans-serif;
}

.btn-enter {
  background: #FECA1C;

  color: #ffffff;
}

.btn-enter:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn-enter:disabled {
  background-color: #444;
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-exit {
  background: #FE1C1C;

  color: rgb(255, 255, 255);
}

.btn-exit:hover {
transform: translateY(-2px);
}

/* Cookie Modal Styles */
.cookie-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cookie-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-light-gray);
}

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

.btn-accept,
.btn-settings {
  padding: 15px 30px;
  border: none;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Unbounded", sans-serif;
  flex: 1;
  min-width: 200px;
}

.btn-accept {
  background: #FECA1C;

  color: rgb(0, 0, 0);
}

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

.btn-settings {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 1px solid #FECA1C;
}

.btn-settings:hover {
  transform: translateY(-2px);
}

/* Header Styles */
.header {
  background-color: var(--primary-dark);

  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo a {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
}

.logo span {
  color: var(--accent-purple);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 18px;
}

.nav-menu a:hover {
  color: var(--accent-purple);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
}

.hero-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content {
  padding: 24px;
  background: #31343E;

  border-radius: 12px;
}

.main-section-content {
  padding: 24px;
  background: #31343E;

  border-radius: 12px;
  text-align: left;
}

.contact-content {
  padding: 24px;
  background: #31343E;

  border-radius: 12px;
}

.contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: var(--text-gray);

  margin: 0 auto;
  line-height: 1.8;
}

.hero-description a {
  color: #fff;
}

.hero-subtitle {
  font-family: Unbounded;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

/* Platforms Section */
.platforms-section {
  padding: 40px 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.platform-card {
  background: #31343E;

  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 92, 219, 0.3);
}

.platform-header {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;

}

.platform-logo {
  margin-bottom: 20px;

  display: flex;
  justify-content: center;
}

.platform-logo img {
  width: 80%;
  height: auto;
}

.platform-rating {
  display: flex;
  flex-direction: column;

  text-align: right;
}

.platform-rate {
  display: flex;
  align-items: center;
gap: 8px;
}

.rating-label {
  font-size: 18px;
  color: var(--text-gray);

  font-weight: 600;
}

.rating-num {
  font-size: 30px;
  font-weight: 700;
}
.stars {
  color: var(--star-yellow);
  font-size: 20px;
}

.score {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
}

.platform-offer {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .platform-offer {
    font-size: 20px;
  }
}

.btn-platform {
  display: block;
  width: 100%;
  padding: 15px;
  background: #FECA1C;

  color: #000000;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.btn-platform:hover {
  transform: translateY(-2px);
}

.platform-disclaimer {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Section Styles */
.promo-section {
  padding: 60px 0;
}

.promo-section--dark {
}

/* Typography */
.main-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.main-subtitle {
  font-size: 18px;
  font-weight: 400;

  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);

  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-title {
  font-size: 24px;
  font-weight: 700;

  margin-bottom: var(--spacing-xl);
  line-height: 1.3;
}

.section-intro {
  font-size: 18px;
  font-weight: 400;

  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);

  margin-left: auto;
  margin-right: auto;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.card-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.card-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

/* Grid Layouts */

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* Info Cards */
.info-card {
  background-color: #424144;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
}

/* Lists */
.card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--spacing-sm);
}

.card-list li {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: 1.6;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text-primary);
  font-weight: 700;
}

.card-list-numbered {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  margin-bottom: var(--spacing-sm);
}

.card-list-numbered li {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: 1.6;
  counter-increment: item;
}

.card-list-numbered li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: var(--color-text-primary);
  font-weight: 600;
}

.main-section {
  padding: 20px 0;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

  .main-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Landscape */
@media screen and (max-width: 768px) {
  .main-section {
    padding: 20px 0;
  }

  .main-title {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
  }

  .main-subtitle {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
  }

  .section-title {
    font-size: 22px;
    margin-bottom: var(--spacing-lg);
  }

  .section-intro {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
  }

  .card-title {
    font-size: 18px;
  }

  .card-subtitle {
    font-size: 15px;
  }

  .card-text {
    font-size: 18px;
  }

  .card-list li,
  .card-list-numbered li {
    font-size: 18px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .info-card {
    padding: var(--spacing-md);
  }
}

/* Mobile Portrait */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .main-section {
    padding: 20px 0;
  }

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

  .section-title {
    font-size: 20px;
  }

  .card-title {
    font-size: 15px;
    margin-bottom: var(--spacing-sm);
  }

  .card-subtitle {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .info-card {
    padding: var(--spacing-md);
  }

  .grid-2,
  .grid-3 {
    gap: var(--spacing-sm);
  }
}

/* Print Styles */
@media print {
  body {
    background-color: white;
    color: black;
  }

  .info-card {
    background-color: #f5f5f5;
    break-inside: avoid;
  }

  .main-section {
    page-break-inside: avoid;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contact Section */
.contact-section {
  padding-block: 30px;
}

.contact-intro {
  font-size: 18px;
  color: var(--text-gray);

  margin: 0 auto 40px;
  line-height: 1.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  background-color: #282B33;
  border: none;
  border-radius: 12px;
  color: var(--text-white);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 20px;
}

.btn-send {
  width: 100%;
  padding: 15px;
  background: #FECA1C;

  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Unbounded", sans-serif;
}

.btn-send:hover {
  transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 20px 0;
  border-bottom: 1px solid #464359;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-title {
  font-family: Unbounded;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 20px;
  }
}

.disclaimer-text {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;

  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;

  color: #fff;
}

/* Footer */
.footer {
  background-color: #161921!important;
  padding: 40px 0 20px;
}

.footer-content {
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #464359;
  padding-bottom: 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-purple);
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #464359;
  padding-bottom: 20px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.footer-badges img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-copyright {
  font-size: 18px;
  color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--primary-dark);
    width: 100%;
    padding: 30px 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    left: 0;
  }

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

  .section-title {
    font-size: 24px;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .age-content h2 {
    font-size: 24px;
  }

  .age-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }

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

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

  .btn-accept,
  .btn-settings {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .platform-header {
    align-items: center;
    text-align: center;
  }

  .platform-rating {
    text-align: center;
    margin-top: 20px;
  }

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

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

  .btn-enter,
  .btn-exit {
    width: 100%;
  }
}
