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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #f9f9f9;
  color: #1e1e1e;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.site-header {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img {
  height: 60px;
}
.site-header .main-nav ul {
  display: flex;
  gap: 1.5rem;
}
.site-header .main-nav ul li a {
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}
.site-header .main-nav ul li a.active, .site-header .main-nav ul li a:hover {
  color: #c4002f;
}

.hero-section {
  background: url("/assets/img/hero.png") center/cover no-repeat;
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-section .hero-overlay .hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-overlay .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-section .hero-overlay .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-section .hero-overlay .hero-content .btn-outline {
  padding: 0.75rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.hero-section .hero-overlay .hero-content .btn-outline:hover {
  background: #fff;
  color: #000;
}

.about-section {
  background: #f7f7f7;
  padding: 80px 0;
}
.about-section .about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-section .about-content {
    flex-direction: column;
    text-align: center;
  }
}
.about-section .about-image img {
  max-width: 300px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.about-section .about-text {
  flex: 1;
}
.about-section .about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-section .about-text h2 i {
  font-size: 1rem;
  color: #c4002f;
}
.about-section .about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-section .about-text .highlight {
  color: #c4002f;
  font-weight: 600;
}

.casino-banner {
  background: url("/assets/img/bg.png") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.casino-banner .banner-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-banner .banner-overlay h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .casino-banner .banner-overlay h2 {
    font-size: 1.5rem;
  }
}

.offer-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.offer-section .section-title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.offer-section .section-title i {
  color: #c4002f;
  margin-right: 0.5rem;
}
.offer-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.offer-section .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.offer-section .offer-item {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.offer-section .offer-item:hover {
  transform: translateY(-6px);
  background: #fff;
}
.offer-section .offer-item i {
  font-size: 2.2rem;
  color: #c4002f;
  margin-bottom: 1rem;
}
.offer-section .offer-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.offer-section .offer-item p {
  font-size: 0.95rem;
  color: #444;
}

.gallery-section {
  background: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}
.gallery-section .section-title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.gallery-section .section-title i {
  color: #c4002f;
  margin-right: 0.5rem;
}
.gallery-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gallery-section .gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.gallery-section .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-section .gallery-item img:hover {
  transform: scale(1.08);
}
.gallery-section .gallery-item:hover {
  transform: translateY(-4px);
}

.contact-notice {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
}

.contact-section {
  background: #fff;
  padding: 80px 0;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-section h2 i {
  color: #c4002f;
  margin-right: 0.5rem;
}
.contact-section .contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-section .contact-form-wrapper form input,
.contact-section .contact-form-wrapper form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-section .contact-form-wrapper form textarea {
  height: 150px;
  resize: vertical;
}
.contact-section .contact-form-wrapper form .captcha-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-section .contact-form-wrapper form .captcha-row input {
  width: 60px;
}
.contact-section .contact-form-wrapper form button {
  background: #c4002f;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-section .contact-form-wrapper form button:hover {
  background: #000;
}
.contact-section .contact-info {
  font-size: 1rem;
}
.contact-section .contact-info p {
  margin-bottom: 0.75rem;
}
.contact-section .contact-info p i {
  margin-right: 0.5rem;
  color: #c4002f;
}
.contact-section .contact-info p a {
  color: #000;
  text-decoration: underline;
}
.contact-section .contact-info .cities {
  margin-top: 1rem;
  color: #555;
  font-size: 0.95rem;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-overlay .popup {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.popup-overlay .popup p {
  margin-bottom: 1rem;
}
.popup-overlay .popup button {
  padding: 0.5rem 1rem;
  background: #c4002f;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.popup-overlay .popup button:hover {
  background: #000;
}

.disclaimer-section {
  background: #c64848;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.disclaimer-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.disclaimer-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 20px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .site-footer .footer-grid {
    text-align: center;
  }
}
.site-footer .footer-brand h3 a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.site-footer .footer-links h4,
.site-footer .footer-policies h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.site-footer .footer-links ul,
.site-footer .footer-policies ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links ul li,
.site-footer .footer-policies ul li {
  margin-bottom: 0.4rem;
}
.site-footer .footer-links ul li a,
.site-footer .footer-policies ul li a {
  color: #ccc;
  font-size: 0.95rem;
  transition: 0.3s;
}
.site-footer .footer-links ul li a:hover,
.site-footer .footer-policies ul li a:hover {
  color: #fff;
}
.site-footer p {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

.privacy-policy-section {
  padding: 80px 20px;
  background: #fff;
  color: #1c1c1c;
}
.privacy-policy-section h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}
.privacy-policy-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #c4002f;
}
.privacy-policy-section p,
.privacy-policy-section ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.privacy-policy-section ul {
  padding-left: 1.5rem;
}
.privacy-policy-section ul li {
  list-style: disc;
}
.privacy-policy-section a {
  color: #c4002f;
  text-decoration: underline;
}
.privacy-policy-section a:hover {
  color: #000;
}

.terms-section {
  padding: 80px 20px;
  background: #fff;
  color: #1d1d1d;
}
.terms-section h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.terms-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #c4002f;
}
.terms-section p,
.terms-section ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.terms-section ul {
  padding-left: 1.5rem;
}
.terms-section ul li {
  list-style: disc;
}
.terms-section a {
  color: #c4002f;
  text-decoration: underline;
}
.terms-section a:hover {
  color: #000;
}

.cookies-policy-section {
  padding: 80px 20px;
  background: #fff;
  color: #1c1c1c;
}
.cookies-policy-section h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}
.cookies-policy-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #c4002f;
}
.cookies-policy-section p,
.cookies-policy-section ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.cookies-policy-section ul {
  padding-left: 1.5rem;
}
.cookies-policy-section ul li {
  list-style: disc;
}
.cookies-policy-section a {
  color: #c4002f;
  text-decoration: underline;
}
.cookies-policy-section a:hover {
  color: #000;
}

.why-us-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.why-us-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-us-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

.why-us-section {
  background: #fff;
  padding: 80px 20px;
}
.why-us-section .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: center;
}
.why-us-section .why-item {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.why-us-section .why-item:hover {
  transform: translateY(-4px);
}
.why-us-section .why-item i {
  font-size: 2.5rem;
  color: #c4002f;
  margin-bottom: 1rem;
}
.why-us-section .why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.why-us-section .why-item p {
  font-size: 1rem;
  color: #444;
}

.why-cta {
  background: #c4002f;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.why-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.why-cta .btn-primary {
  background: #fff;
  color: #c4002f;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.why-cta .btn-primary:hover {
  background: #000;
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 1rem;
  display: none;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}
.cookie-banner .cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-container p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-container p {
    margin-bottom: 0;
  }
}
.cookie-banner .cookie-container button {
  background: #c4002f;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.cookie-banner .cookie-container button:hover {
  background: #fff;
  color: #000;
}/*# sourceMappingURL=style.css.map */