:root {
  --primary-color: #d4920a;
  --secondary-color: #b5711c;
  --bg-dark: #0c0c0e;
  --bg-surface: #161618;
  --border-color: #2a2720;
  --text-primary: #f0e8d5;
  --text-secondary: #9a8f7a;
  --gradient-gold: linear-gradient(135deg, #d4920a 0%, #f5c842 100%);
  --gradient-banner: linear-gradient(to right, #7b4a00, #d4920a, #7b4a00);

  --font-display: "Cinzel Decorative", serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Bebas Neue", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

h2 {
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-size: 32px;
  font-family: var(--font-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-type-a {
  background-color: var(--primary-color);
  color: #000;
  border: none;
}

.btn-type-a:hover {
  filter: brightness(1.1);
}

.btn-type-b {
  background-color: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.btn-type-b:hover {
  background-color: rgba(212, 146, 10, 0.12);
}

.btn-type-b.filled {
  background-color: var(--primary-color);
  color: #000;
}

.btn-type-b.filled:hover {
  filter: brightness(1.1);
}

.btn-black {
  background-color: #0c0c0e;
  color: var(--primary-color);
  border: 1px solid #0c0c0e;
}

.btn-black:hover {
  background-color: #000;
  border-color: #000;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  background-color: rgba(12, 12, 14, 0.5);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--bg-dark);
}

.nav-brand img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  padding: 100px 5% 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

/* Layout & Sections */
.section {
  padding: 80px 5%;
}

.bg-dark {
  background-color: var(--bg-dark);
}
.bg-surface {
  background-color: var(--bg-surface);
}

/* HERO - Section 1 */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: repeating-linear-gradient(
    45deg,
    rgba(212, 146, 10, 0.04) 0px,
    rgba(212, 146, 10, 0.04) 1px,
    transparent 1px,
    transparent 10px
  );
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 146, 10, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 0 5%;
}

.hero-content {
  width: 55%;
  padding-right: 2rem;
}

.hero h1 {
  font-size: 48px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-primary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-img-wrap {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: -5%;
  bottom: 0;
  height: 90vh;
}

.hero-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GAME HIGHLIGHTS - Section 2 */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 420px;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(212, 146, 10, 0.08);
}

.game-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.03);
}

.game-card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.game-card-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.game-card-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.game-cta {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin-top: 1rem;
  display: inline-block;
}

/* WHY LUCKY CALICO - Section 3 */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  fill: none;
}

.trust-item h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* WELCOME BANNER - Section 4 */
.welcome-section {
  padding: 0;
}

.welcome-banner {
  background: var(--gradient-banner);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-content {
  width: 60%;
  padding: 80px 5%;
  color: #0c0c0e;
}

.banner-content h2 {
  border-left-color: #0c0c0e;
  color: #0c0c0e;
}

.banner-content p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 600px;
}

.banner-img {
  width: 40%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.banner-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* HOW TO GET STARTED - Section 5 */
.steps-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed var(--primary-color);
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  background-color: var(--bg-surface);
}

.step-number {
  font-family: var(--font-accent);
  font-size: 64px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.step-item h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step-cta-wrapper {
  text-align: center;
}

.step-cta {
  width: 280px;
}

/* GAME PROVIDERS - Section 6 */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.marquee-track {
  display: inline-block;
  animation: scrollMarquee 30s linear infinite;
}

.provider-item {
  display: inline-block;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  opacity: 0.7;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PAYMENT METHODS - Section 7 */
.payment-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.payment-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background-color: #2a2720;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: bold;
  color: #fff;
  filter: saturate(80%);
}

.payment-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* TESTIMONIALS - Section 8 */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--bg-surface);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.review-featured {
  grid-column: span 2;
  border-left: 3px solid var(--primary-color);
  box-shadow: 0 0 40px rgba(212, 146, 10, 0.18);
}

.review-standard {
  grid-column: span 1;
  border: 1px solid var(--border-color);
}

.stars {
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.review-featured .stars {
  text-shadow: 0 0 10px rgba(212, 146, 10, 0.5);
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-featured .quote {
  font-size: 1.1rem;
}
.review-standard .quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-initials {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
}

.author-info h4 {
  font-size: 1rem;
  margin: 0;
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* FAQ - Section 9 */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: var(--primary-color);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 146, 10, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 146, 10, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 146, 10, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 146, 10, 0);
  }
}

/* Footer */
.footer {
  background-color: #000;
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary-color);
}

.license-badge {
  display: inline-block;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1023px) {
  .hero {
    padding-top: 100px;
  }
  .hero-content {
    width: 60%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-img-wrap {
    width: 50%;
    right: -10%;
  }
  .game-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-featured,
  .review-standard {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-wrapper::before {
    display: none;
  }
  .step-item {
    background: transparent;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 48px 5%;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    min-height: auto;
    padding-top: 120px;
  }
  .hero-container {
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    padding-right: 0;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-img-wrap {
    position: relative;
    width: 100%;
    height: auto;
    right: 0;
    margin-top: 2rem;
    justify-content: center;
  }

  h2 {
    font-size: 28px;
  }

  .game-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    height: auto;
  }
  .review-featured,
  .review-standard {
    grid-column: span 1;
  }

  .welcome-banner {
    flex-direction: column;
  }
  .banner-content {
    width: 100%;
    padding: 48px 5%;
  }
  .banner-img {
    width: 100%;
  }

  .steps-wrapper {
    flex-direction: column;
    gap: 2rem;
    border-left: 1px dashed var(--primary-color);
    margin-left: 1rem;
    padding-left: 1rem;
  }
  .step-item {
    text-align: left;
    padding: 0;
  }
  .step-cta {
    width: 100%;
  }

  .payment-grid {
    justify-content: flex-start;
  }
  .payment-item {
    flex: 0 0 30%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
