@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("./Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

:root {
  --color-primary-bg: #00272f;
  --color-secondary-bg: #121212;
  --color-card-bg: #001809;
  --color-text-light: #ffffff;
  --color-accent: #f2a200;
  --gradient-button: linear-gradient(360deg, #790358 0%, #ff03ba 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-primary-bg);
  font-family: "Montserrat", sans-serif;
  color: var(--color-text-light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 122px;
}
@media (max-width: 768px) {
  .container {
    padding: 40px 12px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

/* CSS from section:hero */
#hero-section {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 122px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .hero-content {
    display: none;
  }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 803px;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 16px;
  }
}

.hero-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-top: -5px; /* Adjusted from gap */
}
@media (max-width: 768px) {
  .hero-text p {
    display: none;
  }
}

.hero-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
}

.feature-icon {
  width: 22px;
  height: 24px;
}

.hero-image-container {
  position: relative;
  width: 373px;
  height: 260px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .hero-image-container {
    width: 200px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .hero-image-container {
    width: 100px;
    height: 60px;
  }
}

.roulette-assembly {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
}
@media (max-width: 800px) {
  .roulette-assembly {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 600px) {
  .roulette-assembly {
    width: 90px;
    height: 90px;
  }
}
.roulette-assembly img {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 5s linear infinite;
  transform-origin: center center;
}
@media (max-width: 800px) {
  .roulette-assembly img {
    width: 90px;
    height: 90px;
    top: -20px;
    left: 50px;
  }
}
@media (max-width: 600px) {
  .roulette-assembly img {
    width: 90px;
    height: 90px;
    top: -17px;
    left: -30px;
  }
}
@media (max-width: 380px) {
  .roulette-assembly img {
    width: 90px;
    height: 90px;
    top: -17px;
    left: -10px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-main-image {
  position: absolute;
  top: 32px; /* 593 - 561 */
  left: 147px; /* 1669 - 1522 */
  width: 226px;
  height: 228px;
}
@media (max-width: 800px) {
  .hero-main-image {
    width: 68px;
    height: 69px;
    top: 0;
    left: 100px;
  }
}
@media (max-width: 600px) {
  .hero-main-image {
    width: 68px;
    height: 69px;
    top: 5px;
    left: 19px;
  }
}
@media (max-width: 380px) {
  .hero-main-image {
    width: 68px;
    height: 69px;
    top: 5px;
    left: 23px;
  }
}

@media (max-width: 1200px) {
  .hero-container {
    padding: 12px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
  .hero-text h1,
  .hero-text p {
    text-align: center;
  }
  .hero-features {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
}
.hero-mobile {
  display: none;
}
.hero-mobile .hero-top-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 800px) {
  .hero-mobile .hero-top-block {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 40px;
  }
  .hero-mobile h1 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
  }
  .hero-mobile p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 0 20px;
  }
  .hero-mobile .roulette-mobile {
    width: 90px;
    height: 90px;
    animation: spin 6s linear infinite;
    transform-origin: center;
  }
  .hero-mobile .hero-mobile-features {
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 40px;
  }
  .hero-mobile h1 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
  }
  .hero-mobile p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 0 20px;
  }
  .hero-mobile .roulette-mobile {
    width: 90px;
    height: 90px;
    animation: spin 6s linear infinite;
    transform-origin: center;
  }
  .hero-mobile .hero-mobile-features {
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  .hero-mobile .hero-mobile-features .feature-item {
    font-size: 8px;
  }
}
@media (min-width: 1201px) {
  .hero-mobile {
    display: none !important;
  }
}

/* CSS from section:casinos */
#particles-casinos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#casinos-section {
  position: relative;
  z-index: 1;
}

#casinos-section {
  padding-top: 0;
}
@media (max-width: 1000px) {
  #casinos-section {
    margin-top: 40px;
    padding: 12px;
  }
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  justify-content: center;
}

.casino-card {
  background-color: var(--color-card-bg);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-logo-container {
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/assets/img/bg.webp); /* Fallback, real one has a shadow effect */
  position: relative;
  z-index: 1;
}

.card-logo-container img {
  position: relative;
  z-index: 2;
  height: 67px;
  width: auto;
}

.card-content {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px; /* Adjusted from 30px for better balance */
  position: relative;
  z-index: 0;
  flex-grow: 1;
}

.card-main-info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 140px;
  flex-shrink: 0;
}

.rating-score {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  .rating-score {
    font-size: 20px;
  }
}

.stars {
  display: flex;
  gap: 5px;
}
@media (max-width: 1000px) {
  .stars img {
    width: 16px;
    height: 16px;
  }
}

.star.filled {
  width: 24px;
  height: 24px;
  background-color: var(--color-accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.bonus-box {
  max-width: 148px;
  text-align: center;
  flex-grow: 1;
}

.bonus-title {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 1000px) {
  .bonus-title {
    font-size: 8px;
  }
}

.bonus-description {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  .bonus-description {
    font-size: 12px;
  }
}

.card-perks {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .card-perks {
    display: none;
  }
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.perk-dot {
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.cta-button {
  background: var(--gradient-button);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
  pointer-events: none;
}
.cta-button:hover::before {
  animation: shimmer 1.2s infinite;
}
@media (max-width: 1000px) {
  .cta-button {
    width: 80%;
  }
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 30px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* CSS from section:why-us */
.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .why-us-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.why-us-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.why-us-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-us-text h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.why-us-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

/* CSS from section:footer */
#footer-section {
  background-color: var(--color-secondary-bg);
}
@media (max-width: 768px) {
  #footer-section {
    text-align: center;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-block h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-block p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.27px;
}

.footer-block a {
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
}

.footer-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  padding: 20px 0;
}

.footer-logos img {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .footer-grid-3,
  .footer-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-logos {
    justify-content: center;
    gap: 10px;
  }
  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}
.aposta-esportivas-privacy {
  background-color: #0f1f26;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px;
}
.aposta-esportivas-privacy .container {
  max-width: 1400px;
  margin: 0 auto;
}
.aposta-esportivas-privacy h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
.aposta-esportivas-privacy h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}
.aposta-esportivas-privacy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.aposta-esportivas-privacy ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.aposta-esportivas-privacy ul li {
  margin-bottom: 10px;
}
.aposta-esportivas-privacy a {
  color: #00d2ff;
  text-decoration: underline;
}
.aposta-esportivas-privacy a:hover {
  color: #00b4e6;
}/*# sourceMappingURL=main.css.map */