@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --background: hsl(160, 30%, 6%);
  --foreground: hsl(45, 30%, 95%);
  --card: hsl(160, 25%, 10%);
  --card-foreground: hsl(45, 30%, 95%);
  --popover: hsl(160, 25%, 8%);
  --popover-foreground: hsl(45, 30%, 95%);
  --primary: hsl(160, 50%, 35%);
  --primary-foreground: hsl(45, 30%, 98%);
  --secondary: hsl(160, 20%, 15%);
  --secondary-foreground: hsl(45, 30%, 90%);
  --muted: hsl(160, 15%, 20%);
  --muted-foreground: hsl(160, 10%, 60%);
  --accent: hsl(45, 80%, 55%);
  --accent-foreground: hsl(160, 30%, 6%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(160, 20%, 18%);
  --ring: hsl(160, 50%, 40%);
  --radius: 0.75rem;
  --gold: hsl(45, 80%, 55%);
  --gold-light: hsl(45, 70%, 70%);
  --emerald: hsl(160, 50%, 35%);
  --emerald-light: hsl(160, 45%, 45%);
  --emerald-dark: hsl(160, 40%, 20%);
  --gradient-hero: linear-gradient(135deg, hsl(160, 30%, 8%) 0%, hsl(160, 25%, 12%) 50%, hsl(160, 20%, 6%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(160, 25%, 12%) 0%, hsl(160, 30%, 8%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(45, 80%, 55%) 0%, hsl(35, 85%, 45%) 100%);
  --gradient-emerald: linear-gradient(135deg, hsl(160, 50%, 35%) 0%, hsl(160, 45%, 25%) 100%);
  --shadow-glow: 0 0 60px hsla(160, 50%, 35%, 0.2);
  --shadow-gold: 0 4px 30px hsla(45, 80%, 55%, 0.3);
  --shadow-card: 0 10px 40px hsla(160, 30%, 6%, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* Text Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(45, 80%, 55%) 0%, hsl(35, 85%, 65%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, hsl(160, 50%, 45%) 0%, hsl(160, 45%, 35%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Gradients */
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-card { background: var(--gradient-card); }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-emerald { background: var(--gradient-emerald); }

/* Shadows */
.glow-emerald { box-shadow: var(--shadow-glow); }
.glow-gold { box-shadow: var(--shadow-gold); }
.card-shadow { box-shadow: var(--shadow-card); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(160, 30%, 6%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(160, 20%, 18%, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta { display: block; }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* Utility classes */
.hidden {
  display: none !important;
}

.mobile-menu {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid hsla(160, 50%, 35%, 0.5);
  color: var(--foreground);
}

.btn-outline:hover {
  background: hsla(160, 50%, 35%, 0.1);
}

.btn-emerald {
  background: var(--gradient-emerald);
  color: var(--primary-foreground);
}

.btn-emerald:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: hsla(160, 20%, 15%, 0.5);
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  color: var(--foreground);
}

.btn-secondary:hover {
  background: var(--secondary);
}

.btn-red {
  background: hsl(0, 70%, 45%);
  color: white;
}

.btn-red:hover {
  background: hsl(0, 70%, 40%);
}

.btn-disabled {
  background: hsla(160, 20%, 15%, 0.3);
  border: 1px solid hsla(160, 20%, 18%, 0.3);
  color: var(--muted-foreground);
  cursor: not-allowed;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-decoration-1 {
  top: 25%;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  background: hsla(160, 50%, 35%, 0.1);
}

.hero-decoration-2 {
  bottom: 25%;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background: hsla(45, 80%, 55%, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-features { gap: 2rem; }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald-light);
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--foreground);
}

.hero-scroll span {
  font-size: 0.75rem;
}

.hero-scroll svg {
  width: 1rem;
  height: 1rem;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg {
  position: absolute;
  inset: 0;
}

.section-bg-hero {
  background: var(--gradient-hero);
  opacity: 0.5;
}

.section-bg-hero-light {
  background: var(--gradient-hero);
  opacity: 0.3;
}

.section-bg-card {
  background: hsla(160, 25%, 10%, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 3rem; }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-content {
  position: relative;
  z-index: 10;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

/* Room Cards */
.room-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-card);
}

.room-card:hover {
  border-color: hsla(160, 50%, 35%, 0.5);
}

.room-card-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 700;
  font-size: 0.875rem;
}

.room-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  margin-bottom: 1rem;
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.room-card-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.room-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.room-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.room-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-card-stars {
  display: flex;
  gap: 0.125rem;
}

.room-card-stars svg {
  width: 1rem;
  height: 1rem;
}

.star-filled {
  fill: var(--gold);
  color: var(--gold);
}

.star-half {
  fill: hsla(45, 80%, 55%, 0.5);
  color: var(--gold);
}

.star-empty {
  fill: none;
  color: hsla(160, 10%, 60%, 0.3);
}

.room-card-rating-num {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.room-card-bonus {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(45, 80%, 55%) 0%, hsl(35, 85%, 65%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.room-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.room-card-features {
  list-style: none;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.room-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(45, 30%, 95%, 0.8);
  margin-bottom: 0.5rem;
}

.room-card-features li::before {
  content: '•';
  color: var(--emerald-light);
  margin-top: 0.125rem;
}

.room-card-promo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsla(160, 20%, 15%, 0.5);
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  margin-bottom: 1rem;
}

.room-card-promo-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.room-card-promo-code {
  font-family: monospace;
  font-weight: 600;
  flex: 1;
}

.room-card-promo-code.has-code {
  color: var(--gold);
}

.room-card-promo-code.no-code {
  color: var(--muted-foreground);
}

.room-card-promo-copy {
  padding: 0.375rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.2s;
}

.room-card-promo-copy:hover {
  background: var(--muted);
}

.room-card-promo-copy svg {
  width: 1rem;
  height: 1rem;
}

.room-card-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.room-card-buttons .btn {
  flex: 1;
  padding: 0.75rem 1rem;
}

/* Criteria Cards */
.criteria-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.3s;
}

.criteria-card:hover {
  border-color: hsla(160, 50%, 35%, 0.3);
}

.criteria-card-badge {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 700;
  font-size: 0.875rem;
}

.criteria-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.criteria-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.criteria-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.criteria-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Review Cards */
.review-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 2rem;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: hsla(160, 50%, 35%, 0.3);
}

.review-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.review-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.review-card-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Bonus Cards */
.bonus-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  transition: all 0.3s;
}

.bonus-card-default {
  background: var(--gradient-card);
}

.bonus-card-default:hover {
  border-color: hsla(160, 50%, 35%, 0.3);
}

.bonus-card-highlight {
  background: var(--gradient-gold);
  border-color: hsla(45, 80%, 55%, 0.5);
  color: var(--accent-foreground);
}

.bonus-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--emerald-dark);
  color: var(--emerald-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.bonus-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.bonus-card-icon-default {
  background: var(--gradient-emerald);
}

.bonus-card-icon-highlight {
  background: hsla(160, 30%, 6%, 0.2);
}

.bonus-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bonus-card-icon-default svg {
  color: var(--primary-foreground);
}

.bonus-card-icon-highlight svg {
  color: var(--accent-foreground);
}

.bonus-card-room {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bonus-card-room-default {
  color: var(--muted-foreground);
}

.bonus-card-room-highlight {
  color: hsla(160, 30%, 6%, 0.8);
}

.bonus-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bonus-card p {
  font-size: 0.875rem;
}

.bonus-card-desc-default {
  color: var(--muted-foreground);
}

.bonus-card-desc-highlight {
  color: hsla(160, 30%, 6%, 0.8);
}

/* FAQ Accordion */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid hsla(160, 20%, 18%, 0.5);
  background: hsla(160, 25%, 10%, 0.3);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(160, 20%, 18%, 0.3);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: hsla(160, 10%, 60%, 0.6);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* 404 Page */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.not-found p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Review Page Styles */
.review-hero {
  padding: 8rem 0 3rem;
  position: relative;
  background: var(--gradient-hero);
}

.review-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.5;
}

.review-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.review-back:hover {
  color: var(--foreground);
}

.review-back svg {
  width: 1.25rem;
  height: 1.25rem;
}

.review-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .review-hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.review-hero-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.review-hero-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: var(--secondary);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .review-hero h1 { font-size: 2.5rem; }
}

.review-hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .review-hero-cta {
    align-items: flex-end;
  }
}

.review-promo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: hsla(160, 20%, 15%, 0.5);
  border-radius: 0.75rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
}

.review-promo-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-promo-code {
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}

.review-promo-copy {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.review-promo-copy:hover {
  background: var(--muted);
}

.review-promo-copy.copied {
  color: var(--emerald-light);
}

/* Review Content */
.review-content {
  padding: 3rem 0;
}

.review-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.review-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-block {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
}

.review-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-block-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--emerald-light);
}

.review-block-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.review-block p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-block p:last-child {
  margin-bottom: 0;
}

.review-block ul {
  list-style: none;
}

.review-block ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.review-block ul li::before {
  content: '✓';
  color: var(--emerald-light);
}

.review-lobby-img {
  border-radius: 0.75rem;
  border: 1px solid hsla(160, 20%, 18%, 0.3);
  overflow: hidden;
}

.review-lobby-img img {
  width: 100%;
  height: auto;
}

/* Rating Block */
.rating-block {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
}

.rating-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.rating-block-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-block-title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.rating-block-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.rating-block-help {
  position: relative;
  cursor: help;
}

.rating-block-help svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
}

.rating-block-help .tooltip {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 200px;
  padding: 0.75rem;
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  z-index: 10;
}

.rating-block-help:hover .tooltip {
  display: block;
}

.rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(160, 20%, 18%, 0.3);
}

.rating-item:last-child {
  border-bottom: none;
}

.rating-item-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.rating-item-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-item-stars {
  display: flex;
  gap: 0.125rem;
}

.rating-item-stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

.rating-item-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

/* CTA Bottom */
.review-cta-bottom {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 2rem;
  text-align: center;
}

.review-cta-bottom h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-cta-bottom-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: hsla(160, 20%, 15%, 0.5);
  border-radius: 0.75rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  margin-bottom: 1.5rem;
}

