.policy,
.success {
  padding-block: 80px 60px !important;
  background: #fff;

  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 60px 60px !important;
  }
}

/* .success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
} */

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000000;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #000000;
}

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

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

:root {
  --primary-blue: #050b89;
  --dark-blue: #5652d9;
  --light-blue: #b8c5ff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --text-dark: #000000;
  --text-light: #666666;
  --accent-yellow: #ffd700;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

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

/* Cookie Popup */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-popup {
  background: linear-gradient(135deg, #5d5fef 0%, #4547d9 100%);
  border-radius: 30px;
  padding: 50px 60px;
  max-width: 800px;
  width: 90%;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-popup h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}

.cookie-popup p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

.cookie-accept,
.cookie-settings {
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #000b5e;
  color: white;
}

.cookie-accept:hover {
  background: #000950;
  transform: translateY(-2px);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
  background: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
}

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.hero-img {
  width: 100%;
  object-fit: contain;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.hero-info > p {
  flex: 1;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;

  color: var(--text-light);
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.stats-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.stats-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.btn-primary {
  width: fit-content;
  display: inline-block;
  padding: 18px 40px;
  background: var(--dark-blue);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 16px;
}

.btn-primary:hover {
  background: #4547d9;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(93, 95, 239, 0.3);
}

.hero-title {
  font-family: "DM Sans";
  font-weight: 500 !important;
  font-style: Medium;
  font-size: 96px !important;
  line-height: 90%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1e1e1e;
}

.hero-subtitle {
  font-family: "DM Sans";
  font-weight: 500 !important;
  font-style: Medium;
  font-size: 80px !important;
  line-height: 90%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1e1e1e;
  padding-left: 20px;
}

.hero-title::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;

  margin-left: 40px;
  background: url(/wp-content/themes/wraxenora.com/img/star.png) center / cover no-repeat;
}

@media (max-width: 768px) {
  .hero-title,
  .hero-subtitle {
    font-size: 50px !important;
  }
}

.explore::after {
  content: "";
  position: absolute;
  width: 99px;
  height: 1px;
  top: 14%;
  left: 20%;
  margin-right: 40px;
  background: url(/wp-content/themes/wraxenora.com/img/line.png) center / cover no-repeat;
}

.explore::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;

  margin-right: 40px;
  background: url(/wp-content/themes/wraxenora.com/img/star.png) center / cover no-repeat;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-character {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 40%;
}

.decorative-star {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

.star-1 {
  top: 10%;
  right: 10%;
}

/* Explore Section */
.explore {
  padding: 60px 0;
  background: white;
  position: relative;
}

.explore h2 {
  font-size: 42px;
  text-align: center;
  color: var(--text-dark);
}

.star-2 {
  top: 20%;
  right: 20%;
}

/* What We Offer */
.what-we-offer {
  padding: 80px 0;
  position: relative;
}

.what-we-offer h2 {
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
}

.what-we-offer h2::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;

  margin-left: 30px;
  background: url(/wp-content/themes/wraxenora.com/img/star.png) center / cover no-repeat;
}

.star-3 {
  top: 5%;
  right: 15%;
}

.offer-bottom {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 4fr 1.5fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .offer-bottom {
    grid-template-columns: 1fr;
  }
}

.offer-subtitle {
  position: relative;
}

.offer-subtitle::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 7%;
  margin-left: 30px;
  background: url(/wp-content/themes/wraxenora.com/img/star.png) center / cover no-repeat;
}

.offer-description {
  margin-bottom: 20px;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: justify;

  color: var(--text-dark);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-block: 50px;
}

.offer-card {
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
}

.offer-card-header {
  display: flex;
  gap: 10px;
}

.card-light {
  background: #bdd7ff;
}

.card-dark {
  background: var(--primary-blue);
  color: white;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.offer-card h3 {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 115.99999999999999%;
  letter-spacing: 0%;
  text-transform: capitalize;

  margin-bottom: 15px;
}

.offer-card p {
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: justify;

  margin-bottom: 20px;
}

.card-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.card-dark p,
.card-dark .card-link {
  color: white;
}

/* Entertainment Section */
.entertainment {
  padding: 80px 0;
  background: white;
  position: relative;
}

.entertainment h2 {
  font-size: 28px;
  margin-bottom: 50px;
  text-align: center;
}

.star-4 {
  top: 5%;
  right: 5%;
}

.entertainment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.entertainment-image img {
  width: 100%;
  height: auto;
}

.entertainment-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--primary-blue);
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

/* Feature Tabs */
.feature-tabs {
  margin-top: 60px;
  position: relative;
}

.tab-navigation {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 15px 30px;
  background: #e8e8e8;
  border: none;
  border-radius: 10px 10px 0 0;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  color: #999;
  transition: all 0.3s;
}

.tab-btn.active {
  background: var(--primary-blue);
  color: white;
}

.tab-content {
  display: none;
  padding: 50px;
  background: var(--primary-blue);
  border-radius: 0 20px 20px 20px;
  color: white;
}

.tab-content.active {
  display: block;
}

.tab-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.tab-icon img {
  width: 100%;
  height: 100%;
}

.tab-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.tab-content p {
  font-size: 14px;
  line-height: 1.8;
  text-transform: lowercase;
}

.star-5 {
  bottom: 10%;
  left: 5%;
}

/* Reviews */
.reviews {
  padding: 80px 0;
  background: var(--dark-blue);
}

.reviews h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 50px;
  text-align: center;
}

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

.review-card {
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
}

.review-dark {
  background: var(--primary-blue);
  color: white;
}

.reviews-title {
  padding-bottom: 20px;
  text-align: left !important;
  border-bottom: 2px solid; /* товщина бордера важлива */
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 50%,
      rgba(255, 255, 255, 0) 100%
    )
    1; /* 1 означає "slice" для border-image */
}

