/* ============================================
   ROOPOKIES - Review & Safety Page
   Mobile-First, Responsive, Performance-Optimized
   ============================================ */

/* CSS Variables - Color Scheme */
:root {
  --bg-main: #060714;
  --bg-section: #0e1024;
  --bg-card: #171a36;
  --accent-primary: #f5a623;
  --accent-secondary: #b24bff;
  --accent-cta: #ff4b6e;
  --text-main: #ffffff;
  --text-muted: #a0a3b1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-glow: rgba(245, 166, 35, 0.3);
  --shadow-glow-secondary: rgba(178, 75, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Ubuntu', 'Roboto', 'Oxygen', 'Cantarell', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-menu span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
}

.hamburger-menu span:nth-child(1) {
  top: 12px;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 12px;
}

.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.hamburger-menu.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.logo {
  justify-self: center;
  grid-column: 2;
}

.logo img {
  height: 50px;
  width: auto;
}

.navbar-spacer {
  display: none;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Show menu when active on all screen sizes */
.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(6, 7, 20, 0.98);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.navbar-menu li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
  color: var(--text-main);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: rgba(14, 16, 36, 0.8);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-primary);
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-item:last-child {
  color: var(--accent-primary);
}

/* ============================================
   REVIEW HERO SECTION
   ============================================ */

.review-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-main) 100%);
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.review-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.review-hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-hero-left p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risk-badge {
  margin-top: 2rem;
}

.badge-label {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-cta), #ff6b8a);
  color: var(--text-main);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 75, 110, 0.3);
}

.review-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
}

.review-score-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.safety-meter {
  margin-bottom: 2rem;
}

.meter-bar {
  width: 100%;
  height: 30px;
  background: var(--bg-section);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.meter-fill {
  height: 100%;
  border-radius: 15px;
  transition: width 0.5s ease;
}

.meter-low {
  width: 25%;
  background: linear-gradient(90deg, var(--accent-cta), #ff6b8a);
}

.meter-high {
  width: 85%;
  background: linear-gradient(90deg, var(--accent-primary), #ff8c42);
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.score-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.score-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.score-features li:last-child {
  border-bottom: none;
}

.score-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* ============================================
   REVIEW SECTIONS
   ============================================ */

.review-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.review-section--dark {
  background: var(--bg-section);
}

.review-section--highlight {
  background: var(--bg-section);
  border-top: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.1);
}

.review-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-main);
  line-height: 1.2;
}

.review-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.review-content {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.review-content p,
.review-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
  text-align-last: left;
}

.review-content ul,
.review-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.review-content li,
.review-section li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  line-height: 1.7;
}

.review-content li::before,
.review-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.review-content strong,
.review-section strong {
  color: var(--text-main);
}

/* What Is Roopokies Section - Professional Layout */
.what-is-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.what-is-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.what-is-intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.what-is-intro-card p {
  margin-bottom: 1rem;
}

.what-is-intro-card ul {
  margin: 1rem 0;
}

.what-is-warning-card {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid var(--accent-primary);
  border-radius: 12px;
  padding: 2rem;
}

.what-is-warning-card p {
  margin-bottom: 1rem;
}

.what-is-warning-card ul {
  margin: 1rem 0;
}

.what-is-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.what-is-main-image {
  border-radius: 12px;
  overflow: hidden;
}

.what-is-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.info-cards-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.info-card-compact:hover {
  transform: translateX(5px);
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2);
}

.info-card-compact img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-section);
  padding: 0.5rem;
}

.info-card-compact h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin: 0;
  font-weight: 600;
}

/* Games Experience */
.games-experience-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateX(8px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 1rem;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  margin: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

/* Safety Section */
.safety-content {
  margin-bottom: 3rem;
}

.safety-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.safety-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.safety-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.safety-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.safety-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.safety-card li:last-child {
  border-bottom: none;
}

.safety-card li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--accent-cta);
}

.safety-callout {
  background: rgba(245, 166, 35, 0.1);
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.safety-callout p {
  margin: 0;
  color: var(--text-main);
  font-size: 1.1rem;
}

/* Bonuses Section - Professional Layout */
.bonuses-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bonuses-main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonuses-intro {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.bonuses-intro p {
  margin-bottom: 1rem;
}

.bonuses-intro ul {
  margin: 1rem 0;
}

.bonuses-guide {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.bonuses-guide h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.bonuses-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.bonuses-banner {
  border-radius: 12px;
  overflow: hidden;
}

.bonuses-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bonuses-cards-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.bonus-card-compact:hover {
  transform: translateX(5px);
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2);
}

.bonus-card-compact img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.bonus-card-content {
  flex: 1;
}

.bonus-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.bonus-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Banking Steps */
.banking-intro-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.banking-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.banking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.banking-step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.banking-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  color: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.banking-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.banking-step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.banking-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.tips-column {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.tips-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.tips-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-column li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.tips-column li:last-child {
  border-bottom: none;
}

.tips-column li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.banking-warning {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 75, 110, 0.1);
  border: 1px solid var(--accent-cta);
  border-radius: 12px;
}

.banking-warning h3 {
  color: var(--accent-cta);
  margin-top: 0;
}

/* Mobile App Section - Professional Layout */
.mobile-app-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mobile-app-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-app-intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.mobile-app-intro-card p {
  margin-bottom: 1rem;
}

.mobile-app-intro-card ul {
  margin: 1rem 0;
}

.mobile-app-tips-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.mobile-app-tips-card p {
  margin-bottom: 1rem;
}

.mobile-app-tips-card ul {
  margin: 1rem 0;
}

.mobile-app-visual-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.mobile-app-main-image {
  border-radius: 12px;
  overflow: hidden;
}

.mobile-app-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mobile-feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.mobile-feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.mobile-feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Support Section - Professional Layout */
.support-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.support-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.support-contact-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.support-contact-card p {
  margin-bottom: 1rem;
}

.support-contact-card ul {
  margin: 1rem 0;
}

.support-issues-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.support-issues-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.support-issues-card p {
  margin-bottom: 1rem;
}

.support-issues-card ul {
  margin: 1rem 0;
}

.support-note {
  padding: 1.5rem;
  background: rgba(245, 166, 35, 0.1);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
}

.support-note p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.support-visual-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.support-main-image {
  border-radius: 12px;
  overflow: hidden;
}

.support-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.support-cards-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-card-compact {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: start;
  transition: all 0.3s ease;
}

.support-card-compact:hover {
  transform: translateX(5px);
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2);
}

.support-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 10px;
}

