*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.main-header .header-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .header-wrapper .logo img {
  height: 42px;
}
.main-header .header-wrapper .navigation {
  display: flex;
  gap: 2rem;
}
.main-header .header-wrapper .navigation a {
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s;
}
.main-header .header-wrapper .navigation a:hover, .main-header .header-wrapper .navigation a.active {
  color: #ff6600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-section {
  background: #f8f6f3;
  color: #1a1a1a;
  padding: 6rem 2rem 5rem;
}
.hero-section .hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-section .hero-inner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}
.hero-section .hero-inner p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}
.hero-section .hero-inner .hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-section .hero-inner .hero-buttons .badge {
  background-color: #e5e7eb;
  color: #1a1a1a;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.hero-section .hero-inner .hero-buttons .badge:hover {
  background-color: #ff944d;
  color: #fff;
}
.hero-section .hero-inner .hero-warning {
  background-color: #b91c1c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  margin-top: 1rem;
}
.hero-section .hero-inner .hero-warning a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-section .hero-inner .hero-warning a:hover {
  opacity: 0.9;
}

.brand-section {
  padding: 3rem 1rem;
  background-color: #f9fafb;
}
.brand-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .brand-section .container {
    padding: 0 1rem;
  }
}

.brand-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  position: relative;
  transition: transform 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-6px);
}
.brand-card .brand-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.6rem 1.2rem;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 14px;
}
.brand-card .brand-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .brand-card .brand-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.brand-card .brand-logo img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.brand-card .brand-details {
  min-width: 180px;
}
.brand-card .brand-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.brand-card .brand-details .brand-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
}
.brand-card .brand-details .brand-reviews {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.brand-card .brand-offer {
  flex: 1;
  background: #fff4e6;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  min-width: 240px;
}
.brand-card .brand-offer .offer-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.3rem;
  display: block;
}
.brand-card .brand-offer .offer-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6600;
}
.brand-card .brand-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  text-align: center;
}
.brand-card .brand-cta .score-box {
  margin-bottom: 0.8rem;
}
.brand-card .brand-cta .score-box .score-label {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.brand-card .brand-cta .score-box .score-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.brand-card .brand-cta .btn-claim {
  background: #ff6600;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: background 0.3s ease;
}
.brand-card .brand-cta .btn-claim:hover {
  background: #e45700;
}
.brand-card .brand-cta .link-small {
  font-size: 0.75rem;
  color: #1d4ed8;
  text-decoration: underline;
}
.brand-card .brand-cta .link-small:hover {
  text-decoration: none;
  color: #2563eb;
}

.info-section {
  background: #f9fafb;
  padding: 4rem 1rem;
}
.info-section .container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.info-section .info-block {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.info-section .info-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}
.info-section .info-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.info-section .info-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1rem;
}
.info-section .info-block strong {
  color: #ff6600;
}

.site-footer {
  background-color: #1a222c;
  color: #f3f4f6;
  font-size: 0.9rem;
}
.site-footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.site-footer .footer-top .footer-logos {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .footer-top .footer-logos img {
  height: 48px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-footer .footer-top .footer-logos img:hover {
  opacity: 1;
}
.site-footer .footer-main {
  padding: 2rem 0;
}
.site-footer .footer-main .footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.site-footer .footer-main .footer-content .footer-logo img {
  height: 45px;
  margin-bottom: 0.5rem;
}
.site-footer .footer-main .footer-content .footer-logo p {
  color: #94a3b8;
  font-size: 0.85rem;
}
.site-footer .footer-main .footer-content .footer-warning {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 800px;
  color: #e2e8f0;
}
.site-footer .footer-main .footer-content .footer-warning strong {
  color: #f87171;
}
.site-footer .footer-main .footer-content .footer-links {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-main .footer-content .footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
}
.site-footer .footer-main .footer-content .footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.legal-section {
  padding: 4rem 1rem;
  background: #f9fafb;
}
.legal-section .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: #1f2937;
}
.legal-section .container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0f172a;
}
.legal-section .container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.legal-section .container p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: #374151;
}
.legal-section .container a {
  color: #1d4ed8;
  text-decoration: underline;
}
.legal-section .container a:hover {
  color: #2563eb;
}
.legal-section .container .legal-date {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 2rem;
}

.responsible-gaming {
  background: #fff4e6;
  padding: 4rem 1rem;
  border-top: 1px solid #fcd9b6;
  border-bottom: 1px solid #fcd9b6;
}
.responsible-gaming .container {
  max-width: 1000px;
  margin: 0 auto;
}
.responsible-gaming .responsible-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.responsible-gaming .responsible-icon img {
  width: 80px;
  height: auto;
}
@media (max-width: 600px) {
  .responsible-gaming .responsible-icon img {
    margin: 0 auto;
  }
}
.responsible-gaming .responsible-text {
  flex: 1;
}
.responsible-gaming .responsible-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 1rem;
}
.responsible-gaming .responsible-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}
.responsible-gaming .responsible-text .responsible-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.responsible-gaming .responsible-text .responsible-links a {
  background-color: #ff6600;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.responsible-gaming .responsible-text .responsible-links a:hover {
  background-color: #e45700;
}/*# sourceMappingURL=style.css.map */