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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  background-color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .logo a img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.site-header .logo a img:hover {
  transform: scale(1.05);
}
.site-header .logo a span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
}
.site-header .logo a span:hover {
  color: #5b3cc4;
}
.site-header .nav-links {
  display: flex;
  gap: 2rem;
}
.site-header .nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: #5b3cc4;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
}
.site-header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #5b3cc4;
  transition: width 0.3s ease;
}
.site-header .nav-links a:hover::after {
  width: 100%;
}
.site-header .nav-links a:hover {
  color: #3c2891;
}
.site-header .auth-buttons {
  display: flex;
  gap: 1rem;
}
.site-header .auth-buttons .btn {
  padding: 0.6rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  white-space: nowrap;
}
.site-header .auth-buttons .btn.login {
  background-color: #5b3cc4;
  color: #fff;
  box-shadow: 0 2px 6px rgba(91, 60, 196, 0.3);
}
.site-header .auth-buttons .btn.login:hover {
  background-color: #3c2891;
}
.site-header .auth-buttons .btn.signup {
  background-color: #ffc107;
  color: #222;
  box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
}
.site-header .auth-buttons .btn.signup:hover {
  background-color: #e0a800;
}
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .site-header .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .site-header .auth-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}
.modal .modal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.modal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal .modal-content form input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.modal .modal-content form .submit-btn {
  background-color: #5b3cc4;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal-content form .submit-btn:hover {
  background-color: #472a9c;
}
.modal .modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.4rem;
  cursor: pointer;
}

