/* ===== VEGAS LUXURY LAYOUT — Gold Accents & Asymmetric Design ===== */
/* All rules scoped to .layout-vegas to avoid affecting default layout */

/* ===== DECORATIVE BACKGROUND PATTERN ===== */
.layout-vegas::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(212,175,55,0.015) 40px,
      rgba(212,175,55,0.015) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(212,175,55,0.015) 40px,
      rgba(212,175,55,0.015) 41px
    ),
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.layout-vegas > * {
  position: relative;
  z-index: 1;
}

/* ===== ASYMMETRIC CONTENT OFFSET ===== */
@media (min-width: 768px) {
  .layout-vegas .content-wrap {
    margin-left: 8%;
    margin-right: auto;
    max-width: calc(776px - 20px);
  }
}
@media (min-width: 1200px) {
  .layout-vegas .content-wrap {
    margin-left: 10%;
  }
}

/* ===== GOLD SHIMMER ANIMATION ===== */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes vegasCtaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(212,175,55,0.3), inset 0 1px 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 8px 40px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.4); }
}

/* ===== SECTION HEADINGS — Gold Border Left ===== */
.layout-vegas .vegas-heading {
  padding-left: 24px;
  border-left: 4px solid var(--cs-gold);
  text-align: left;
}
.layout-vegas .vegas-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cs-gold), transparent);
  margin-top: 12px;
}

/* ===== HERO SECTION — Two Column Layout ===== */
.layout-vegas .vegas-hero {
  padding: 80px 0 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Ornate top border */
.layout-vegas .vegas-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cs-gold), transparent);
  z-index: 3;
}

.layout-vegas .vegas-hero-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .layout-vegas .vegas-hero-two-col {
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
  }
}
@media (min-width: 1100px) {
  .layout-vegas .vegas-hero-two-col {
    grid-template-columns: 1fr 1.8fr;
    gap: 56px;
  }
}

.layout-vegas .vegas-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layout-vegas .vegas-hero-media {
  min-width: 0;
}

