:root {
  --primary: #323461;
  --bg-dark: #1d1848;
  --card-bg: #111226;
  --text-white: #ffffff;
  --text-muted: #ada3ff;
  --accent: #28d0d0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}
header {
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  background-color: #1d1848;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
.hero p {
  font-size: 0.95rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--text-muted);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 700px;
  text-align: center;
}

.hero-background {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.7;
}

.hero-background img {
  max-width: 782px;
  width: 100%;
  max-height: 586.4px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 684px;
  text-align: left;
  padding-left: 5rem;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 105%;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 38rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 100%;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .hero-background {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .hero-background img {
    margin: 1rem auto;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 36px;
    line-height: 105%;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 20px;
    line-height: 100%;
    font-weight: 900;
    margin-bottom: 1rem;
  }
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav li a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.main-nav li a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    background: var(--card-bg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .burger {
    position: fixed;
    top: 6%;
    right: 20px;
    z-index: 1001;
    display: flex;
  }
}

@media (max-width: 570px) {
  .burger {
    top: 8%;
  }
}

.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  min-width: 160px;
  z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  color: var(--text-white);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 980px) {
  .main-nav .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .main-nav .dropdown.open .dropdown-menu {
    display: flex;
  }

  .main-nav .dropdown > a::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.7rem;
  }
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.site-header {
  background-color: var(--card-bg);
  padding: 1rem;
  text-align: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.logo:hover,
.logo:focus {
  color: var(--text-white);
}
.legal-banner {
  background-color: var(--accent);
  color: var(--bg-dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.bookmaker-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 2fr));
  gap: 1.5rem;
  max-width: 70rem;
  margin: 2rem auto;
}

.bookmaker-item {
  background: var(--card-bg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.2rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--primary);
  gap: 0rem;
}

.bookmaker-item .left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  flex: 1;
}

.bookmaker-item .left img {
  width: 100px;
  height: 130px;
  object-fit: contain;
}

.bookmaker-item .right {
  display: flex;
  justify-content: flex-end;
}

.btn-review {
  background: var(--accent);
  color: var(--text-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 100%;
  white-space: nowrap;
  text-decoration: none;
}
.btn-review:hover,
.btn-review:focus {
  background: var(--primary);
  color: var(--text-white);
}

.bookmaker-name {
  display: inline-block;
  max-width: 100%;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

@media (max-width: 768px) {
  .bookmaker-item {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .bookmaker-item .left {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
  }

  .bookmaker-item .left img {
    width: 156px;
  }

  .btn-review {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
  }
  .bookmaker-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
}
.platform-image {
  position: relative;
  width: 100%;
  min-height: 200px;

  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(236, 112, 255, 0.15);
  margin: 1.5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  z-index: 1;
  border-radius: 16px;
}

.platform-image img,
.platform-image > * {
  position: relative;
  z-index: 2;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

@media (max-width: 700px) {
  .platform-image {
    min-height: 120px;
    border-radius: 10px;
  }
}

.warning {
  display: flex;
  flex-wrap: nowrap;
  background: var(--bg-dark);
  margin: 3rem 10rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary);
  overflow: hidden;
  justify-self: center;
  max-width: 70rem;
}

.warning-label {
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}

.fineprint {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
  margin: 0.5rem 1rem;
}

@media (max-width: 980px) {
  .warning {
    margin: 2rem 1rem;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .warning-label {
    width: 100%;
    font-size: 3rem;
    padding: 1rem;
  }
}

.hero-about {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: url("/assets/images/about-us.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-about__overlay {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}
.hero-about__text {
  color: #fff;
  text-align: center;
  max-width: 600px;
}
.hero-about__text h1 {
  margin-top: 0;
  font-size: 2.5em;
  font-weight: bold;
}
.hero-about__text p {
  font-size: 1.25em;
  margin: 0;
}
@media (max-width: 700px) {
  .hero-about {
    min-height: 180px;
  }
  .hero-about__text h1 {
    font-size: 1.5em;
  }
  .hero-about__text p {
    font-size: 1em;
  }
}

.about {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 70rem;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--accent);
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(236, 112, 255, 0.3);
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  align-items: center;
  gap: 6rem;
  background-color: var(--bg-dark);
  padding: 2rem 1rem;
}

.logos img {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.9;
  &:hover {
    cursor: pointer;
  }
}

.site-footer {
  background-color: var(--card-bg);
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  justify-items: center;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0.5rem 0;
}

.site-footer .copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid #2a2a4d;
  padding-top: 1rem;
}

.site-footer .copyright {
  color: #666;
  margin-top: 1rem;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .logos {
    gap: 1rem;
    flex-direction: column;
  }
  .logos img {
    max-height: 30px;
  }
  .site-footer {
    font-size: 0.75rem;
  }
}

.contact-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--primary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted, #444);
  font-family: "Segoe UI", "Roboto", sans-serif;
  transition: background 0.3s ease;
}

.contact-section:hover {
  background: var(--bg-dark);
}

.contact-section h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-section h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  border-left: 4px solid var(--accent);
  padding-left: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-muted);
}

.contact-list li::before {
  content: "📌";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
}

.contact-list li:nth-child(1)::before {
  content: "📞";
}
.contact-list li:nth-child(2)::before {
  content: "✉️";
}
.contact-list li:nth-child(3)::before {
  content: "📍";
}

.contact-section a {
  color: #009688;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.content-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1d1848;
  border-radius: 12px;
}

.content-section h1 {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-section h2 {
  color: #cdbaff;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.content-section p {
  color: #ada3ff;
  line-height: 1.6;
}
.content-section li {
  color: #ada3ff;
  line-height: 1.6;
}
