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

body {
  font-family: "Arial", sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #0a1128;
  color: #ffffff;
}

.site-header {
  background-color: #0a1128;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-inner .logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f4c95d;
  letter-spacing: 1px;
}
.site-header .header-inner .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-inner .logo-link .logo-img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.5rem;
}
.site-header .header-inner .logo-link .logo-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #f4c95d;
  letter-spacing: 1px;
}
.site-header .header-inner .logo-link:hover .logo-text {
  opacity: 0.8;
}
.site-header .header-inner .main-nav a {
  color: #ffffff;
  margin-left: 2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}
.site-header .header-inner .main-nav a:hover {
  color: #f4c95d;
}

.hero {
  background: url("/assets/img/hero.png") center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .hero-overlay .hero-content {
  max-width: 700px;
  padding: 0 2rem;
}
.hero .hero-overlay .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f4c95d;
  margin-bottom: 1.2rem;
}
.hero .hero-overlay .hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ffffff;
}

.features {
  background-color: #0a1128;
  color: #ffffff;
  padding: 5rem 0;
}
.features .features-title {
  text-align: center;
  font-size: 2.5rem;
  color: #f4c95d;
  margin-bottom: 1rem;
}
.features .features-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #d3d3d3;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.features .feature-box {
  background-color: #ffffff;
  color: #0a1128;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.features .feature-box i {
  color: #f4c95d;
  margin-bottom: 1rem;
}
.features .feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.features .feature-box p {
  font-size: 0.95rem;
  color: #333;
}
.features .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.casino-contact-section {
  background: url("/assets/img/bg.png") center/cover no-repeat;
  position: relative;
}
.casino-contact-section .casino-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 4rem 0;
}
.casino-contact-section .casino-overlay .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
  color: #fff;
}
.casino-contact-section .casino-overlay .contact-grid .contact-text h2 {
  font-size: 2.2rem;
  color: #f4c95d;
  margin-bottom: 1rem;
}
.casino-contact-section .casino-overlay .contact-grid .contact-text p {
  font-size: 1.1rem;
  color: #eee;
  max-width: 500px;
}
.casino-contact-section .casino-overlay .contact-grid .contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  color: #0a1128;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.casino-contact-section .casino-overlay .contact-grid .contact-form h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #0a1128;
}
.casino-contact-section .casino-overlay .contact-grid .contact-form input,
.casino-contact-section .casino-overlay .contact-grid .contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.casino-contact-section .casino-overlay .contact-grid .contact-form textarea {
  height: 120px;
  resize: vertical;
}
.casino-contact-section .casino-overlay .contact-grid .contact-form button {
  background-color: #f4c95d;
  color: #0a1128;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.casino-contact-section .casino-overlay .contact-grid .contact-form button:hover {
  background-color: #e2b851;
}

.gallery-section {
  background-color: #0a1128;
  padding: 4rem 0;
}
.gallery-section .gallery-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.gallery-section .gallery-img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  border: 3px solid #f4c95d;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section .gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
}

.why-section {
  background-color: #0a1128;
  color: #ffffff;
  padding: 5rem 0;
}
.why-section .why-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.why-section .why-title span {
  color: #f4c95d;
}
.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.why-section .why-card {
  background-color: #ffffff;
  color: #0a1128;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}
.why-section .why-card:hover {
  transform: translateY(-6px);
}
.why-section .why-card .why-number {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #f4c95d;
  color: #0a1128;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.why-section .why-card p {
  font-size: 1rem;
  line-height: 1.5;
}
.why-section .why-card p strong {
  color: #000;
  font-weight: 600;
}

.planning-guide {
  background-color: #0a1128;
  padding: 5rem 0;
  text-align: center;
}
.planning-guide .guide-inner {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}
.planning-guide .guide-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #f4c95d;
}
.planning-guide .guide-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}
.planning-guide .guide-text ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.planning-guide .guide-text ul li {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}
.planning-guide .guide-text ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1rem;
  color: #f4c95d;
}
.planning-guide .guide-text ul li strong {
  color: #f4c95d;
}

.faq-section {
  background-color: #0a1128;
  padding: 5rem 0;
  color: #ffffff;
}
.faq-section .faq-title {
  text-align: center;
  font-size: 2.4rem;
  color: #f4c95d;
  margin-bottom: 3rem;
}
.faq-section .faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f4c95d;
  overflow: hidden;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 1rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-section .faq-item .faq-question::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq-section .faq-item .faq-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-section .faq-item .faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}
.faq-section .faq-item .faq-answer p {
  margin: 1rem 0;
  font-size: 1rem;
  color: #dddddd;
}
.faq-section .faq-item .faq-question.active + .faq-answer {
  max-height: 200px;
}

.site-footer {
  background-color: #0a1128;
  padding: 3rem 0;
  color: #ffffff;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.site-footer .footer-left {
  max-width: 400px;
}
.site-footer .footer-left .footer-logo {
  width: 50px;
  margin-bottom: 0.5rem;
}
.site-footer .footer-left .footer-name {
  font-weight: bold;
  font-size: 1rem;
  color: #f4c95d;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.site-footer .footer-left .footer-desc {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
}
.site-footer .footer-right .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.site-footer .footer-right .footer-nav a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-right .footer-nav a:hover {
  color: #f4c95d;
}

.privacy-policy {
  background-color: #0a1128;
  color: #ffffff;
  padding: 5rem 0;
}
.privacy-policy h1 {
  font-size: 2.5rem;
  color: #f4c95d;
  margin-bottom: 2rem;
}
.privacy-policy h2 {
  font-size: 1.6rem;
  color: #f4c95d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-policy p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #ddd;
}
.privacy-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-policy ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.privacy-policy strong {
  color: #ffffff;
}

.terms-section {
  background-color: #0a1128;
  color: #ffffff;
  padding: 5rem 0;
}
.terms-section h1 {
  font-size: 2.5rem;
  color: #f4c95d;
  margin-bottom: 2rem;
}
.terms-section h2 {
  font-size: 1.6rem;
  color: #f4c95d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.terms-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #dddddd;
}
.terms-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.terms-section ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.terms-section a {
  color: #f4c95d;
  text-decoration: underline;
}
.terms-section a:hover {
  text-decoration: none;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.thank-you-popup .popup-content {
  background-color: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  color: #0a1128;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.thank-you-popup .popup-content p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.thank-you-popup .popup-content button {
  background-color: #f4c95d;
  color: #0a1128;
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}
.thank-you-popup .popup-content button:hover {
  background-color: #e6b94f;
}/*# sourceMappingURL=style.css.map */