.thank-popup {
  display: none;
  position: fixed;
  z-index: 1100;
  top: 20px;
  right: 20px;
  background: #5b3cc4;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.hero-offer {
  background: linear-gradient(180deg, #4b44c4 0%, #8e44ad 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-offer .offer-box {
  background: #2e2e7f;
  padding: 2.5rem;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  max-width: 420px;
  width: 100%;
}
.hero-offer .offer-box h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.hero-offer .offer-box .bonus {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-offer .offer-box .btn-offer {
  background-color: #ffc107;
  color: #000;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}
.hero-offer .offer-box .btn-offer:hover {
  background-color: #e0a800;
}
.hero-offer .offer-box .note {
  font-size: 0.75rem;
  color: #ddd;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.hero-offer .offer-box .terms-link {
  font-size: 0.8rem;
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-offer .offer-box .terms-link:hover {
  color: #ffc107;
}
.hero-offer .offer-box .trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hero-offer .offer-box .trust i.fa-trustpilot {
  color: #00b67a;
  font-size: 1.2rem;
}
.hero-offer .offer-box .trust .stars {
  display: flex;
  gap: 0.2rem;
}
.hero-offer .offer-box .trust .stars i {
  color: #ffc107;
  font-size: 1rem;
}

.features-section {
  background: linear-gradient(135deg, #1d1930, #2b2255);
  padding: 60px 20px;
}
.features-section .features-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.features-section .features-container .feature-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  color: #ffc107;
}
.features-section .features-container .feature-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.features-section .features-container .feature-item span {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.vip-section {
  background: linear-gradient(135deg, #1d1930, #2b2255);
  padding: 60px 20px;
}
.vip-section .vip-title {
  text-align: center;
  color: #ffc107;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.vip-section .vip-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.vip-section .vip-features .vip-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.vip-section .vip-features .vip-card i {
  font-size: 2rem;
  color: #5b3cc4;
  margin-bottom: 0.8rem;
}
.vip-section .vip-features .vip-card span {
  color: #5b3cc4;
  font-weight: 600;
  font-size: 1rem;
}

.reviews-static {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.reviews-static .reviews-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5b3cc4;
  margin-bottom: 2.5rem;
}
.reviews-static .reviews-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-static .reviews-grid .review-card {
  background: linear-gradient(135deg, #6c4bd9, #8c55d3);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  max-width: 320px;
  flex: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.reviews-static .reviews-grid .review-card .stars {
  margin-bottom: 1rem;
}
.reviews-static .reviews-grid .review-card .stars i {
  color: #ffc107;
  font-size: 1.2rem;
}
.reviews-static .reviews-grid .review-card .review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 500;
}
.reviews-static .reviews-grid .review-card .review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: #eaeaea;
}

.faq-section {
  background: #5b3cc4;
  padding: 60px 20px;
  border-radius: 0 0 20px 20px;
}
.faq-section .faq-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-section .faq-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.faq-section .faq-container .faq-item {
  border-bottom: 1px solid #eee;
}
.faq-section .faq-container .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-container .faq-item .faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question:hover {
  background: #f8f8f8;
}
.faq-section .faq-container .faq-item .faq-question .faq-icon {
  font-size: 1.4rem;
  color: #5b3cc4;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-section .faq-container .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #555;
  padding: 0 1.2rem;
  line-height: 1.5;
  transition: max-height 0.3s ease, padding 0.3s ease;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question.active + .faq-answer {
  max-height: 300px;
  padding: 0 1.2rem 1rem;
  opacity: 1;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 40px 15px;
  }
  .faq-section .faq-container .faq-item .faq-question {
    font-size: 0.95rem;
  }
  .faq-section .faq-container .faq-item .faq-answer {
    font-size: 0.9rem;
  }
}
.about-section {
  background: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
}
.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #5b3cc4;
}
.about-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}
.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.about-section ul.quotes,
.about-section ul.games,
.about-section ul.faq-list {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.about-section ul.quotes li,
.about-section ul.games li,
.about-section ul.faq-list li {
  margin-bottom: 0.6rem;
}
.about-section ul.quotes {
  list-style: none;
  padding: 0;
}
.about-section ul.quotes li {
  background: #f8f8f8;
  border-left: 4px solid #5b3cc4;
  padding: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
}
.about-section .hidden {
  display: none;
}
.about-section .readmore-btn-wrap {
  margin-top: 1rem;
  text-align: center;
}
.about-section .readmore-btn-wrap button {
  background: #5b3cc4;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}
.about-section .readmore-btn-wrap button:hover {
  background: #4423a0;
}

.site-footer {
  background: #1f2230;
  color: #ccc;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px 30px;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer .footer-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer .footer-links-wrapper > div {
  flex: 1;
  min-width: 200px;
}
.site-footer .footer-links-wrapper > div .title {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-links-wrapper > div a {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}
.site-footer .footer-links-wrapper > div a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  text-align: center;
}
.site-footer .footer-bottom p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-footer .footer-bottom .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.site-footer .footer-bottom .footer-logo img {
  width: 32px;
  height: 32px;
}
.site-footer .footer-bottom .footer-logo span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.site-footer .footer-bottom .footer-links {
  margin-bottom: 1rem;
}
.site-footer .footer-bottom .footer-links a {
  margin: 0 0.5rem;
  font-size: 0.95rem;
}
.site-footer .footer-bottom .copyright {
  font-size: 0.85rem;
  color: #888;
}

.terms-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #222;
}
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.terms-section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #5b3cc4;
}
.terms-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #333;
}
.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.terms-section a {
  color: #5b3cc4;
  text-decoration: underline;
}
.terms-section a:hover {
  color: #3a2294;
}
.terms-section .last-note {
  margin-top: 2rem;
  font-weight: 500;
  color: #444;
}

.privacy-section {
  background: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
}
.privacy-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-section h1 {
  font-size: 2rem;
  color: #5b3cc4;
  margin-bottom: 1.5rem;
}
.privacy-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #333;
}
.privacy-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.privacy-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.privacy-section ul li {
  margin-bottom: 0.6rem;
}
.privacy-section a {
  color: #5b3cc4;
  text-decoration: underline;
}
.privacy-section a:hover {
  color: #3a2294;
}

.responsible-section {
  background: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #222;
}
.responsible-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.responsible-section h1 {
  font-size: 2rem;
  color: #5b3cc4;
  margin-bottom: 1.5rem;
}
.responsible-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #333;
}
.responsible-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.responsible-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.responsible-section ul li {
  margin-bottom: 0.6rem;
}
.responsible-section a {
  color: #5b3cc4;
  text-decoration: underline;
}
.responsible-section a:hover {
  color: #3a2294;
}
.responsible-section .final-note {
  margin-top: 2rem;
  font-weight: 500;
  color: #444;
}

.age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}
.age-popup-overlay .age-popup-box {
  background: #ff3366;
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.age-popup-overlay .age-popup-box h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.age-popup-overlay .age-popup-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.age-popup-overlay .age-popup-box #confirmAgeBtn {
  background: #1e2b84;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.age-popup-overlay .age-popup-box #confirmAgeBtn:hover {
  background: #14205e;
}
.age-popup-overlay .age-popup-box .age-legal {
  font-size: 0.85rem;
  margin-top: 20px;
}
.age-popup-overlay .age-popup-box .age-legal a {
  color: white;
  text-decoration: underline;
}
.age-popup-overlay .age-popup-box .age-legal a:hover {
  color: #dde;
}/*# sourceMappingURL=style.css.map */