

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: #010a1b;
  --bg-card: #122855;
  --star-yellow: #ffd700;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Blinker", sans-serif;
  background-color: var(--bg-dark);
  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: #000000;
  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: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Blinker", sans-serif;
}

.btn-enter {
  background: linear-gradient(90.49deg, #0b9acb 0%, #0356de 100%);

  color: white;
}

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

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

.btn-exit {
  background-color: transparent;
  color: white;
  border: 1px solid #0b9acb;
}

.btn-exit:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 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: "Blinker", sans-serif;
  flex: 1;
  min-width: 200px;
}

.btn-accept {
  background: linear-gradient(90.49deg, #0b9acb 0%, #0356de 100%);

  color: white;
}

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

.btn-settings {
  background-color: transparent;
  color: white;
  border: 1px solid #0b9acb;
}

.btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 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 {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
}

.how-section-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
  text-align: left;
}

.extra-section-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
  text-align: left;
}

.expect-section-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
  text-align: left;
}

.games-section-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
  text-align: left;
}

.faq-section-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  border-radius: 12px;
  text-align: left;
}

.contact-content {
  border: 1px solid #313131;
  padding: 24px;
  background-color: #122855;
  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;
}

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

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

.platform-card {
  background-color: var(--bg-card);
  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;

  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

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

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

  text-align: right;
}

.platform-rate {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.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;
}

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

.btn-platform {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(90.49deg, #0b9acb 0%, #0356de 100%);

  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 32px;
  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;
}

/* Section Styles */
.types,
.how-it-works,
.what-to-expect,
.game-categories,
.faq-section,
.contact-section {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Bonus Types */
.types-list {
  margin: 0 auto;
}

.type-item {
  margin-bottom: 30px;
}

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

.type-item p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Header Section */
.expect-section {
  border-radius: 12px;
  padding-block: 40px;
}

.expect-section h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.expect-section .subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.feature-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #152844 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/check.png") center / cover no-repeat;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline;
}

.feature-card p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.features-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Games Section */
.games-section {
  border-radius: 12px;
  padding-block: 40px;
}

.games-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.games-section .intro {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.game-category {
  margin-bottom: 28px;
}

.game-category:last-child {
  margin-bottom: 0;
}

.game-category h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-category p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  line-height: 1.6;
}

.game-category ul {
  list-style: none;
  padding-left: 0;
}

.game-category ul li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}

.game-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-size: 18px;
}

/* FAQ Section */
.faq-section {
  border-radius: 12px;
  padding-block: 40px;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

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

.faq-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #152844 100%);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.faq-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-card p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.faq-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.faq-card ul li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.faq-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-size: 18px;
}

/* Free Spins Section */
.how-section {
  border-radius: 12px;
  padding-block: 40px;
  margin-bottom: 30px;
}

.how-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.how-section .intro {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.6;
}

.game-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.game-list li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.game-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-size: 18px;
}

.subsection {
  margin-top: 28px;
}

.subsection h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.subsection p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}

.value-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.value-list li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.value-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-size: 18px;
}

.value-list li strong {
  font-weight: 600;
}

.steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.steps-list li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter) ".";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-weight: 600;
}

.highlight {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-style: italic;
}

/* Bonuses Section */
.extra-section {
  border-radius: 12px;
  padding-block: 40px;
}

.extra-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.extra-section .intro {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.extra-category {
  margin-bottom: 28px;
}

.extra-category:last-child {
  margin-bottom: 0;
}

.extra-category h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.extra-category p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}

.extra-category ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.extra-category ul li {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.extra-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-size: 18px;
}

.extra-category ul li strong {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .expect-section,
  .games-section,
  .faq-section,
  .how-section,
  .extra-section {
    padding-block: 28px;
  }

  .expect-section h1 {
    font-size: 26px;
  }

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

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

  .games-section h2,
  .faq-section h2,
  .how-section h2,
  .extra-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .expect-section,
  .games-section,
  .faq-section,
  .how-section,
  .extra-section {
    padding-block: 20px;
  }

  .expect-section h1 {
    font-size: 22px;
  }

  .feature-card h3,
  .game-category h3,
  .subsection h3,
  .extra-category h3 {
    font-size: 18px;
  }

  .games-section h2,
  .faq-section h2,
  .how-section h2,
  .extra-section h2 {
    font-size: 20px;
  }
}

/* Contact Section */
.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: #001441;
  border: none;
  border-radius: 12px;
  color: var(--text-white);
  font-family: "Blinker", 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: linear-gradient(90.49deg, #0b9acb 0%, #0356de 100%);

  color: white;
  border: none;
  border-radius: 32px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Blinker", 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-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: #000000 !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: 12px;
  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%;
  }
}
