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

:root {
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --bg-dark: #0f0f23;
  --bg-card: #1a1a2e;
  --bg-card-hover: #252542;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --border: #2a2a3e;
  --success: #10b981;
  --danger: #ef4444;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* Navbar */
.navbar {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: white;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.85) 0%, rgba(26, 26, 46, 0.95) 100%),
              url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920&q=80') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

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

.hero-content {
  max-width: 700px;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-block;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-discord {
  background: #5865F2;
  color: white;
  border: none;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.hero-stats {
  display: flex;
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 28px;
}

.view-all {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.view-all:hover {
  color: var(--secondary);
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card.horizontal {
  display: grid;
  grid-template-columns: 300px 1fr;
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card.horizontal .news-image {
  height: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.news-content {
  padding: 20px;
}

.news-date {
  color: var(--text-muted);
  font-size: 12px;
}

.news-title {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.read-more:hover {
  color: var(--secondary);
}

/* Latest News Banner Section */
.latest-news-banner {
  background: var(--bg-card);
  padding: 50px 0;
}

.latest-news-banner .section-header {
  margin-bottom: 25px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--danger);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.headline-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.headline-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.headline-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.headline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
}

.headline-overlay .news-category {
  position: static;
  display: inline-block;
  margin-bottom: 15px;
}

.headline-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: white;
}

.headline-excerpt {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.side-news {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

a.side-news-item,
.side-news-item {
  display: flex;
  gap: 15px;
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.side-news-item:hover {
  transform: translateX(5px);
  border-color: var(--primary);
}

.side-news-item img {
  width: 120px;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
}

.side-news-content {
  padding: 15px 15px 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-category-sm {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.side-news-content h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.side-news-content .news-date {
  font-size: 11px;
}

@media (max-width: 900px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }

  .headline-card {
    height: 350px;
  }

  .headline-title {
    font-size: 22px;
  }

  .side-news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.author {
  color: var(--text-muted);
  font-size: 13px;
}

/* Live Matches */
.matches-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.match-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  position: relative;
}

.match-card.live {
  border-color: var(--danger);
}

.live-badge, .upcoming-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.live-badge {
  background: var(--danger);
  color: white;
  animation: pulse 2s infinite;
}

.upcoming-badge {
  background: var(--bg-dark);
  color: var(--text-secondary);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.match-game {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.team-name {
  font-weight: 600;
  font-size: 14px;
}

.team-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.vs {
  color: var(--text-muted);
  font-size: 12px;
}

/* Casino Cards (Home Preview) */
.casino-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

.casino-card-mini {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.casino-card-mini:hover {
  transform: translateY(-3px);
}

.casino-card-mini img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.casino-info h4 {
  margin-bottom: 5px;
}

.casino-rating {
  margin-bottom: 8px;
}

.stars {
  color: var(--accent);
}

.casino-bonus {
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Gambling Page - Full Casino Cards */
.casinos-section .section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.casinos-section .section-intro h2 {
  margin-bottom: 15px;
}

.casinos-section .section-intro p {
  color: var(--text-secondary);
}

.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-card {
  display: grid;
  grid-template-columns: 60px 200px 1fr auto;
  gap: 25px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.casino-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.casino-rank {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-image img {
  width: 180px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.casino-details {
  padding: 0 20px;
}

.casino-name {
  font-size: 20px;
  margin-bottom: 10px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.casino-rating .stars {
  display: flex;
  gap: 2px;
}

.casino-rating .star {
  color: var(--text-muted);
}

.casino-rating .star.filled {
  color: var(--accent);
}

.rating-value {
  color: var(--text-secondary);
  font-size: 14px;
}

.casino-bonus-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.bonus-label {
  font-size: 12px;
  color: var(--text-muted);
}

.bonus-value {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

.casino-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.casino-features li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-secondary);
}

.casino-features .check {
  color: var(--success);
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-width: 150px;
}

.casino-actions .terms {
  font-size: 11px;
  color: var(--text-muted);
}

/* Betting Guide */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.guide-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.guide-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.guide-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsible Gaming */
.responsible-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.responsible-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.responsible-box p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.responsible-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.age-restriction {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

/* Page Headers */
.page-header {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  text-align: center;
}

.page-header.gambling-header {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), var(--bg-dark));
}

.page-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
}

/* News Filters */
.news-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover, .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Newsletter */
.newsletter-box {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}

.newsletter-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text-primary);
  border-radius: 8px;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.footer {
  background: var(--bg-card);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 5px;
}

.disclaimer {
  color: var(--accent);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 60px 1fr;
  }

  .casino-image {
    grid-column: span 2;
    order: -1;
  }

  .casino-actions {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .news-card.horizontal {
    grid-template-columns: 1fr;
  }

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

  .casino-preview {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-actions {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .responsible-links {
    flex-direction: column;
  }
}

/* Footer Licenses */
.footer-licenses {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.footer-licenses a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-licenses a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.license-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%) brightness(1.5);
  transition: filter 0.3s;
}

.footer-licenses a:hover .license-logo {
  filter: grayscale(0%) brightness(1);
}

/* Reviews Section on Gambling Page */
.reviews-section {
  background: var(--bg-card);
}

.reviews-section .section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-preview-card {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
}

.review-preview-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.review-preview-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.review-preview-content {
  padding: 20px;
}

.review-preview-content h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.review-preview-rating {
  margin-bottom: 12px;
}

.review-preview-rating .stars {
  color: var(--accent);
  font-size: 14px;
}

.read-review-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.review-preview-card:hover .read-review-link {
  color: var(--secondary);
}

/* Review Page Styles */
.review-header {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), var(--bg-dark));
  padding: 30px 0 60px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
}

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

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

.breadcrumb span {
  color: var(--text-secondary);
}

.review-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.review-hero-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--border);
}

.review-hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.review-rating-large {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.stars-large {
  display: flex;
  gap: 4px;
}

.stars-large .star {
  font-size: 24px;
  color: var(--text-muted);
}

.stars-large .star.filled {
  color: var(--accent);
}

.rating-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.review-bonus-highlight {
  background: var(--bg-card);
  border: 1px solid var(--success);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.bonus-tag {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.bonus-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--success);
}

.terms-small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Review Content Grid */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.review-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.review-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.review-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border);
}

.pros-box {
  border-top: 3px solid var(--success);
}

.cons-box {
  border-top: 3px solid var(--danger);
}

.pros-box h3, .cons-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 15px;
}

.pros-box h3 .icon {
  color: var(--success);
}

.cons-box h3 .icon {
  color: var(--danger);
}

.pros-box ul, .cons-box ul {
  list-style: none;
}

.pros-box ul li, .cons-box ul li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

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

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--success);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
}

.verdict-box p {
  margin-bottom: 20px;
}

.verdict-cta {
  text-align: center;
}

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

.sidebar-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.info-card {
  border: 2px solid var(--primary);
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-muted);
  font-size: 14px;
}

.info-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 20px;
}

/* Other Casinos in Sidebar */
.other-casinos {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.other-casino-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  background: var(--bg-dark);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.other-casino-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(5px);
}

.other-casino-item img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.other-casino-info {
  display: flex;
  flex-direction: column;
}

.other-casino-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.other-casino-rating {
  color: var(--accent);
  font-size: 13px;
}

/* Responsive for Review Page */
@media (max-width: 1024px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .review-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-hero-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .review-bonus-highlight {
    display: block;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-licenses {
    flex-wrap: wrap;
    gap: 25px;
  }

  .license-logo {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .review-hero-content h1 {
    font-size: 28px;
  }

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

/* Legal Pages Styles */
.legal-header {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.legal-content {
  padding: 40px 0 80px;
}

.legal-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 50px;
}

.legal-nav {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border);
}

.legal-nav h3 {
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-nav ul {
  list-style: none;
}

.legal-nav ul li {
  margin-bottom: 8px;
}

.legal-nav ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}

.legal-nav ul a:hover {
  color: var(--primary);
}

.legal-main {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
  font-size: 18px;
  margin: 25px 0 15px;
  color: var(--text-primary);
}

.legal-section h4 {
  font-size: 16px;
  margin: 15px 0 10px;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section ul li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-section ul li strong {
  color: var(--text-primary);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0;
}

.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

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

.cookie-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.cookie-type {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.cookie-type h4 {
  margin-top: 0;
  color: var(--primary);
}

.cookie-type p {
  margin: 0;
  font-size: 14px;
}

.contact-info {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.contact-info p {
  margin: 5px 0;
}

/* Responsible Gaming Page Styles */
.responsible-header {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.15), var(--bg-dark));
}

.responsible-intro .intro-box {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.intro-box h2 {
  margin-bottom: 20px;
}

.intro-box p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}

.warning-signs .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 40px;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.sign-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--danger);
}

.sign-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.sign-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.sign-card ul {
  list-style: none;
}

.sign-card ul li {
  color: var(--text-secondary);
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

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

.tips-section {
  background: var(--bg-card);
}

.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 30px auto 0;
}

.tip-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border);
}

.tip-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 40px;
}

.tip-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tip-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.tools-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.tool-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.help-section {
  background: var(--bg-card);
}

.help-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 40px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.help-card {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
}

.help-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.help-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.help-card > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.help-contact {
  list-style: none;
  text-align: left;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.help-contact li {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 5px 0;
}

.help-contact li strong {
  color: var(--text-primary);
}

.additional-resources {
  margin-top: 50px;
  text-align: center;
}

.additional-resources h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.resources-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px 25px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}

.resource-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.resource-link .arrow {
  transition: transform 0.3s;
}

.resource-link:hover .arrow {
  transform: translateX(5px);
}

.self-assessment {
  background: var(--bg-dark);
}

.assessment-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.assessment-box h2 {
  text-align: center;
  margin-bottom: 10px;
}

.assessment-box > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.question-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.question-mark {
  width: 35px;
  height: 35px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.question-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.assessment-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.assessment-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Responsive for Legal Pages */
@media (max-width: 1024px) {
  .legal-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: none;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .signs-grid,
  .tools-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

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

  .tip-number {
    margin: 0 auto;
  }

  .resources-list {
    flex-direction: column;
    align-items: center;
  }

  .assessment-box {
    padding: 25px;
  }

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

@media (max-width: 480px) {
  .legal-section h2 {
    font-size: 20px;
  }

  .intro-box {
    padding: 25px;
  }

  .help-card {
    padding: 20px;
  }
}