.review-cta-bottom .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Utility */
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }

/* ========================================
   REVIEW PAGE STYLES
   ======================================== */

.review-page {
  padding-top: 5rem;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--foreground);
}

/* Review Hero */
.review-hero {
  padding: 3rem 0;
  position: relative;
  background: var(--gradient-hero);
}

.review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--background) 100%);
  pointer-events: none;
}

.review-hero .container {
  position: relative;
  z-index: 1;
}

.review-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-hero-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Logo Card */
.review-logo-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .review-logo-card {
    width: 20rem;
    flex-shrink: 0;
  }
}

.review-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  margin-bottom: 1.5rem;
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
}

.review-logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.review-room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.review-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-rating .stars {
  display: flex;
  gap: 0.125rem;
}

.review-rating .star {
  color: var(--muted-foreground);
  opacity: 0.3;
}

.review-rating .star.filled {
  color: var(--gold);
  opacity: 1;
}

.review-rating .star.half {
  color: var(--gold);
  opacity: 0.5;
}

.review-rating .rating-value {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Quick Info */
.review-quick-info {
  flex: 1;
}

.review-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .review-title {
    font-size: 1.875rem;
  }
}

.review-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .quick-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Review Content */
.review-content {
  padding: 4rem 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Review Main */
.review-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Review Card */
.review-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.review-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.review-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(160, 50%, 35%, 0.2);
  color: var(--primary);
}

