@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #ffb200;        /* warm gold */
  --accent-primary: #ff8c37;       /* brighter accent */
  --secondary-color: #0e1422;      /* deep navy */
  --third-color: #e6ecf5;          /* soft border/base */
  --text-primary: #0e1422;
  --text-secondary: #5a6072;
  --surface: #ffffff;
  --surface-soft: #f7f9fd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: var(--surface-soft);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--accent-primary);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}

.btn-register {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: #0e1422;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(255, 178, 0, 0.3);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-register:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--accent-primary);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #fff9ec 0%, #f2f5ff 100%);
  padding: 50px;
  top: 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 20, 34, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.hero-left h1 {
  font-size: 2.4rem;
  margin: 15px 0;
  color: var(--secondary-color);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  color: var(--secondary-color);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(14, 20, 34, 0.08);
}

.pill-outline {
  background: transparent;
  border-color: rgba(14, 20, 34, 0.15);
}

.review-intro {
  font-size: 1.05rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px 0;
  padding: 0;
}

.hero-list li {
  display: flex;
  gap: 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hero-list i {
  color: var(--accent-primary);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.rating-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(15, 20, 34, 0.09);
}

.rating-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.rating-card-score {
  font-size: 3.2rem;
  color: var(--secondary-color);
  font-weight: 800;
  line-height: 1;
}

.rating-card-stars {
  color: var(--accent-primary);
  display: flex;
  gap: 4px;
  font-size: 1.5rem;
}

.rating-card-label {
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin: 0;
}

.rating-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rating-mini {
  background: var(--surface-soft);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary-color);
}

.rating-mini span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.rating-mini strong {
  color: var(--accent-primary);
}

.rating-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 1.9rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-secondary);
}

.key-highlights,
.info-table-section,
.media-strip,
.bonus-offers,
.games-suite,
.banking-support,
.safety-fairness,
.ratings-breakdown,
.pros-cons,
.review-content,
.bonus-review,
.faq,
.review-verdict {
  margin-top: 40px;
  padding: 30px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--surface-soft);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 20, 34, 0.08);
  background: linear-gradient(180deg, rgba(255, 178, 0, 0.06) 0%, rgba(255, 140, 55, 0.04) 100%);
}

.highlight-card i {
  font-size: 1.6rem;
  color: var(--accent-primary);
}

.highlight-card h4 {
  color: var(--text-primary);
}

.highlight-card p {
  color: var(--text-secondary);
}

.info-table-section .table-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.info-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--secondary-color);
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  text-align: left;
}

.info-table tbody tr:nth-child(odd) {
  background: var(--surface-soft);
}

.info-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.info-table th {
  font-weight: 700;
  font-size: 0.95rem;
}

.info-table td {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.table-link {
  color: var(--accent-primary);
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.status-badge.success {
  background: rgba(34, 197, 94, 0.15);
  color: #1c8a52;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.status-badge.info {
  background: rgba(59, 130, 246, 0.12);
  color: #1f60c4;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.media-card {
  background: var(--surface-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 20, 34, 0.08);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  gap: 10px;
  color: var(--secondary-color);
  font-weight: 500;
  background: linear-gradient(90deg, rgba(255, 178, 0, 0.08) 0%, rgba(255, 140, 55, 0.05) 100%);
  border: 1px solid rgba(255, 178, 0, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
}

.trust-list i {
  color: var(--accent-primary);
  margin-top: 2px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(15, 20, 34, 0.08);
}

.bonus-offers .bonus-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.bonus-panel {
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: rgba(15, 20, 31, 0.03);
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: #0e1422;
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-ghost {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.bonus-notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-secondary);
  padding: 0;
  margin: 0;
}

.bonus-notes i {
  color: var(--accent-primary);
  margin-right: 8px;
}

.review-overview {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--surface);
  border-radius: 10px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: var(--surface-soft);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-primary);
}

.stat-content h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.stat-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.ratings-breakdown {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--surface);
  border-radius: 10px;
}

.ratings-breakdown h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.ratings-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rating-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-category {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.rating-value {
  font-size: 1rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.rating-bar {
  width: 100%;
  height: 10px;
  background-color: var(--surface-soft);
  border-radius: 5px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  border-radius: 5px;
  transition: width 1s ease;
}

.pros-cons {
  margin-top: 40px;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-section,
.cons-section {
  padding: 30px;
  background-color: var(--surface-soft);
  border-radius: 10px;
}

.pros-section h3 {
  font-size: 1.5rem;
  color: #4CAF50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons-section h3 {
  font-size: 1.5rem;
  color: #f44336;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-list,
.cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pros-list li i {
  color: #4CAF50;
  font-size: 1.2rem;
  margin-top: 2px;
}

.cons-list li i {
  color: #f44336;
  font-size: 1.2rem;
  margin-top: 2px;
}

.review-content {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
}

.review-banner {
  flex: 1;
  max-width: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.review-text {
  flex: 1;
  padding: 30px;
  background-color: var(--surface-soft);
  border-radius: 10px;
}

.review-text h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.review-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.bonus-review {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--surface-soft);
  padding: 30px;
  border-radius: 10px;
}

.bonus-intro h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--surface);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games-review {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--surface);
}

.games-intro h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background-color: var(--surface-soft);
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.game-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.game-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-primary);
  font-weight: 700;
}

.banking-support .banking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.panel {
  background: var(--third-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.muted {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.safety-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.step {
  background: var(--third-color);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.step-icon {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.faq {
  margin-top: 40px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.faq-item {
  background-color: var(--surface-soft);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

.footer {
  background-color: var(--surface);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.04);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.review-verdict {
  margin-top: 40px;
  padding: 40px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  border-radius: 10px;
  text-align: center;
}

.verdict-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.verdict-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.verdict-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.verdict-stars {
  display: flex;
  gap: 5px;
  color: var(--text-primary);
  font-size: 2rem;
}

.verdict-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .bonus-offers .bonus-layout {
    grid-template-columns: 1fr;
  }

  .pros-cons-container,
  .banking-support .banking-grid {
    grid-template-columns: 1fr;
  }

  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq,
  .games-suite,
  .key-highlights,
  .info-table-section,
  .media-strip,
  .safety-fairness {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

  .hero-left h1 {
    font-size: 1.5rem;
  }

  .overview-stats {
    grid-template-columns: 1fr;
  }

  .ratings-breakdown h2,
  .games-intro h2,
  .section-title h2,
  .faq h2 {
    font-size: 1.5rem;
  }

  .verdict-content h2 {
    font-size: 1.6rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 20px;
  }

  .hero-left h1 {
    font-size: 1.3rem;
  }

  .rating-card-score {
    font-size: 2.5rem;
  }

  .verdict-score {
    font-size: 2.5rem;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}