/* style.css - Luxury777 Brand Specific Custom Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --lx-bg-deep: #050507;
  --lx-bg-card: #0c0c0f;
  --lx-bg-panel: #131317;
  
  --lx-gold-primary: #d4af37;
  --lx-gold-dark: #a27b0c;
  --lx-gold-light: #f6e4a4;
  --lx-gold-gradient: linear-gradient(135deg, #f6e4a4 0%, #d4af37 50%, #a27b0c 100%);
  
  --lx-glow: 0 0 15px rgba(212, 175, 55, 0.25);
  --lx-color-white: #ffffff;
  --lx-color-gray: #9c9ca3;
  --lx-border: 1px solid rgba(212, 175, 55, 0.12);
  
  --lx-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--lx-bg-deep);
  color: var(--lx-color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Base Layout Utility */
.lx-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar Section */
.lx-navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--lx-border);
}

.lx-nav-container {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lx-logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lx-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.lx-menu-links {
  display: none;
}

@media (min-width: 768px) {
  .lx-menu-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.lx-menu-links a {
  color: var(--lx-color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--lx-transition);
}

.lx-menu-links a:hover {
  color: var(--lx-gold-primary);
  text-shadow: var(--lx-glow);
}

.lx-auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Custom Styled Buttons */
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--lx-transition);
  cursor: pointer;
}

.lx-btn-outline {
  border: 1px solid var(--lx-gold-primary);
  color: var(--lx-gold-primary);
  background: transparent;
}

.lx-btn-outline:hover {
  background: var(--lx-gold-gradient);
  color: var(--lx-bg-deep);
  box-shadow: var(--lx-glow);
}

.lx-btn-solid {
  background: var(--lx-gold-gradient);
  color: var(--lx-bg-deep);
  box-shadow: var(--lx-glow);
}

.lx-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Premium Hero Area */
.lx-hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 85px;
  overflow: hidden;
}

.lx-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(1);
}

.lx-hero-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, var(--lx-bg-deep) 75%);
}

.lx-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lx-kicker {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.04);
  color: var(--lx-gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lx-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .lx-hero-title {
    font-size: 68px;
  }
}

.lx-hero-title span {
  background: var(--lx-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.lx-hero-desc {
  color: var(--lx-color-gray);
  max-width: 650px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.lx-hero-cta {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

@media (min-width: 480px) {
  .lx-hero-cta {
    flex-direction: row;
    width: auto;
  }
}

/* Sections Base Styling */
.lx-section-spacing {
  padding: 100px 0;
}

.lx-shaded-bg {
  background-color: var(--lx-bg-card);
}

.lx-sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.lx-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lx-sec-title span {
  background: var(--lx-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lx-sec-desc {
  color: var(--lx-color-gray);
  max-width: 550px;
  margin: 0 auto;
  font-size: 15px;
}

/* Cards & Grid Styling */
.lx-three-column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .lx-three-column-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lx-three-column-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lx-game-card {
  background-color: var(--lx-bg-panel);
  border-radius: 16px;
  overflow: hidden;
  border: var(--lx-border);
  transition: var(--lx-transition);
}

.lx-game-card:hover {
  transform: translateY(-8px);
  border-color: var(--lx-gold-primary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
}

.lx-card-thumbnail {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: var(--lx-border);
}

.lx-card-content {
  padding: 24px;
}

.lx-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lx-gold-light);
}

.lx-card-desc {
  color: var(--lx-color-gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Features Component */
.lx-features-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .lx-features-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lx-feature-item {
  background-color: var(--lx-bg-panel);
  border-radius: 16px;
  padding: 40px 24px;
  border: var(--lx-border);
  text-align: center;
  transition: var(--lx-transition);
}

.lx-feature-item:hover {
  border-color: var(--lx-gold-primary);
}

.lx-feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.lx-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lx-gold-primary);
}

.lx-feature-desc {
  color: var(--lx-color-gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Modern Testimonial Box */
.lx-reviews-wrapper {
  background: radial-gradient(circle at top right, #171410, #050507 75%);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.12), inset 0 0 20px rgba(212, 175, 55, 0.04);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.lx-reviews-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(212, 175, 55, 0.02), rgba(212, 175, 55, 0.02) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
  opacity: 0.4;
}

.lx-reviews-header, .lx-reviews-grid, .lx-reviews-footer {
  position: relative;
  z-index: 1;
}

.lx-reviews-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

@media (min-width: 900px) {
  .lx-reviews-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

.lx-reviews-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--lx-gold-light);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lx-reviews-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-top: 8px;
  text-shadow: var(--lx-glow);
}

.lx-reviews-sub-title {
  color: var(--lx-color-gray);
  font-size: 13px;
  line-height: 1.7;
  max-width: 600px;
  margin-top: 8px;
}

.lx-score-card {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.22);
}

@media (min-width: 900px) {
  .lx-score-card {
    width: auto;
    min-width: 240px;
  }
}

.lx-score-flex {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.lx-score-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--lx-gold-primary);
}

.lx-score-limit {
  font-size: 12px;
  color: var(--lx-color-gray);
}

.lx-score-stars {
  color: var(--lx-gold-primary);
  font-size: 14px;
  margin-bottom: 6px;
}

.lx-score-subtext {
  font-size: 11px;
  color: var(--lx-color-gray);
  line-height: 1.5;
}

.lx-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 900px) {
  .lx-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lx-review-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  padding: 20px;
  transition: var(--lx-transition);
}

.lx-review-item:hover {
  transform: translateY(-3px);
  border-color: var(--lx-gold-primary);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.lx-reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lx-reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lx-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lx-gold-gradient);
  color: var(--lx-bg-deep);
  font-weight: 800;
  font-size: 16px;
}

.lx-reviewer-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--lx-color-white);
}

.lx-reviewer-badge {
  font-size: 9px;
  color: var(--lx-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: block;
}

.lx-review-rating {
  font-size: 12px;
  color: var(--lx-gold-primary);
  font-weight: 700;
}

.lx-review-subject {
  font-size: 14px;
  font-weight: 700;
  color: var(--lx-gold-light);
  margin-bottom: 8px;
}

.lx-review-text {
  font-size: 12px;
  color: var(--lx-color-gray);
  line-height: 1.7;
}

.lx-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.lx-review-tags span {
  font-size: 9px;
  color: var(--lx-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 4px 8px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.03);
}

.lx-reviews-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

@media (min-width: 900px) {
  .lx-reviews-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lx-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lx-tag-pill {
  font-size: 11px;
  color: var(--lx-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.03);
}

.lx-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--lx-gold-gradient);
  color: var(--lx-bg-deep);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--lx-glow);
  transition: var(--lx-transition);
}