.review-card-icon.gold {
  background: var(--gradient-gold);
  color: var(--accent-foreground);
}

.review-card-icon.emerald {
  background: var(--gradient-emerald);
  color: var(--primary-foreground);
}

.review-card-icon.red {
  background: hsla(0, 84%, 60%, 0.2);
  color: var(--destructive);
}

.review-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Bonus Items */
.bonus-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-item {
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
}

.bonus-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bonus-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Promo Code Button */
.promo-code-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-gold);
  border: none;
  border-radius: 0.5rem;
  color: var(--accent-foreground);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-bottom: 0.5rem;
}

.promo-code-btn:hover {
  opacity: 0.9;
}

.promo-code-btn .code {
  font-family: monospace;
  font-size: 1.125rem;
}

.promo-code-btn .check-icon {
  display: none;
}

.promo-code-btn.copied .copy-icon {
  display: none;
}

.promo-code-btn.copied .check-icon {
  display: block;
}

/* Rakeback Levels */
.rakeback-levels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .rakeback-levels {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rakeback-level {
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.level-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.level-name {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Network Stats */
.network-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.network-stat {
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.network-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.network-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.games-grid h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.games-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.games-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.games-list .bullet {
  color: var(--emerald-light);
}

/* Lobby Screenshot */
.lobby-screenshot {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsla(160, 20%, 18%, 0.3);
}

.lobby-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Rake Table */
.rake-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.rake-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
  border-bottom: 1px solid hsla(160, 20%, 18%, 0.5);
}

.rake-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(160, 20%, 18%, 0.3);
}

/* Review Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Sidebar Card */
.sidebar-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  padding: 1.5rem;
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-card-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.sidebar-card-header svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sidebar-card-header .icon-emerald {
  color: var(--emerald-light);
}

.sidebar-card-header .icon-gold {
  color: var(--gold);
}

.sidebar-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.license-number {
  background: hsla(160, 20%, 15%, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.license-number .label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.license-number .value {
  font-weight: 600;
  font-size: 0.875rem;
}

.license-note {
  font-size: 0.75rem !important;
  opacity: 0.7;
}

/* Payment List */
.payment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.payment-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.payment-list .check {
  font-size: 0.875rem;
}

.payment-list .check.emerald {
  color: var(--emerald-light);
}

.payment-list .check.gold {
  color: var(--gold);
}

.payment-note {
  font-size: 0.75rem !important;
  color: var(--muted-foreground);
}

.payment-warning {
  font-size: 0.75rem !important;
  color: var(--destructive);
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Speed List */
.speed-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.speed-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.speed-item span:first-child {
  color: var(--muted-foreground);
}

.speed-value {
  font-weight: 500;
}

/* Fee Info */
.fee-info {
  padding-top: 1rem;
  border-top: 1px solid hsla(160, 20%, 18%, 0.3);
}

.fee-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.fee-item span:first-child {
  color: var(--muted-foreground);
}

.fee-value {
  font-weight: 500;
}

.fee-value.emerald {
  color: var(--emerald-light);
}

/* Rating Bars */
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex: 1;
  min-width: 0;
}

.rating-bar-wrapper {
  width: 6rem;
  height: 0.5rem;
  background: hsla(160, 20%, 15%, 0.5);
  border-radius: 9999px;
  overflow: hidden;
}

.rating-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 9999px;
}

.rating-score {
  font-size: 0.875rem;
  font-weight: 600;
  width: 2rem;
  text-align: right;
}

/* Review CTA */
.review-cta {
  padding: 4rem 0;
  position: relative;
  background: var(--gradient-hero);
}

.review-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--background) 0%, transparent 50%, var(--background) 100%);
  pointer-events: none;
  opacity: 0.5;
}

.review-cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

.cta-content > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* CTA Promo */
.cta-promo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-card);
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.promo-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.promo-value {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.promo-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(160, 20%, 15%, 0.5);
  border: 1px solid hsla(160, 20%, 18%, 0.5);
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}

.promo-copy-btn:hover {
  background: hsla(160, 20%, 20%, 0.5);
}

.promo-copy-btn .check-icon {
  display: none;
}

.promo-copy-btn.copied .copy-icon {
  display: none;
}

.promo-copy-btn.copied .check-icon {
  display: block;
}

.promo-copy-btn.copied {
  color: var(--emerald-light);
}

.promo-copy-btn.copied .btn-text {
  color: var(--emerald-light);
}

/* Hidden utility */
.hidden {
  display: none !important;
}
