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

html,
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #111;
  scroll-behavior: smooth;
}

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

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.site-header .header-container .logo img {
  height: 48px;
}
.site-header .header-container .nav {
  display: flex;
  gap: 2rem;
}
.site-header .header-container .nav a {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.site-header .header-container .nav a:hover {
  color: #000;
}
.site-header .header-container .nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #111;
  transition: width 0.3s ease;
}
.site-header .header-container .nav a:hover::after {
  width: 100%;
}

.hero {
  background: #f5f5f5;
  padding: 7rem 0;
}
.hero .hero-content {
  text-align: center;
}
.hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero .hero-content p {
  font-size: 1.25rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #000;
  color: #fff;
}

.features-section {
  padding: 6rem 0;
  background-color: #fff;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.features-section .feature-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.features-section .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}
.features-section .feature-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.features-section .feature-card img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-highlight {
  background-color: #111;
  padding: 6rem 0;
}
.about-highlight .about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-highlight .about-text {
  flex: 1;
  color: #f1f1f1;
}
.about-highlight .about-text h5 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}
.about-highlight .about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
}
.about-highlight .about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
}
.about-highlight .about-text .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.about-highlight .about-text .btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.about-highlight .about-image {
  flex: 1;
  text-align: center;
}
.about-highlight .about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.features-icons {
  background-color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.features-icons h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}
.features-icons .subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}
.features-icons .icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.features-icons .icon-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.features-icons .icon-card:hover {
  transform: translateY(-5px);
}
.features-icons .icon-card i {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}
.features-icons .icon-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}
.features-icons .icon-card p {
  font-size: 0.95rem;
  color: #555;
}

.newsletter-section {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
}
.newsletter-section .newsletter-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.newsletter-section .newsletter-text {
  flex: 1;
}
.newsletter-section .newsletter-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.newsletter-section .newsletter-text p {
  font-size: 1rem;
  color: #ccc;
}
.newsletter-section .newsletter-form {
  flex: 1;
  display: flex;
  gap: 1rem;
}
.newsletter-section .newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  outline: none;
}
.newsletter-section .newsletter-form button {
  padding: 0.8rem 1.2rem;
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.newsletter-section .newsletter-form button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
.newsletter-section .popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-align: center;
}
.newsletter-section .popup.show {
  display: block;
}
.newsletter-section .popup .popup-inner {
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-section {
  padding: 5rem 2rem;
  background-color: #f8f8f8;
  color: #111;
}
.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}
.faq-section .faq-item .faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding: 1rem;
  background-color: #fff;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.faq-section .faq-item .faq-question:hover {
  background-color: #eee;
}
.faq-section .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  font-size: 1.2rem;
}
.faq-section .faq-item .faq-question.active::after {
  content: "-";
}
.faq-section .faq-item .faq-answer {
  display: none;
  padding: 1rem;
  font-size: 0.95rem;
  color: #333;
}
.faq-section .faq-item .faq-answer.show {
  display: block;
}

.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 4rem 2rem 2rem;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-content .footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-content .footer-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-content .footer-col ul li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.site-footer .footer-content .footer-col ul li i {
  margin-right: 0.5rem;
  color: #fff;
}
.site-footer .footer-content .footer-col ul li a {
  color: #ddd;
  text-decoration: none;
}
.site-footer .footer-content .footer-col ul li a:hover {
  text-decoration: underline;
}
.site-footer .footer-content .logo-col .footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}
.site-footer .footer-content .logo-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}
.site-footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #111;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  max-width: 320px;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
}
.cookie-banner p {
  margin: 0 0 0.5rem;
}
.cookie-banner p a {
  color: #f1c40f;
  text-decoration: underline;
}
.cookie-banner button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-banner button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.privacy-policy {
  padding: 5rem 2rem;
  background-color: #fff;
  color: #111;
}
.privacy-policy .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.privacy-policy h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.privacy-policy p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.privacy-policy ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.privacy-policy ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.privacy-policy a {
  color: #c0392b;
  text-decoration: underline;
}
.privacy-policy a:hover {
  text-decoration: none;
}

.terms-section {
  padding: 5rem 2rem;
  background-color: #fff;
  color: #111;
}
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.terms-section h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.terms-section h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.terms-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.terms-section ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.terms-section a {
  color: #c0392b;
  text-decoration: underline;
}
.terms-section a:hover {
  text-decoration: none;
}

.casino-section {
  background-color: #f5f5f5;
  padding: 6rem 2rem;
}
.casino-section .casino-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.casino-section .casino-text {
  flex: 1;
  color: #111;
}
.casino-section .casino-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.casino-section .casino-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #444;
}
.casino-section .casino-text .casino-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.casino-section .casino-text .casino-features li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.casino-section .casino-text .casino-features li i {
  margin-right: 0.6rem;
  color: #000;
  font-size: 1.1rem;
}
.casino-section .casino-text .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.casino-section .casino-text .btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.casino-section .casino-image {
  flex: 1;
}
.casino-section .casino-image img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */