:root {
  --primary: #ff6b6b;
  --primary-dark: #ee5a5a;
  --primary-glow: rgba(255, 107, 107, 0.35);
  --accent: #4ecdc4;
  --accent-secondary: #ffe66d;
  --bg-dark: #1a1a2e;
  --bg-card: #16213e;
  --bg-card-alt: #1f2b4d;
  --bg-footer: #0f0f23;
  --bg-footer-alt: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #a8b2c1;
  --text-muted: #6c7a8e;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-highlight: rgba(255, 107, 107, 0.4);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  --gradient-card: linear-gradient(145deg, #1f2b4d 0%, #16213e 100%);
  --gradient-button: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  --gradient-header: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 35px rgba(255, 107, 107, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(ellipse at 10% 20%, rgba(78, 205, 196, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  border: none;
}
.container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1140px;
    padding: 0 32px;
  }
}
.main-content {
  padding-top: 45px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .main-content {
    padding-top: 55px;
  }
}
h1 {
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 46px;
    margin-bottom: 36px;
  }
}
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .trust-badges {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}
.badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.casino-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}
.casino-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.casino-card:hover::before {
  opacity: 1;
}
.card-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.card-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gradient-header);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(78, 205, 196, 0.35);
}
.card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 24px;
  padding-top: 55px;
}
@media (min-width: 768px) {
  .card-inner {
    grid-template-columns: 180px 1fr 170px;
    gap: 28px;
    padding: 28px;
    padding-top: 28px;
    align-items: center;
  }
  .card-rank {
    position: relative;
    top: auto;
    left: auto;
    display: none;
  }
}
@media (min-width: 1024px) {
  .card-inner {
    grid-template-columns: 220px 1fr 200px;
    gap: 36px;
    padding: 32px 36px;
  }
}
.card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .card-left {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    border-right: 1px solid var(--border-color);
    padding-right: 28px;
  }
}
.brand-logo {
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img {
  height: 38px;
  width: auto;
}
@media (min-width: 1024px) {
  .brand-logo img {
    height: 44px;
  }
}
.rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stars-row {
  display: flex;
  gap: 4px;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--accent-secondary);
  filter: drop-shadow(0 0 5px rgba(255, 230, 109, 0.5));
}
.star.half {
  fill: url("#half-star-gradient");
}
@media (min-width: 1024px) {
  .star {
    width: 20px;
    height: 20px;
  }
}
.rating-score {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #d0d0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 1024px) {
  .rating-score {
    font-size: 44px;
  }
}
.rating-votes {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.card-center {
  padding: 0;
}
@media (min-width: 768px) {
  .card-center {
    padding: 0 10px;
  }
}
.bonus-tag {
  display: inline-block;
  background: rgba(78, 205, 196, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.bonus-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bonus-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .bonus-title {
    font-size: 28px;
    margin-bottom: 22px;
  }
}
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 500px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .features-list li {
    font-size: 14px;
  }
}
.features-list li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  flex-shrink: 0;
  margin-top: 2px;
}
.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  margin-top: 24px;
}
@media (min-width: 768px) {
  .card-right {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
    padding-left: 28px;
    border-left: 1px solid var(--border-color);
  }
}
.cta-button {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 190px;
  padding: 15px 30px;
  background: var(--gradient-button);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: var(--transition);
}
.cta-button:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px var(--primary-glow);
}
.cta-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.tc-apply {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}
.age-restriction {
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin: 28px 0 36px;
  opacity: 0.85;
}
.compliance-section {
  padding: 52px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.compliance-card {
  background: rgba(22, 33, 62, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.compliance-card:hover {
  border-color: var(--border-highlight);
  background: rgba(22, 33, 62, 0.9);
  transform: translateY(-3px);
}
.compliance-icon {
  width: 52px;
  height: 52px;
  background: rgba(78, 205, 196, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.compliance-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.compliance-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
@media (min-width: 1024px) {
  .compliance-card h3 {
    font-size: 17px;
  }
}
.compliance-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .compliance-card p {
    font-size: 14px;
  }
}
.site-footer {
  margin-top: auto;
}
.footer-main {
  background: var(--bg-footer-alt);
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
  }
}
.footer-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .footer-text {
    font-size: 13px;
  }
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-badges {
    justify-content: flex-end;
  }
}
.footer-badges img {
  max-height: 42px;
  opacity: 0.65;
  transition: var(--transition);
}
.footer-badges a:hover img {
  opacity: 1;
}
.footer-disclaimer {
  background: var(--bg-footer);
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
}
.disclaimer-text {
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .disclaimer-text {
    font-size: 13px;
  }
}
.footer-bottom {
  background: var(--bg-footer);
  padding: 22px 0;
  border-top: 1px solid var(--border-color);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-links {
    justify-content: space-around;
    margin-bottom: 12px;
  }
}
.footer-links a {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 400;
}
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  padding: 20px;
}
.age-modal.hidden {
  display: none;
}
.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.modal-content p {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-content p a {
  color: var(--accent);
  text-decoration: underline;
}
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-confirm,
.btn-deny {
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-confirm {
  background: var(--gradient-button);
  color: #fff;
}
.btn-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}
.btn-deny {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}
.btn-deny:hover {
  background: #f5f5f5;
  border-color: #bbb;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card-alt);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
::selection {
  background: rgba(255, 107, 107, 0.35);
  color: var(--text-primary);
}
.legal-page {
  padding-top: 55px;
  padding-bottom: 65px;
}
@media (min-width: 768px) {
  .legal-page {
    padding-top: 75px;
    padding-bottom: 85px;
  }
}
.legal-header {
  margin-bottom: 44px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  transition: var(--transition);
}
.back-link:hover {
  color: var(--primary-dark);
  gap: 14px;
}
.back-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.legal-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-align: left;
}
@media (min-width: 768px) {
  .legal-header h1 {
    font-size: 40px;
  }
}
.last-updated {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}
.legal-content {
  max-width: 800px;
}
.legal-content .intro-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-color);
}
@media (min-width: 768px) {
  .legal-content .intro-text {
    font-size: 18px;
  }
}
.legal-section {
  margin-bottom: 44px;
}
.legal-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 107, 107, 0.25);
}
@media (min-width: 768px) {
  .legal-section h2 {
    font-size: 24px;
  }
}
.legal-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 26px;
  margin-bottom: 14px;
}
.legal-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 22px;
  margin-bottom: 12px;
}
.legal-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .legal-section p {
    font-size: 16px;
  }
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  margin-top: 14px;
  margin-bottom: 18px;
  padding-left: 0;
}
.legal-section ul li {
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  padding-left: 26px;
}
@media (min-width: 768px) {
  .legal-section ul li {
    font-size: 16px;
  }
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.7;
}
.legal-section ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}
.legal-section a {
  color: var(--primary);
  transition: var(--transition);
}
.legal-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.legal-section ul ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.legal-section ul ul li::before {
  width: 6px;
  height: 6px;
  background: transparent;
  border: 2px solid var(--primary);
  opacity: 0.5;
}