```css
@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #f0f0f0;
  background-color: #0d0d0d;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #f0f0f0;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

svg {
  width: 28px;
  height: 28px;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/subset-PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.wrapper {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 1.2rem;
}

@media (min-width: 1024px) {
  .wrapper {
    max-width: 96%;
  }
}

@media (min-width: 1440px) {
  .wrapper {
    max-width: 1280px;
  }
}

.topbar {
  background-color: #151515;
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__brand {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.topbar__menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100vh;
  background-color: #151515;
  padding: 5rem 2.5rem;
  transition: left 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.topbar__menu.active {
  left: 0;
}

@media (min-width: 1024px) {
  .topbar__menu {
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
  }
}

.topbar__links {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

@media (min-width: 1024px) {
  .topbar__links {
    flex-direction: row;
    gap: 1.8rem;
  }
}

.topbar__link {
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  padding: 0.6rem 0;
}

.topbar__link:hover {
  color: #e91e63;
}

.topbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e91e63;
  transition: width 0.3s ease;
}

.topbar__link:hover::after {
  width: 100%;
}

.topbar__toggle {
  width: 32px;
  height: 22px;
  position: relative;
  z-index: 1000;
  display: block;
}

@media (min-width: 1024px) {
  .topbar__toggle {
    display: none;
  }
}

.topbar__toggle-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #e91e63;
  position: absolute;
  transition: all 0.3s ease;
}

.topbar__toggle-line:nth-child(1) {
  top: 0;
}

.topbar__toggle-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.topbar__toggle-line:nth-child(3) {
  bottom: 0;
}

.topbar__toggle.active .topbar__toggle-line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.topbar__toggle.active .topbar__toggle-line:nth-child(2) {
  opacity: 0;
}

.topbar__toggle.active .topbar__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}

.banner {
  background: linear-gradient(to right, #0d0d0d, #151515);
  padding: 5rem 0;
}

.banner__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .banner__inner {
    flex-direction: row;
    gap: 6rem;
  }
}

.banner__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .banner__content {
    flex: 1;
    text-align: left;
  }
}

.banner__heading {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1024px) {
  .banner__heading {
    font-size: 4rem;
  }
}

.banner__description {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.85);
}

.banner__image {
  flex: 1;
}

.banner__photo {
  border-radius: 25px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.casinos {
  background-color: #1a1a1a;
  padding: 5rem 0;
  text-align: center;
}

.casinos__heading {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.casinos__features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .casinos__features {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.casinos__feature-item {
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(233, 30, 99, 0.1);
  padding: 1rem 2rem;
  border-radius: 40px;
  border: 1px solid #e91e63;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casinos__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
}

.casinos__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .casinos__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (min-width: 1024px) {
  .casinos__grid {
    grid-template-columns: 1fr;
  }
}

.casinos__card {
  background-color: #151515;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  align-items: center;
}

.casinos__card:hover {
  transform: translateY(-12px);
  border-color: #e91e63;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.casinos__card-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

@media (min-width: 1024px) {
  .casinos__card {
    flex-direction: row;
    text-align: left;
  }
  .casinos__card-block:nth-child(2) {
    align-items: flex-start;
  }
}

.casinos__card-img {
  max-width: 140px;
}

.casinos__card-title {
  font-size: 1.6rem;
  margin: 0px;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.casinos__card-rating {
  color: #e91e63;
  font-size: 1.3rem;
}

.casinos__card-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0px;
}

.casinos__card-list-item {
  font-size: 1rem;
  color: rgba(240, 240, 240, 0.9);
}

.casinos__card-bonus {
  font-weight: 600;
  color: #e91e63;
  font-size: 1.1rem;
  margin: 0px;
}

.casinos__card-offer {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d81b60;
}

.casinos__card-link {
  background: linear-gradient(45deg, #e91e63, #f06292);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  color: #0d0d0d;
  box-shadow: 0 5px 18px rgba(233, 30, 99, 0.4);
  transition: all 0.3s ease;
}

.casinos__card-link:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
}

.info {
  background-color: #0d0d0d;
  padding: 5rem 0;
}

.info__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .info__inner {
    flex-direction: row;
    gap: 6rem;
  }
}

.info__image {
  flex: 1;
}

.info__photo {
  border-radius: 25px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  animation: zoom 5s ease-in-out infinite;
}

.info__content {
  text-align: center;
  flex: 1;
}

@media (min-width: 1024px) {
  .info__content {
    text-align: left;
  }
}

.info__heading {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info__description {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.85);
}

.features {
  background-color: #1a1a1a;
  padding: 5rem 0;
  text-align: center;
}

.features__heading {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features__description {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  color: rgba(240, 240, 240, 0.85);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .features__list {
    flex-direction: row;
  }
}

.features__list-item {
  background-color: #151515;
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.features__list-item:hover {
  transform: translateY(-12px);
  border-color: #e91e63;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.features__item-icon-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(45deg, #e91e63, #f06292);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.features__item-icon {
  width: 48px;
  height: 48px;
  fill: #0d0d0d;
}

.features__item-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #e91e63;
}

.features__item-text {
  font-size: 1rem;
  color: rgba(240, 240, 240, 0.85);
}

.trust {
  background-color: #0d0d0d;
  padding: 5rem 0;
  text-align: center;
}

.trust__heading {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust__description {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  color: rgba(240, 240, 240, 0.85);
}

.trust__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .trust__list {
    gap: 6rem;
  }
}

.trust__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.trust__list-item:nth-child(even) {
  flex-direction: column-reverse;
}

@media (min-width: 1024px) {
  .trust__list-item {
    flex-direction: row;
    text-align: left;
  }
  .trust__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.trust__item-img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .trust__item-img {
    width: 45%;
  }
}

.trust__item-details {
  width: 100%;
}

@media (min-width: 1024px) {
  .trust__item-details {
    width: 55%;
    padding: 0 2.5rem;
  }
}

.trust__item-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #e91e63;
}

.trust__item-text {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.85);
}

.bottom {
  background-color: #151515;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(240, 240, 240, 0.15);
}

.bottom__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.bottom__badge-img {
  height: 60px;
  filter: invert(1);
  transition: all 0.3s ease;
}

.bottom__badge-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.bottom__notice {
  margin-bottom: 3.5rem;
  padding: 2rem;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 15px;
  border: 1px solid #e91e63;
}

.bottom__notice-title {
  font-size: 1.6rem;
  color: #e91e63;
  margin-bottom: 0.8rem;
}

.bottom__notice-text {
  font-size: 1rem;
  color: rgba(240, 240, 240, 0.8);
}

.bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .bottom__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.bottom__block {
  text-align: center;
}

@media (min-width: 1024px) {
  .bottom__block {
    text-align: left;
  }
}

.bottom__brand {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}

.bottom__description {
  max-width: 450px;
  font-size: 1rem;
  color: rgba(240, 240, 240, 0.8);
}

.bottom__title {
  font-size: 1.6rem;
  color: #e91e63;
  margin-bottom: 1.8rem;
}

.bottom__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bottom__link {
  font-size: 1rem;
  color: rgba(240, 240, 240, 0.8);
}

.bottom__link:hover {
  color: #e91e63;
}

.bottom__copyright {
  font-size: 0.9rem;
  color: rgba(240, 240, 240, 0.6);
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}


@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/subset-PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/subset-Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #e0e0e0;
  background-color: #121212;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    max-width: 95%;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding: 4rem 0;
}

.header {
  background-color: #1a1a1a;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.header__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.header__nav.active {
  left: 0;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
  }
}
.header__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header__list {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.header__list-link {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
}
.header__list-link:hover {
  color: #e91e63;
}
.header__list-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e91e63;
  transition: all 0.3s ease-in-out;
}
.header__list-link:hover::after {
  width: 100%;
}
.header__burger {
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1000;
  display: block;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e91e63;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.header__burger-line:nth-child(1) {
  top: 0;
}
.header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__burger-line:nth-child(3) {
  bottom: 0;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #121212, #1a1a1a);
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 5rem;
  }
}
.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    flex: 1;
    text-align: left;
  }
}
.hero__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__text {
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.8);
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 1.1rem;
  }
}
.hero__img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__img-photo {
  max-width: 100%;
  height: auto;
  animation: floating 5s ease-in-out infinite;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platforms {
  background-color: #1e1e1e;
  text-align: center;
}
.platforms__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .platforms__title {
    font-size: 2.5rem;
  }
}
.platforms__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .platforms__list {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.platforms__list-item {
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255, 204, 0, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #e91e63;
  transition: all 0.3s ease-in-out;
}
.platforms__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}
.platforms__wrapper {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .platforms__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1024px) {
  .platforms__wrapper {
    grid-template-columns: 1fr;
  }
}
.platforms__item {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.platforms__item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  border-color: #e91e63;
}
.platforms__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 204, 0, 0.05);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.platforms__item:hover::before {
  opacity: 1;
}
@media (min-width: 1024px) {
  .platforms__item {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.platforms__item-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 150px;
}
.platforms__item-block:nth-child(2) {
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .platforms__item-block:nth-child(2) {
    align-items: flex-start;
    text-align: left;
  }
}
.platforms__item-img {
  max-width: 120px;
  height: auto;
}
.platforms__item-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.platforms__item-rating {
  color: #e91e63;
  font-size: 1.2rem;
}
.platforms__item-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.platforms__item-list-item {
  color: rgba(224, 224, 224, 0.9);
  font-size: 0.9rem;
}
.platforms__item-bonus {
  font-weight: 600;
  color: #e91e63;
  font-size: 1rem;
}
.platforms__item-offer {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3366;
  text-shadow: 0 0 5px rgba(255, 51, 102, 0.5);
}
.platforms__item-link {
  background: linear-gradient(45deg, #e91e63, #ff9900);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  color: #121212;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
.platforms__item-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.about {
  background-color: #121212;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 5rem;
  }
}
.about__img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.about__img-photo {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  animation: zoom-in-out 4s ease-in-out infinite;
}
.about__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .about__content {
    flex: 1;
    text-align: left;
  }
}
.about__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 2.5rem;
  }
}
.about__text {
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.8);
}

.services {
  background-color: #1e1e1e;
  text-align: center;
}
.services__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .services__title {
    font-size: 2.5rem;
  }
}
.services__text {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: rgba(224, 224, 224, 0.8);
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .services__list {
    flex-direction: row;
    justify-content: space-between;
  }
}
.services__list-item {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.services__list-item:hover {
  transform: translateY(-10px);
  border-color: #e91e63;
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
}
@media (min-width: 1024px) {
  .services__list-item {
    flex: 1;
    margin: 0 1rem;
  }
}
.services__item-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #e91e63, #ff9900);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}
.services__item-icon {
  width: 40px;
  height: 40px;
  fill: #121212;
}
.services__item-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #e91e63;
}
.services__item-text {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.8);
}

.solutions {
  background-color: #121212;
  text-align: center;
}
.solutions__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .solutions__title {
    font-size: 2.5rem;
  }
}
.solutions__text {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: rgba(224, 224, 224, 0.8);
}
.solutions__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .solutions__list {
    gap: 5rem;
  }
}
.solutions__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.solutions__list-item:nth-child(even) {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .solutions__list-item {
    flex-direction: row;
    text-align: left;
  }
  .solutions__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.solutions__item-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .solutions__item-img {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .solutions__item-info {
    width: 50%;
    padding: 0 2rem;
  }
}
.solutions__item-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #e91e63;
}
.solutions__item-text {
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.8);
}

.contact {
  background-color: #1e1e1e;
  text-align: center;
}
.contact__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .contact__title {
    font-size: 2.5rem;
  }
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
  }
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a;
  border: 2px solid transparent;
  border-radius: 10px;
  color: #e0e0e0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: rgba(224, 224, 224, 0.6);
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: rgba(224, 224, 224, 0.6);
}
.contact__form-textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__form-btn {
  background: linear-gradient(45deg, #e91e63, #ff9900);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  color: #121212;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
.contact__form-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}
.contact__form-status-text {
  margin-top: 1rem;
  font-weight: 600;
}

.faq {
  background-color: #121212;
  text-align: center;
}
.faq__title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .faq__title {
    font-size: 2.5rem;
  }
}
.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq__accordion-item {
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq__accordion-item.active {
  border-color: #e91e63;
  box-shadow: 0 5px 20px rgba(255, 204, 0, 0.2);
}
.faq__accordion-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.faq__accordion-item-title:hover {
  background-color: rgba(255, 204, 0, 0.1);
}
.faq__accordion-item-title-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
}
@media (min-width: 1024px) {
  .faq__accordion-item-title-text {
    font-size: 1.1rem;
  }
}
.faq__accordion-item-title-btn {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #e91e63, #ff9900);
  border: none;
  color: #121212;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.faq__accordion-item.active .faq__accordion-item-title-btn {
  transform: rotate(45deg);
}
.faq__accordion-item-content {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq__accordion-item-content.active {
  max-height: 200px;
  padding: 1.5rem;
}
.faq__accordion-item-content-text {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.8);
  padding-bottom: 1rem;
}

.news {
  background-color: #121212;
  padding: 4rem 0;
}
.news__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .news__title {
    font-size: 3rem;
  }
}
.news__text {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: rgba(224, 224, 224, 0.8);
}
.news__block {
  margin-bottom: 4rem;
}
.news__block:last-child {
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 204, 0, 0.2);
}
.news__subtitle {
  font-size: 1.8rem;
  color: #e91e63;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .news__subtitle {
    font-size: 2.2rem;
  }
}
.news__item {
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.news__item:hover {
  transform: translateY(-5px);
  border-color: #e91e63;
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
}
.news__item-title {
  font-size: 1.5rem;
  color: #ff3366;
  margin-bottom: 1rem;
}
.news__item-text {
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 1rem;
}
.news__item-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}
.news__item-list-item {
  list-style-type: "⚡️ ";
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
}

.footer {
  background-color: #1a1a1a;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(224, 224, 224, 0.1);
}
.footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logos-img {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.footer__logos-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.footer__disclaimer {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #e91e63;
}
.footer__disclaimer-title {
  font-size: 1.5rem;
  color: #e91e63;
  margin-bottom: 0.5rem;
}
.footer__disclaimer-text {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__block {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__block {
    text-align: left;
  }
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.footer__text {
  max-width: 400px;
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
}
.footer__title {
  font-size: 1.5rem;
  color: #e91e63;
  margin-bottom: 1.5rem;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__menu-link {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
}
.footer__menu-link:hover {
  color: #e91e63;
}
.footer__copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.5);
}

.legal {
  background-color: #1e1e1e;
  padding: 4rem 0;
}
.legal__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1024px) {
  .legal__title {
    font-size: 3rem;
  }
}
.legal__content {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(224, 224, 224, 0.9);
  line-height: 1.8;
}
.legal__subtitle {
  font-size: 1.8rem;
  color: #e91e63;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .legal__subtitle {
    font-size: 2.2rem;
  }
}
.legal__sub-subtitle {
  font-size: 1.2rem;
  color: #ff3366;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.legal__text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.legal__subsection {
  padding: 1.5rem;
  background-color: #1a1a1a;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.legal__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1.5rem;
}
.legal__list-item {
  list-style: disc;
  font-size: 1rem;
  color: rgba(224, 224, 224, 0.8);
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}