
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #c73a52;
  --gold: #ffd700;
  --gold-dark: #daa520;
  --bg: #0f0f23;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222244;
  --text: #e0e0e0;
  --text-muted: #8888aa;
  --border: #2a2a4a;
  --success: #00c853;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Thai', 'Noto Sans Bengali', 'Noto Sans Myanmar', 'Noto Sans Sinhala', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.lang-switcher {
  background: var(--primary);
  padding: 6px 20px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}
.lang-switcher a {
  color: var(--text-muted);
  margin-left: 15px;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang-switcher a.active, .lang-switcher a:hover {
  color: var(--gold);
  background: rgba(255,215,0,0.1);
}
.site-header { position: sticky; top: 0; z-index: 100; }
.main-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0 20px;
  border-bottom: 2px solid var(--accent);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 8px 0;
}
.logo-img { height: 80px; width: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--accent);
  color: var(--white);
  font-size: 1.5rem;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item a {
  color: var(--text);
  padding: 15px 12px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-item a:hover, .nav-item.active > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-light);
  min-width: 220px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 200;
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: none;
}
.dropdown-menu li a:hover { background: rgba(233,69,96,0.1); }
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 60vh;
}
.breadcrumbs {
  padding: 12px 0;
  margin-bottom: 20px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.85rem;
}
.breadcrumbs li::after { content: ' ›'; color: var(--text-muted); margin-left: 5px; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li.current { color: var(--text-muted); }
.hero {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, rgba(233,69,96,0.1) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hero h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
  background: linear-gradient(to right, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.05rem; }
.casino-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.casino-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s;
  position: relative;
}
.casino-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.casino-card.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.05) 100%); }
.casino-rank {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 35px;
}
.casino-logo-wrap { width: 80px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.casino-logo { max-width: 80px; max-height: 60px; border-radius: var(--radius-sm); }
.casino-info { flex: 1; }
.casino-info h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.casino-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.star.full, .star.half { color: var(--gold); }
.star.empty { color: var(--text-muted); }
.rating-num { color: var(--text-muted); font-size: 0.85rem; }
.casino-bonus { color: var(--success); font-size: 0.9rem; }
.casino-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover { background: rgba(233,69,96,0.1); color: var(--accent); }
.btn-large { padding: 14px 30px; font-size: 1.05rem; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.how-we-rate {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 30px;
}
.how-we-rate h2 { color: var(--gold); margin-bottom: 15px; }
.rating-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.criteria-item {
  background: var(--primary-light);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.criteria-icon { font-size: 1.3rem; }
.evaluation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.evaluation-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.evaluation-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.05rem; }
.evaluation-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.review-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}
.review-header { display: flex; align-items: center; gap: 20px; }
.review-casino-logo { width: 100px; height: 100px; border-radius: var(--radius); object-fit: contain; background: white; padding: 10px; }
.review-header h1 { color: var(--white); margin-bottom: 5px; }
.casino-rating-large { font-size: 1.3rem; }
.casino-rating-large span { color: var(--text-muted); font-size: 0.9rem; }
.review-grid { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.review-main h2 { color: var(--gold); margin: 25px 0 15px; }
.review-main h2:first-child { margin-top: 0; }
.bonus-highlight {
  background: linear-gradient(135deg, rgba(233,69,96,0.15), rgba(255,215,0,0.1));
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  font-weight: 600;
}
.bonus-details {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  margin: 12px 0 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.review-text {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}
.game-info-bar {
  display: flex;
  gap: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 25px;
  margin-bottom: 30px;
}
.game-info-item {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.game-info-item strong {
  color: var(--gold);
}
.game-detail-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: start;
}
@media (max-width: 900px) {
  .game-detail-layout { grid-template-columns: 1fr; }
}
.bonus-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.bonus-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
.bonus-section h2 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.bonus-section p {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.game-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
.game-section h2 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.game-section-content {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.game-detail-sidebar {
  position: sticky;
  top: 20px;
}
.game-detail-sidebar h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.casino-bonus-text {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 3px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.info-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-table tr:hover { background: rgba(255,255,255,0.02); }
.highlights-list {
  list-style: none;
  padding: 0;
}
.highlights-list li {
  padding: 8px 0;
  color: var(--success);
  font-size: 0.95rem;
}
.game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.game-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s;
}
.game-info-card:hover {
  border-color: var(--gold);
}
.game-info-card h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.game-info-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.game-info-card strong {
  color: var(--text);
}
.casino-instructions {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.casino-instructions h2 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 1.5rem;
}
.instruction-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}
.instruction-section:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.instruction-section h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 15px;
}
.instruction-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.instruction-steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.instruction-steps li:last-child {
  border-bottom: none;
}
.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-text {
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 4px;
}
.instruction-tip {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 15px 20px;
  margin-top: 20px;
  color: var(--text-light);
  line-height: 1.6;
}
.cta-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  position: sticky;
  top: 80px;
}
.cta-box h3 { color: var(--white); margin-bottom: 10px; }
.cta-bonus { color: var(--gold); font-weight: 600; margin-bottom: 15px; }
.bonus-grid, .games-grid, .payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.bonus-card, .game-card, .payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}
.bonus-card:hover, .game-card:hover, .payment-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.game-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}
.bonus-card h3, .game-card h3, .payment-card h3 { color: var(--white); margin-bottom: 10px; }
.bonus-card h3 a, .game-card h3 a, .payment-card h3 a { color: var(--white); }
.bonus-card h3 a:hover, .game-card h3 a:hover, .payment-card h3 a:hover { color: var(--gold); }
.game-icon, .payment-icon { font-size: 2.5rem; margin-bottom: 10px; }
.casino-list.compact .casino-card { padding: 12px 15px; }
.casino-logo-sm { width: 50px; height: 40px; border-radius: var(--radius-sm); object-fit: contain; background: white; padding: 4px; }
.page-content { margin-bottom: 30px; }
.page-content h2 { color: var(--gold); margin-bottom: 15px; }
.legal-content { 
  background: var(--bg-card); 
  padding: 30px; 
  border-radius: var(--radius); 
  border: 1px solid var(--border); 
}
.legal-content h2 { margin-top: 25px; }
.legal-content p { margin-bottom: 15px; color: var(--text-muted); }
.site-footer {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  margin-top: 40px;
  padding: 40px 20px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.footer-section:last-of-type { border-bottom: none; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-logo { height: 80px; }
.footer-section h4 { color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.age-warning {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.gambling-warning { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.help-links { font-size: 0.85rem; }
.help-links a { color: var(--text-muted); }
.country-switcher { margin-top: 20px; }
.country-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.country-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.2s;
}
.country-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icon {
  color: var(--text-muted);
  transition: color 0.2s;
}
.social-icon:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.review-content { margin-bottom: 30px; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-light);
    border-top: 1px solid var(--border);
    padding: 10px 0;
  }
  .nav-menu.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.2);
    min-width: auto;
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .casino-card { flex-direction: column; text-align: center; }
  .casino-actions { flex-direction: row; }
  .review-grid { grid-template-columns: 1fr; }
  .review-header { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 1.5rem; }
  .evaluation-grid { grid-template-columns: 1fr; }
  .bonus-grid, .games-grid, .payments-grid { grid-template-columns: 1fr; }
}