/* ===== HERO TITLE — Gold Shimmer ===== */
.layout-vegas .vegas-title {
  background: linear-gradient(
    135deg,
    var(--cs-gold-light) 0%,
    var(--cs-gold) 25%,
    #fff 50%,
    var(--cs-gold) 75%,
    var(--cs-gold-dark) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s linear infinite;
  text-align: left;
}

.layout-vegas .hero-subtitle {
  text-align: left;
}

/* ===== CTA BUTTONS — Gold Gradient ===== */
.layout-vegas .cta-primary {
  color: #1a0a2e;
  background: linear-gradient(135deg, var(--cs-gold-light), var(--cs-gold), var(--cs-gold-dark));
  border: 2px solid var(--cs-gold);
  animation: vegasCtaPulse 3s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(212,175,55,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: none;
}
.layout-vegas .cta-primary:hover {
  color: #1a0a2e;
  box-shadow: 0 8px 40px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

.layout-vegas .cta-secondary {
  color: var(--cs-gold);
  background: transparent;
  border: 2px solid var(--cs-gold);
}
.layout-vegas .cta-secondary:hover {
  background: rgba(212,175,55,0.1);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
  color: var(--cs-gold-light);
}

/* Vegas CTA group — horizontal layout */
.layout-vegas .vegas-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* ===== SOCIAL PROOF — Gold Tinted ===== */
.layout-vegas .vegas-badges .badge {
  color: var(--cs-gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
}

/* ===== DEMO CONTAINER — Gold Border + Ornate ===== */
.layout-vegas .vegas-demo {
  border: 3px solid var(--cs-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.15);
}

/* Double-line ornate border effect */
.layout-vegas .vegas-demo::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

/* ===== GAME STATS — Circular Badges ===== */
.layout-vegas .vegas-stat-circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

@media (min-width: 600px) {
  .layout-vegas .vegas-stat-circles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.layout-vegas .vegas-stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.layout-vegas .vegas-stat-ring {
  width: clamp(80px, 14vw, 110px);
  height: clamp(80px, 14vw, 110px);
  border-radius: 50%;
  border: 3px solid var(--cs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 20px rgba(212,175,55,0.1), inset 0 0 20px rgba(212,175,55,0.05);
}

/* Double ring effect */
.layout-vegas .vegas-stat-ring::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
}

.layout-vegas .vegas-stat-value {
  font-family: var(--cs-font-heading);
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: var(--cs-gold-light);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.layout-vegas .vegas-stat-label {
  font-size: 0.8rem;
  color: var(--cs-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

/* ===== GAME STATS GRID — Gold Override ===== */
.layout-vegas .vegas-stats-section {
  padding-top: 60px;
}

.layout-vegas .game-info-row {
  background: linear-gradient(135deg, var(--cs-surface), var(--cs-bg));
  border: 1px solid rgba(212,175,55,0.2);
}

.layout-vegas .game-info-value {
  color: var(--cs-gold);
}

/* ===== ARTICLE CONTENT — Gold Headings ===== */
.layout-vegas .article-content h2 {
  color: var(--cs-gold);
  padding-left: 20px;
  border-left: 4px solid var(--cs-gold);
  position: relative;
}

.layout-vegas .article-content h3 {
  color: var(--cs-text);
}

.layout-vegas .article-content a {
  color: var(--cs-gold);
}
.layout-vegas .article-content a:hover {
  color: var(--cs-gold-light);
}

.layout-vegas .article-content img {
  border: 1px solid var(--cs-gold-dark);
}

.layout-vegas .article-content th {
  background: var(--cs-surface);
  color: var(--cs-gold);
}

.layout-vegas .article-content blockquote {
  border-left-color: var(--cs-gold);
}

/* ===== YOUTUBE — Gold Border ===== */
.layout-vegas .vegas-youtube {
  border: 2px solid var(--cs-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.15);
}

/* ===== AUTHOR BOX — Gold Accent ===== */
.layout-vegas .author-box {
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 0 20px rgba(212,175,55,0.08);
}

.layout-vegas .author-title-badge {
  background: linear-gradient(135deg, var(--cs-gold), var(--cs-gold-dark));
  color: #1a0a2e;
}

.layout-vegas .author-bio a {
  color: var(--cs-gold);
}

.layout-vegas .author-social a:hover {
  color: var(--cs-gold);
}

/* ===== STICKY BAR — Floating Rounded Gold ===== */
.layout-vegas .sticky-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  width: auto;
  max-width: calc(100vw - 32px);
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--cs-gold);
  border-radius: 50px;
  border-top: 2px solid var(--cs-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.15);
  padding: 11px clamp(16px, 3vw, 32px);
}

.layout-vegas .sticky-cta {
  color: #1a0a2e;
  background: linear-gradient(135deg, var(--cs-gold-light), var(--cs-gold));
  border-radius: 40px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}
.layout-vegas .sticky-cta::after {
  display: none;
}
.layout-vegas .sticky-cta:hover {
  color: #1a0a2e;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
}

.layout-vegas .sticky-online {
  color: var(--cs-gold-light);
}

@media (max-width: 600px) {
  .layout-vegas .sticky-bar {
    bottom: 12px;
    max-width: calc(100vw - 24px);
    padding: 10px 16px;
  }
  .layout-vegas .sticky-country { display: none; }
  .layout-vegas .sticky-online { display: none; }
  .layout-vegas .sticky-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ===== EXIT POPUP — Gold Luxury Modal ===== */
.layout-vegas .popup-overlay {
  background: rgba(10, 4, 20, 0.85);
  backdrop-filter: blur(6px);
}

.layout-vegas .popup-content {
  background: linear-gradient(165deg, #1a0a2e 0%, #0f0520 100%);
  border: 2px solid var(--cs-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.15);
}

/* Double border ornate effect */
.layout-vegas .popup-content::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  pointer-events: none;
}

/* Corner ornament */
.layout-vegas .popup-content::after {
  content: '\2726';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: var(--cs-gold);
  text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.layout-vegas .popup-close {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  color: var(--cs-gold);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-vegas .popup-close:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--cs-gold);
  transform: rotate(90deg);
}

.layout-vegas .popup-title {
  background: linear-gradient(135deg, var(--cs-gold-light), var(--cs-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.layout-vegas .popup-bonus {
  color: var(--cs-gold);
  background: linear-gradient(135deg, var(--cs-gold-light) 0%, var(--cs-gold) 40%, #fff 60%, var(--cs-gold) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
  text-shadow: none;
}

.layout-vegas .popup-cta-btn {
  animation: none !important;
}

/* ===== FOOTER — Gold Accents ===== */
.layout-vegas .site-footer {
  border-top-color: rgba(212,175,55,0.15);
  background: linear-gradient(180deg, var(--cs-bg), #0a0412);
}

.layout-vegas .age-warning {
  border-color: rgba(212,175,55,0.3);
  color: var(--cs-gold);
}

.layout-vegas .trustpilot-btn {
  color: var(--cs-gold);
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.25);
}
.layout-vegas .trustpilot-btn:hover {
  background: rgba(212,175,55,0.12);
  color: var(--cs-gold-light);
}

.layout-vegas .star.full {
  color: var(--cs-gold);
}
.layout-vegas .star.half {
  color: var(--cs-gold);
}

/* ===== FINAL CTA SECTION ===== */
.layout-vegas .trustpilot-section {
  background: var(--cs-surface);
}

/* ===== RESPONSIVE — Hero ===== */
@media (max-width: 768px) {
  .layout-vegas .vegas-hero {
    min-height: auto;
    padding: 40px 16px 30px;
    text-align: center;
  }
  .layout-vegas .vegas-title {
    text-align: center;
  }
  .layout-vegas .hero-subtitle {
    text-align: center;
  }
  .layout-vegas .vegas-cta-group {
    justify-content: center;
  }
  .layout-vegas .vegas-badges {
    justify-content: center;
  }
  .layout-vegas .vegas-hero-two-col {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .layout-vegas .cta-primary,
  .layout-vegas .cta-secondary {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
  .layout-vegas .vegas-badges .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}
