html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  background-color: #0d1b2a;
  color: #ffffff;
}

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

a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #f4d03f;
}

.site-header {
  background-color: #1b263b;
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header nav {
  display: flex;
  gap: 20px;
}
.site-header nav a {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.site-header .logo {
  background-color: #ffd700;
  padding: 10px 20px;
  border-radius: 50px;
}
.site-header .logo a {
  color: #0d1b2a;
  font-size: 1.3rem;
  font-weight: 700;
}
.site-header .logo a span {
  color: #1b263b;
}

.hero-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}
.hero-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-section .hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.hero-section .hero-cards .hero-card {
  background-color: #0d1b2a;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-section .hero-cards .hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.hero-section .hero-cards .hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}
.hero-section .hero-cards .hero-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.hero-section .hero-cards .hero-card img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 160px;
}

.casino-highlight {
  background-color: #1b263b;
  color: #ffffff;
  padding: 80px 0;
}
.casino-highlight .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.casino-highlight .highlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.casino-highlight .highlight-text {
  flex: 1 1 500px;
}
.casino-highlight .highlight-text .highlight-top {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 15px;
}
.casino-highlight .highlight-text h2 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
}
.casino-highlight .highlight-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}
.casino-highlight .highlight-text .btn-primary {
  display: inline-block;
  background-color: #e63946;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}
.casino-highlight .highlight-text .btn-primary:hover {
  background-color: #d62828;
}
.casino-highlight .highlight-image {
  flex: 1 1 400px;
}
.casino-highlight .highlight-image img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.experience-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.experience-section h2 {
  font-size: 2.3rem;
  color: #ffd700;
  margin-bottom: 30px;
}
.experience-section .experience-image {
  max-width: 800px;
  margin: 0 auto 40px;
}
.experience-section .experience-image img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience-section .experience-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.experience-section .experience-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.experience-section .experience-content p strong {
  color: #ffd700;
}

.features-section {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd700;
}
.features-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.features-section .feature-card {
  background-color: #1b263b;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.features-section .feature-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffd700;
}
.features-section .feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.features-section .feature-card p {
  font-size: 0.95rem;
}

.faq-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 80px 0;
}
.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffd700;
}
.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #33415c;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
}
.faq-section .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.faq-section .faq-item .faq-question.active::after {
  content: "-";
}
.faq-section .faq-item .faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}
.faq-section .faq-item .faq-answer.show {
  display: block;
}

.site-footer {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 60px 20px 20px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.site-footer .footer-column {
  flex: 1 1 250px;
}
.site-footer .footer-column h3,
.site-footer .footer-column h4 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.site-footer .footer-column h3 i,
.site-footer .footer-column h4 i {
  margin-right: 8px;
}
.site-footer .footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.site-footer .footer-column ul li i {
  margin-right: 8px;
  color: #ffd700;
}
.site-footer .footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-column ul li a:hover {
  color: #ffd700;
}
.site-footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  border-top: 1px solid #33415c;
  padding-top: 15px;
}

.newsletter-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.newsletter-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.newsletter-section .newsletter-text {
  margin-bottom: 30px;
}
.newsletter-section .newsletter-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffd700;
}
.newsletter-section .newsletter-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.newsletter-section .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.newsletter-section .newsletter-form input {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  flex: 1 1 300px;
}
.newsletter-section .newsletter-form button {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #e63946;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.newsletter-section .newsletter-form button:hover {
  background-color: #d62828;
}
.newsletter-section .thank-you-popup {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #ffd700;
  color: #1b263b;
  border-radius: 8px;
  font-weight: 600;
}
.newsletter-section .thank-you-popup.show {
  display: block;
}

.privacy-section,
.terms-section {
  background-color: #1b263b;
  color: #ffffff;
  padding: 80px 20px;
  font-family: "Outfit", sans-serif;
}
.privacy-section .container,
.terms-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-section h1,
.terms-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffd700;
  text-align: center;
}
.privacy-section h2,
.terms-section h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffd700;
  border-bottom: 1px solid #33415c;
  padding-bottom: 5px;
}
.privacy-section p,
.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.privacy-section ul,
.terms-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.privacy-section ul li,
.terms-section ul li {
  margin-bottom: 10px;
}
.privacy-section strong,
.terms-section strong {
  color: #ffd700;
}
.privacy-section a,
.terms-section a {
  color: #ffd700;
  text-decoration: underline;
}
.privacy-section a:hover,
.terms-section a:hover {
  color: #f4d03f;
}
.privacy-section .last-update,
.terms-section .last-update {
  text-align: right;
  font-size: 0.85rem;
  margin-top: 30px;
  color: #d1d5db;
}/*# sourceMappingURL=style.css.map */