.lx-reviews-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* SEO Article Box */
.lx-article-panel {
  background-color: var(--lx-bg-panel);
  border-radius: 24px;
  padding: 30px;
  border: var(--lx-border);
}

@media (min-width: 768px) {
  .lx-article-panel {
    padding: 50px;
  }
}

.lx-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--lx-gold-primary);
  margin-bottom: 24px;
  border-bottom: var(--lx-border);
  padding-bottom: 12px;
}

.lx-article-body {
  color: var(--lx-color-gray);
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.lx-article-body p {
  margin-bottom: 16px;
}

.lx-article-body strong {
  color: var(--lx-gold-light);
}

.lx-article-body a {
  color: var(--lx-gold-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--lx-gold-primary);
  transition: var(--lx-transition);
}

.lx-article-body a:hover {
  color: var(--lx-gold-light);
  border-bottom-style: solid;
}

/* FAQ Accordion Component */
.lx-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lx-faq-card {
  background-color: var(--lx-bg-panel);
  border: var(--lx-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--lx-transition);
}

.lx-faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--lx-color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.lx-faq-trigger:hover {
  color: var(--lx-gold-primary);
}

.lx-faq-icon {
  font-size: 18px;
  color: var(--lx-gold-primary);
  transition: var(--lx-transition);
}

.lx-faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: rgba(255, 255, 255, 0.01);
}

.lx-faq-inner {
  padding: 0 24px 20px;
  color: var(--lx-color-gray);
  font-size: 14px;
  line-height: 1.7;
}

.lx-faq-card.active {
  border-color: var(--lx-gold-primary);
  box-shadow: var(--lx-glow);
}

.lx-faq-card.active .lx-faq-icon {
  transform: rotate(45deg);
}

.lx-faq-card.active .lx-faq-collapse {
  max-height: 250px;
}

/* CTA Showcase Banner */
.lx-cta-banner-wrapper {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.lx-cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: grayscale(1);
}

.lx-cta-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 30%, var(--lx-bg-deep) 85%);
}

.lx-cta-container {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
}

.lx-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .lx-cta-heading {
    font-size: 48px;
  }
}

.lx-cta-subtext {
  color: var(--lx-color-gray);
  font-size: 16px;
  margin-bottom: 32px;
}

/* Promo Popup Modal Component */
.lx-popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.lx-popup-mask.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.lx-popup-content-box {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: linear-gradient(145deg, #101014, #050507);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  animation: lxPopupAnim 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

@keyframes lxPopupAnim {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lx-popup-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
}

.lx-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--lx-transition);
  border: 1px solid var(--lx-gold-primary);
}

.lx-popup-close:hover {
  background: var(--lx-gold-gradient);
  transform: rotate(90deg);
}

.lx-popup-close::before,
.lx-popup-close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--lx-color-white);
}

.lx-popup-close:hover::before,
.lx-popup-close:hover::after {
  background: var(--lx-bg-deep);
}

.lx-popup-close::before {
  transform: rotate(45deg);
}

.lx-popup-close::after {
  transform: rotate(-45deg);
}

.lx-popup-banner-container {
  position: relative;
  background-color: var(--lx-bg-panel);
  padding: 35px 20px;
  border-bottom: var(--lx-border);
}

.lx-popup-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--lx-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lx-popup-brand-kicker {
  color: var(--lx-color-gray);
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 6px;
}

.lx-popup-body {
  padding: 24px;
}

.lx-popup-body a {
  display: block;
  width: 100%;
  padding: 14px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  background: var(--lx-gold-gradient);
  color: var(--lx-bg-deep);
  box-shadow: var(--lx-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--lx-transition);
}

.lx-popup-body a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.lx-popup-footer {
  font-size: 11px;
  color: var(--lx-color-gray);
  padding-bottom: 20px;
  letter-spacing: 0.5px;
}

.lx-popup-footer span {
  color: var(--lx-gold-primary);
}

/* Footer Section */
.lx-footer-area {
  border-top: var(--lx-border);
  padding: 30px 24px;
  background-color: #030304;
  text-align: center;
  color: var(--lx-color-gray);
  font-size: 13px;
  letter-spacing: 0.5px;
}