.review-card img {
  width: auto;
  object-fit: contain;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.review-card h4 {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 115.99999999999999%;
  letter-spacing: 0%;
  text-transform: capitalize;

  margin-bottom: 15px;
}

.review-card p {
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: justify;
  text-transform: lowercase;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: white;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: center;
}

.faq-list {
  margin: 0 auto;
  padding: 28px;
  border: 0.83px solid #000000;
  border-radius: 25px;
}

.faq-item {
  border-bottom: 0.83px solid #000000;

  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/wraxenora.com/img/arrow-btm.png) center / cover no-repeat;
  position: relative;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  width: 40px;
  height: 40px;
  background: url(/wp-content/themes/wraxenora.com/img/arrow-blue-btm.png) center / cover no-repeat;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: var(--dark-blue);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-main h2 {
  font-size: 90px;
  font-weight: 500;
  line-height: 93%;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer-main h2 {
    font-size: 60px;
  }
}

.newsletter-form {
  display: flex;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: 0.83px solid #ffffff;
  background: transparent;
  font-size: 14px;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #fff;
}

.newsletter-form button {
  padding: 15px 35px;
  background: var(--primary-blue);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #4547d9;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-column: 1 / -1;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-column p {
  font-size: 13px;
  opacity: 0.8;
}

.footer-links {
  margin-top: 30px;
}

.footer-links h4 {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s;
  display: block;
  margin-bottom: 8px;
}

.footer-links a:hover {
  opacity: 1;
}

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

.footer-social a {
  width: 35px;
  height: 35px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 0.83px solid #ffffff;
  font-size: 12px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content,
  .entertainment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
  }

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

  .hero h1 {
    font-size: 42px;
  }

  .cookie-popup {
    padding: 30px;
  }

  .cookie-popup h2 {
    font-size: 32px;
  }

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

  .tab-navigation {
    flex-wrap: wrap;
  }

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

  .footer-info {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* Games Page Styles */
.page-hero {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Games Collage Section */
.games-collage-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.collage-grid {
  position: relative;
  height: 600px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.collage-card {
  position: absolute;
  width: 100% !important;
  max-width: 320px !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card:hover {
  z-index: 100 !important;
}

.collage-card img {
  width: 100% !important;
  max-width: 320px !important;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Individual card positions - exact placement as on screenshot */
.collage-1 {
  width: 220px;
  height: 160px;
  top: 100px;
  left: 20px;
  transform: rotate(-12deg);
  z-index: 3;
}

.collage-1:hover {
  transform: rotate(-12deg) scale(1.05);
}

.collage-2 {
  width: 380px;
  height: 280px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(8deg);
  z-index: 5;
}

.collage-2:hover {
  transform: translateX(-50%) rotate(8deg) scale(1.05);
}

.collage-3 {
  width: 200px;
  height: 150px;
  top: 60px;
  right: 30px;
  transform: rotate(-15deg);
  z-index: 2;
}

.collage-3:hover {
  transform: rotate(-15deg) scale(1.05);
}

.collage-4 {
  width: 240px;
  height: 180px;
  bottom: 80px;
  left: 60px;
  transform: rotate(15deg);
  z-index: 4;
}

.collage-4:hover {
  transform: rotate(15deg) scale(1.05);
}

.collage-5 {
  width: 280px;
  height: 220px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  z-index: 6;
}

.collage-5:hover {
  transform: translateX(-50%) rotate(-8deg) scale(1.05);
}

.collage-6 {
  width: 260px;
  height: 200px;
  bottom: 60px;
  right: 20px;
  transform: rotate(10deg);
  z-index: 3;
}

.collage-6:hover {
  transform: rotate(10deg) scale(1.05);
}

.collage-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.collage-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.collage-text .btn-secondary {
  margin-top: 20px;
}

.games-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1200px) {
  .collage-1 {
    width: 180px;
    height: 130px;
    top: 80px;
    left: 10px;
  }

  .collage-2 {
    width: 320px;
    height: 240px;
    top: 0;
  }

  .collage-3 {
    width: 170px;
    height: 130px;
    top: 50px;
    right: 10px;
  }

  .collage-4 {
    width: 200px;
    height: 150px;
    bottom: 60px;
    left: 40px;
  }

  .collage-5 {
    width: 240px;
    height: 180px;
  }

  .collage-6 {
    width: 220px;
    height: 170px;
    bottom: 50px;
    right: 10px;
  }
}

.games-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px; /* або скільки треба */
}

.games-decor-1 {
  position: absolute;
  left: 20%;
  top: 0;
  width: 44px;
  height: 44px;
}

.games-decor-2 {
  position: absolute;
  right: 20%;
  top: 20%;
  width: 44px;
  height: 44px;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.slider-navigation {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  justify-content: space-between;
}

.slider-nav-btn {
  padding: 15px 35px;
  background: #e0e0e0;
  border: none;
  border-radius: 15px 15px 0 0;
  font-size: 32px;
  font-weight: 600;
  cursor: pointer;
  color: #999;
  transition: all 0.3s;
  font-family: "DM Sans", sans-serif;
}

.slider-nav-btn.active {
  background: #5652d9;
  color: white;
  position: relative;
  z-index: 2;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  background: #5652d9;
  border-radius: 20px;
  position: relative;

  width: 100%;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 50px;
  color: white;
  background-color: #5652d9 !important;
}

.slide-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.slide-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.slide-icon img {
  width: 100%;
  height: 100%;
}

.slide-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.slide-text p {
  font-size: 15px;
  line-height: 1.9;
}

.slider-controls {
  display: none;
}

.games-grid {
  padding: 60px 0;
  background: white;
}

.games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.game-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-decoration: none;
  color: var(--text-dark);
}

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

.game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.game-card-content {
  padding: 20px;
}

.game-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 13px;
  color: var(--text-light);
}
/* Single Game Page */
.game-hero {
  padding: 60px 0;
  background: #050b89;
  color: white;
}

.game-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.game-header h1 {
  margin: 0 !important;
}

.game-hero-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.game-hero-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.game-hero-image img {
  width: 100%;
  height: auto;
}

.game-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
}

.game-hero h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

.game-hero p {
  font-size: 15px;
  line-height: 1.8;
}

.game-play {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.game-frame {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #f0f0f0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  /* Slider adaptive for tablets */
  .slider-slide {
    padding: 40px 30px;
  }

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

  .slide-icon {
    width: 60px;
    height: 60px;
  }

  .slide-text h3 {
    font-size: 30px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .slider-nav-btn {
    padding: 12px 28px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .game-hero-content {
    grid-template-columns: 1fr;
  }

  /* Slider adaptive for mobile */
  .slider-navigation {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .slider-nav-btn {
    padding: 10px 22px;
    font-size: 24px;
    min-width: 70px;
  }

  .slider-wrapper {
    border-radius: 0 0 20px 20px;
  }

  .slider-slide {
    padding: 30px 20px;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .slide-icon {
    width: 50px;
    height: 50px;
  }

  .slide-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .slide-text p {
    font-size: 13px;
    line-height: 1.7;
  }
}

.section-title {
  font-family: "DM Sans" !important;
  font-weight: 500 !important;
  font-style: Medium;
  font-size: 50px !important;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .slider-nav-btn {
    padding: 8px 18px;
    font-size: 20px;
    min-width: 60px;
  }

  .slider-slide {
    padding: 25px 15px;
  }

  .slide-text h3 {
    font-size: 20px;
  }

  .slide-text p {
    font-size: 12px;
  }

  .slide-icon {
    width: 45px;
    height: 45px;
  }

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

  .collage-card {
    height: 180px !important;
  }
}

.highlight {
  color: #050b89;
}

.btn-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .games-bottom {
    grid-template-columns: 1fr;
  }

  /* Slider adaptive */
  .slider-navigation {
    flex-wrap: wrap;
    gap: 8px;
  }

  .slider-nav-btn {
    padding: 12px 25px;
    font-size: 24px;
  }

  .slider-slide {
    padding: 30px 20px;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .slide-text h3 {
    font-size: 28px;
  }

  .slide-text p {
    font-size: 14px;
  }
}
