/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1a1a2e;
  background: #f8f9fa;
}
a { color: #e94560; text-decoration: none; transition: color .2s; }
a:hover { color: #c81e45; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* === UTILITY === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .5px;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #e94560; color: #fff; }
.btn-primary:hover { background: #c81e45; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(233,69,96,.4); }
.btn-secondary { background: #16213e; color: #fff; }
.btn-secondary:hover { background: #0f3460; color: #fff; }
.btn-outline { background: transparent; border: 2px solid #e94560; color: #e94560; }
.btn-outline:hover { background: #e94560; color: #fff; }

/* === HEADER / NAV === */
.site-header {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span { color: #e94560; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: .3s;
}
.nav-menu {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-menu a {
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #fff;
  background: rgba(233,69,96,.2);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero h1 span { color: #e94560; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin: 0 auto 30px;
}

/* === META BOX === */
.meta-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #e94560;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.meta-box .meta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #16213e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.meta-box .meta-info { font-size: .9rem; color: #555; }
.meta-box .meta-info strong { color: #1a1a2e; }
.meta-box .meta-info span { margin: 0 8px; color: #ccc; }

/* === COMPARISON TABLE === */
.table-wrapper { overflow-x: auto; margin: 30px 0; }
.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}
.casino-table thead th {
  background: #16213e;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.casino-table tbody tr {
  cursor: pointer;
  transition: all .2s;
  border-bottom: 1px solid #f0f0f0;
}
.casino-table tbody tr:hover {
  background: #fef4f6;
  transform: scale(1.005);
}
.casino-table tbody td {
  padding: 18px 20px;
  font-size: .95rem;
}
.casino-table tbody td:first-child { font-weight: 700; }
.casino-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  margin-right: 10px;
}
.casino-bonus { color: #e94560; font-weight: 600; }
.visit-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #e94560;
  color: #fff;
  border-radius: 5px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}
.visit-btn:hover { background: #c81e45; color: #fff; }

/* Mobile cards for table */
.casino-cards { display: none; }
.casino-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
  border-left: 4px solid #e94560;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.casino-card:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,.12); color: inherit; }
.casino-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.casino-card-name { font-size: 1.1rem; font-weight: 700; }
.casino-card-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.casino-card-bonus {
  font-size: 1rem;
  color: #e94560;
  font-weight: 600;
  margin-bottom: 8px;
}
.casino-card-detail { font-size: .88rem; color: #666; margin-bottom: 4px; }
.casino-card .visit-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 12px;
}

/* === CONTENT SECTIONS === */
.content-section {
  padding: 60px 0;
}
.content-section:nth-child(even) { background: #fff; }
.content-section h2 {
  font-size: 1.8rem;
  color: #16213e;
  margin-bottom: 16px;
  font-weight: 700;
}
.content-section h3 {
  font-size: 1.3rem;
  color: #16213e;
  margin-bottom: 12px;
  margin-top: 24px;
  font-weight: 600;
}
.content-section p {
  color: #444;
  margin-bottom: 16px;
  max-width: 800px;
}
.content-section ul {
  margin: 16px 0;
  padding-left: 0;
}
.content-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #444;
}
.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e94560;
  font-weight: 700;
}

/* === CASINO REVIEW CARDS (inner page) === */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  border-top: 4px solid #e94560;
}
.review-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 8px;
}
.review-card .review-bonus {
  font-size: 1.1rem;
  color: #e94560;
  font-weight: 700;
  margin-bottom: 16px;
}
.review-card .review-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.review-card .review-detail {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
}
.review-card .review-detail strong { display: block; font-size: .8rem; text-transform: uppercase; color: #888; margin-bottom: 4px; }
.review-card .review-cta { margin-top: 20px; }

/* === ABOUT / TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,.07);
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e94560, #c81e45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role { color: #e94560; font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.team-card p { font-size: .9rem; color: #666; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 15px rgba(0,0,0,.07);
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fef4f6;
  color: #e94560;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item span { color: #666; font-size: .9rem; }
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 15px rgba(0,0,0,.07);
}
.contact-form h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: #333;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: #e94560;
  box-shadow: 0 0 0 3px rgba(233,69,96,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* === PRIVACY / LEGAL === */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 12px; }
.legal-content p { margin-bottom: 14px; color: #555; line-height: 1.8; }
.legal-content ul { margin: 12px 0 12px 0; }
.legal-content ul li { padding-left: 24px; margin-bottom: 8px; color: #555; position: relative; }
.legal-content ul li::before { content: '•'; position: absolute; left: 8px; color: #e94560; font-weight: 700; }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.8;
}
.footer-col a { display: block; margin-bottom: 6px; transition: color .2s; }
.footer-col a:hover { color: #e94560; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .88rem;
}
.footer-contact-item .fc-icon {
  color: #e94560;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-map {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 0;
}
.footer-responsible {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
}
.footer-responsible p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.footer-responsible a {
  color: rgba(255,255,255,.6);
  margin: 0 10px;
  font-size: .82rem;
}
.footer-responsible a:hover { color: #e94560; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .review-card .review-details { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #16213e;
    flex-direction: column;
    padding: 10px 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; width: 100%; }
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 50px 0 40px; }
  .content-section { padding: 40px 0; }
  .content-section h2 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .meta-box { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Table to cards on mobile */
  .table-wrapper { display: none; }
  .casino-cards { display: block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .btn { padding: 10px 20px; font-size: .85rem; }
  .team-grid { grid-template-columns: 1fr; }
}
