/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
    color: #e7ba2f;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  color: #d1d9e6;
  background-color: #0a0e17;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  letter-spacing: 0.03em;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
}

p {
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
  color: #b0b8c4;
}

/* Header and Navigation */
.main-header {
  background: linear-gradient(180deg, #0f151f 0%, #1a222f 100%);
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #d1d9e6;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #f4c430;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f4c430;
  transition: width 0.3s ease;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f4c430;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.menu-toggle:hover {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  color: #ffffff;
  text-align: center;
  padding: 6rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('casino_background_final_compressed.webp');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.15) 0%, transparent 60%);
  animation: glow 15s infinite ease-in-out;
  z-index: 0;
}

@keyframes glow {
  0% { transform: translate(10%, 10%) scale(1); }
  50% { transform: translate(0%, 0%) scale(1.1); }
  100% { transform: translate(10%, 10%) scale(1); }
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.7rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out;
}

.intro {
  font-size: 1.3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  color: #b0b8c4;
  animation: fadeIn 1.2s ease-out 0.2s;
}

.subtitle {
  font-size: 1.15rem;
  color: #90a4ae;
  margin-bottom: 2.5rem;
}

.trust-msg {
  font-size: 0.95rem;
  color: #78909c;
  margin-top: 2rem;
}

/* CTA Button */
.cta-button {
  display: block;
  background: linear-gradient(45deg, #f4c430, #ff9100);
  color: #0a0e17;
  padding: 1rem 3rem;
  text-decoration: none;
  width: max-content;
  border-radius: 10px;
  font-weight: 500;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

.cta-button:hover {
  background: linear-gradient(45deg, #ffd54f, #ffab40);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.5);
}

.cta-button.pulse {
  animation: pulse 1.5s infinite ease-in-out;
}

.cta-button.mini {
  padding: 0.7rem 2rem;
  font-size: 1rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    float: left;
    padding-right: 30px;
    padding-bottom: 30px;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 5rem;
}

/* Tables */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
  background-color: #141a26;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.responsive-table th,
.responsive-table td {
  padding: 1.3rem;
  text-align: left;
  border-bottom: 1px solid #2a3447;
}

.responsive-table th {
  background-color: #1a222f;
  color: #f4c430;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.responsive-table td {
  color: #d1d9e6;
}

.responsive-table tr {
  transition: background 0.3s ease;
}

.responsive-table tr:hover {
  background-color: #1e272e;
}

.responsive-table a.cta-button {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* Lists */
ul {
  list-style: none;
}

ul li {
  padding: 1rem 0;
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.05rem;
  color: #d1d9e6;
}

ul li:before {
  content: '♦';
  color: #f4c430;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0.8rem;
}

/* FAQ Section */
.faq details {
  margin-bottom: 1.5rem;
  background-color: #141a26;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq details:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  padding: 1rem;
  color: #f4c430;
  transition: color 0.3s ease;
}

.faq details[open] summary {
  color: #ffffff;
}

.faq p {
  padding: 1rem;
  color: #b0b8c4;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1a222f 0%, #0f151f 100%);
  color: #b0b8c4;
  padding: 3rem 2rem;
  border-top: 1px solid #2a3447;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.footer-links a {
  color: #b0b8c4;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #f4c430;
  transform: translateX(5px);
}

.footer-copy {
  font-size: 0.9rem;
  color: #78909c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #1a222f;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  .responsive-table {
    display: block;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table td {
    padding: 1rem;
    position: relative;
  }

  .responsive-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 1rem;
    font-weight: 500;
    color: #f4c430;
  }

  .responsive-table td:last-child {
    text-align: center;
  }
}
@media (max-width: 696px) {
.responsive-image {
    max-width: 100%;
}
    }
@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .intro {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  main {
    padding: 1.5rem;
  }
}