@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #f7f7f7;
  color: #111;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

section {
  padding: 80px 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  background: transparent;
}
.main-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.main-header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.main-header .main-nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
.main-header .main-nav ul li a:hover {
  color: #111;
}
.main-header .btn-primary {
  background-color: #3b82f6;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.main-header .btn-primary:hover {
  background-color: #2563eb;
}

.hero {
  height: 60vh;
  background: url("img/hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .hero-content {
  color: white;
  max-width: 900px;
}
.hero .hero-content .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero .hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

.info-section {
  background-color: #f4f7fa;
  padding: 80px 0;
}
.info-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.info-section .info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.info-section .info-block:hover {
  transform: translateY(-5px);
}
.info-section .info-block.reverse {
  flex-direction: row-reverse;
}
.info-section .info-block .info-image {
  flex: 1;
}
.info-section .info-block .info-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.info-section .info-block .info-text {
  flex: 1;
  padding: 40px;
}
.info-section .info-block .info-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e3a5f;
}
.info-section .info-block .info-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}
.info-section .info-block .info-text .btn-primary {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 24px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}
.info-section .info-block .info-text .btn-primary i {
  margin-right: 8px;
}
.info-section .info-block .info-text .btn-primary:hover {
  background-color: #1d4ed8;
}

.gallery-section {
  background-color: #e4f0f4;
  padding: 80px 0;
}
.gallery-section .gallery-intro {
  text-align: center;
  margin-bottom: 50px;
}
.gallery-section .gallery-intro .gallery-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 600;
  letter-spacing: 1px;
}
.gallery-section .gallery-intro h2 {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: 700;
  color: #1e293b;
}
.gallery-section .gallery-intro p {
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.gallery-section .gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-item .hover-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
  text-align: center;
}
.gallery-section .gallery-item .hover-box span {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.gallery-section .gallery-item .hover-box .btn-primary {
  padding: 10px 20px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}
.gallery-section .gallery-item .hover-box .btn-primary:hover {
  background-color: #2563eb;
}
.gallery-section .gallery-item:hover .hover-box {
  opacity: 1;
}

.features-section {
  background-color: #6db6c9;
  padding: 80px 0;
  color: #fff;
}
.features-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}
.features-section .features-grid .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.features-section .features-grid .feature p {
  font-size: 1rem;
  color: #e6f0f4;
}