.support-card-text {
  flex: 1;
}

.support-card-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.support-card-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Pros & Cons */
.pros-cons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.pros-column,
.cons-column {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.pros-column h3 {
  color: var(--accent-primary);
  margin-top: 0;
}

.cons-column h3 {
  color: var(--accent-cta);
  margin-top: 0;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.7;
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.icon-plus,
.icon-warning {
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-plus {
  color: var(--accent-primary);
}

.icon-warning {
  color: var(--accent-cta);
}

/* Verdict */
/* Verdict Section - Professional Layout */
.verdict-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.verdict-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.verdict-summary-card p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
  line-height: 1.8;
}

.verdict-guidance-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.verdict-guidance-card p {
  margin-bottom: 1rem;
}

.verdict-guidance-card ul {
  margin: 1rem 0;
}

.verdict-guidance-card li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.verdict-note {
  padding: 1.5rem;
  background: rgba(255, 75, 110, 0.1);
  border: 2px solid var(--accent-cta);
  border-radius: 12px;
}

.verdict-note p {
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

.verdict-visual-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.verdict-summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
}

.verdict-summary-box h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-align: center;
}

.verdict-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verdict-point-item {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.verdict-point-item:hover {
  transform: translateX(5px);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid var(--accent-primary);
}

.verdict-point-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 10px;
}

.verdict-point-text {
  flex: 1;
}

.verdict-point-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.verdict-point-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-item summary {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.age-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-cta), #ff6b8a);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gamble-responsibly {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hamburger-menu {
    display: flex;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-menu.active {
    display: flex;
    flex-direction: column;
  }

  .review-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .review-score-card {
    position: static;
  }

  .what-is-layout {
    grid-template-columns: 1fr;
  }

  .what-is-visual {
    position: static;
  }

  .info-card-compact {
    flex-direction: column;
    text-align: center;
  }

  .info-card-compact img {
    width: 100px;
    height: 100px;
  }

  .support-intro-image {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .games-experience-content,
  .mobile-app-layout,
  .pros-cons-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mobile-app-visual-side {
    position: static;
  }

  .mobile-features-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid,
  .banking-tips-grid {
    grid-template-columns: 1fr;
  }

  .banking-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-layout {
    grid-template-columns: 1fr;
  }

  .bonuses-visual {
    position: static;
  }

  .bonus-card-compact {
    flex-direction: column;
    text-align: center;
  }

  .bonus-card-compact img {
    width: 100%;
    height: 150px;
  }

  .support-layout,
  .verdict-layout {
    grid-template-columns: 1fr;
  }

  .support-visual-side,
  .verdict-visual-side {
    position: static;
  }

  .support-card-compact {
    flex-direction: column;
    text-align: center;
  }

  .support-card-icon {
    margin: 0 auto;
  }

  .verdict-point-item {
    flex-direction: column;
    text-align: center;
  }

  .verdict-point-icon {
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .review-hero {
    padding: 4rem 0 3rem;
  }

  .review-hero-content {
    grid-template-columns: 1fr;
  }

  .review-hero-left h1 {
    font-size: 2rem;
  }

  .review-section h2 {
    font-size: 2rem;
  }

  .banking-steps {
    grid-template-columns: 1fr;
  }

  .review-content-section {
    padding: 3rem 0;
  }

  .content-placeholder {
    padding: 2rem;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    max-height: 100vh;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: flex !important;
    list-style: none;
    margin: 0;
  }

  .navbar-menu.active {
    transform: translateX(0);
    display: flex !important;
  }

  .navbar-menu li {
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--border-soft);
    margin: 0;
    padding: 0;
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li a {
    display: block;
    padding: 1.25rem 1rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
  }

  .navbar-menu li a:hover,
  .navbar-menu li a.active {
    color: var(--accent-primary);
    background: rgba(245, 166, 35, 0.05);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .review-hero h1 {
    font-size: 1.75rem;
  }

  .content-placeholder {
    padding: 1.5rem;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