.faq-section {
  background-color: #1e3a5f;
  padding: 80px 0;
  color: #fff;
}
.faq-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}
.faq-section .faq-item .faq-question {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
}
.faq-section .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
}
.faq-section .faq-item .faq-answer {
  display: none;
  margin-top: 10px;
  color: #d0e3f1;
  font-size: 1rem;
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq-section .faq-item.active .faq-question::after {
  content: "−";
}

.site-footer {
  background-color: #1e293b;
  color: #fff;
  padding: 60px 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}
.site-footer .footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer .footer-brand h3 a {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-brand p {
  font-size: 0.9rem;
  color: #ccc;
}
.site-footer .footer-links h4,
.site-footer .footer-legal h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.site-footer .footer-links ul,
.site-footer .footer-legal ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links ul li,
.site-footer .footer-legal ul li {
  margin-bottom: 8px;
}
.site-footer .footer-links ul li a,
.site-footer .footer-legal ul li a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.site-footer .footer-links ul li a:hover,
.site-footer .footer-legal ul li a:hover {
  color: #fff;
}

.contact-hero {
  background: url("img/hero.png") center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero .contact-hero-overlay {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.contact-hero .contact-hero-overlay .container {
  color: #fff;
}
.contact-hero .contact-hero-overlay .container h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.contact-hero .contact-hero-overlay .container p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  background-color: #f4f7fa;
  padding: 60px 0;
}
.contact-section .contact-grid {
  max-width: 600px;
  margin: 0 auto;
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}
.contact-section .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form button {
  padding: 14px;
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-section .contact-form button:hover {
  background-color: #1d4ed8;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay .popup {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.popup-overlay .popup p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.popup-overlay .popup button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.policy-section {
  padding: 80px 0;
  background-color: #f4f7fa;
  color: #1e293b;
}
.policy-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.policy-section h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.policy-section h2 {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
}
.policy-section p,
.policy-section ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 10px;
}
.policy-section ul {
  padding-left: 20px;
}
.policy-section ul li {
  margin-bottom: 8px;
}
.policy-section a {
  color: #2563eb;
  text-decoration: underline;
}
.policy-section a:hover {
  text-decoration: none;
}

.black-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  background: transparent;
}
.black-header .black-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.black-header .black-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}
.black-header .black-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.black-header .black-nav ul li a {
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}
.black-header .black-nav ul li a:hover {
  color: #2563eb;
}
.black-header .black-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.black-header .black-btn:hover {
  background-color: #333;
}

.casino-hero {
  background: url("img/hero.png") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}
.casino-hero .casino-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.casino-hero .casino-hero-overlay .container {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.casino-hero .casino-hero-overlay .container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.casino-hero .casino-hero-overlay .container p {
  font-size: 1.1rem;
}

.casino-cards {
  background-color: #e4f0f4;
  padding: 80px 0;
}
.casino-cards .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e293b;
}
.casino-cards .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.casino-cards .card-grid .card {
  text-align: center;
}
.casino-cards .card-grid .card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.casino-cards .card-grid .card:hover img {
  transform: scale(1.03);
}
.casino-cards .card-grid .card h3 {
  margin-top: 15px;
  font-size: 1rem;
  color: #1e293b;
}

.casino-highlights {
  background: #f9fafb;
  padding: 80px 0;
}
.casino-highlights .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e293b;
}
.casino-highlights .highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.casino-highlights .highlight-grid .highlight {
  text-align: center;
}
.casino-highlights .highlight-grid .highlight h4 {
  font-size: 1.2rem;
  color: #2563eb;
  margin-bottom: 10px;
}
.casino-highlights .highlight-grid .highlight p {
  color: #444;
  font-size: 0.95rem;
}

.casino-highlights .highlight-grid .highlight {
  text-align: center;
}
.casino-highlights .highlight-grid .highlight i {
  color: #2563eb;
  margin-bottom: 10px;
  display: block;
}
.casino-highlights .highlight-grid .highlight h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 10px;
}
.casino-highlights .highlight-grid .highlight p {
  color: #444;
  font-size: 0.95rem;
}

.guide-hero {
  background: url("img/hero.png") center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
}
.guide-hero .guide-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.guide-hero .guide-hero-overlay .container {
  color: white;
  max-width: 800px;
  margin: 0 auto;
}
.guide-hero .guide-hero-overlay .container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.guide-hero .guide-hero-overlay .container p {
  font-size: 1.1rem;
}

.guide-testimonials {
  background-color: #e0f1f8;
  padding: 80px 0;
}
.guide-testimonials .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.guide-testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.guide-testimonials .testimonial-grid .testimonial-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.guide-testimonials .testimonial-grid .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.guide-testimonials .testimonial-grid .testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}
.guide-testimonials .testimonial-grid .testimonial-card h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.guide-testimonials .testimonial-grid .testimonial-card span {
  font-size: 0.9rem;
  color: #666;
}

.guide-info {
  background: #f9fafb;
  padding: 80px 0;
}
.guide-info .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1e293b;
}
.guide-info p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background-color: #1e293b;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
}
.cookie-popup p {
  margin-bottom: 10px;
}
.cookie-popup p a {
  color: #3b82f6;
  text-decoration: underline;
}
.cookie-popup p a:hover {
  text-decoration: none;
}
.cookie-popup button {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-popup button:hover {
  background-color: #2563eb;
}/*# sourceMappingURL=style.css.map */