@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  font-family: "Roboto", serif;
}

body,
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
body ::-webkit-scrollbar,
html ::-webkit-scrollbar {
  width: 8px;
}
body ::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #fff;
}
body ::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #b2bec3;
  border-radius: 20px;
}

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

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
}

.btn {
  font-size: 16px;
  text-decoration: none;
  background: #d63031;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: #2d3436 !important;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.25);
}

.h2-title {
  font-size: 37px;
  color: #151515;
  font-weight: 700;
  margin: 10px 0;
}

.h2-title.small {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

p {
  font-size: 16px;
  color: #151515;
  line-height: 1.45em;
}

.h2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 25px;
  width: 11px;
}
.h2-icon:before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: #636e72;
  border-radius: 50%;
}
.h2-icon:after {
  position: absolute;
  top: 0;
  content: "";
  width: 11px;
  height: 11px;
  opacity: 0.8;
  background: #d63031;
  border-radius: 50%;
  bottom: 0;
}

.rating-star {
  display: flex;
}

.star {
  font-size: 24px;
  color: #d6d7db;
}

.star.filled {
  color: #fdcb6e;
}

.read-more .h2-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.news-grid {
  display: flex;
  gap: 20px;
}

.news-card {
  max-width: 270px;
  width: 100%;
}

.news-title {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  transition: 0.3s ease-in-out;
}
.news-title:hover {
  color: #7f8c8d;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
}
.news-tags .tag {
  border-radius: 0 5px 0 5px;
  margin: 2px;
}

.news-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7f8c8d;
}

.news-info-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publication-date {
  display: flex;
  align-items: center;
  gap: 3px;
}
.publication-date:before {
  content: "";
  background: url("../img/date.webp") no-repeat center/cover;
  width: 12px;
  height: 12px;
}

.article-comments {
  display: flex;
  align-items: center;
  gap: 3px;
}
.article-comments:before {
  content: "";
  background: url("../img/comments.webp") no-repeat center/cover;
  width: 12px;
  height: 12px;
}

.article-views {
  display: flex;
  align-items: center;
  gap: 3px;
}
.article-views:before {
  content: "";
  background: url("../img/views.webp") no-repeat center/cover;
  width: 12px;
  height: 12px;
}

.recent-news {
  background: #f1f3f4;
  padding: 50px 0;
  margin-top: 50px;
}
.recent-news .h2-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 0;
}

.recent-news-card {
  display: flex;
  gap: 15px;
  text-decoration: none;
  max-width: 270px;
  width: 100%;
}

.recent-news-image {
  width: 100px;
  height: 100px;
  flex: none;
}
.recent-news-image img {
  width: 100%;
  border-radius: 5px;
}

.recent-news-info {
  display: block;
}
.recent-news-info .title {
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-align: left;
}
.recent-news-info .date {
  color: #7f8c8d;
  font-size: 12px;
  margin-top: 10px;
}

.safe {
  border-top: 1px solid rgba(127, 140, 141, 0.1411764706);
  text-align: center;
  padding: 50px 0;
}
.safe img {
  max-width: 250px;
  margin: auto;
  width: 100%;
}

.disclaimer {
  font-size: 28px;
  color: #151515;
  font-weight: 700;
  margin: 10px 0;
}

.comment-info {
  overflow: hidden;
}

.bonuses-section {
  background: #f1f3f4;
  padding: 60px 0;
}
.bonuses-section .h2-title {
  text-align: center;
}
.bonuses-section .title {
  text-align: center;
  color: #7f8c8d;
  font-size: 16px;
}

.bonuses {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.bonus-card {
  background: #000;
  border-radius: 5px;
  max-width: 270px;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
}

.bonus-card-sub-title {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.bonus-card-title {
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.bonus-card-title:hover {
  color: #b2bec3;
}

.bonus-code {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 20px;
  color: #fff;
  border-radius: 24px;
  height: 45px;
  border: 1px solid #777777;
  font-weight: 700;
}

.code-title {
  position: absolute;
  top: -7px;
  font-size: 12px;
  color: #777;
  padding: 1px 10px;
  background: #000;
}

.bonus-date {
  font-size: 12px;
  color: #fff;
  margin-top: 8px;
}
.bonus-date span {
  color: #777;
}

.bonus-description {
  font-size: 12px;
  color: #777;
  margin: 25px 0;
}

.bonus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #d63031;
  max-width: 150px;
  width: 100%;
  margin: auto;
  height: 45px;
  border-radius: 24px;
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.bonus-btn:hover {
  box-shadow: 0 8px 30px 0 rgba(214, 48, 49, 0.6);
}

.bonus-link {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  text-decoration: underline;
}

.bonus-sub {
  font-size: 12px;
  color: #777;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 90%;
  }
  .h2-title {
    font-size: 28px;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .bonuses {
    flex-direction: column;
  }
  .bonus-card {
    max-width: 100%;
  }
}
h1 {
  color: #d63031;
  text-align: center;
  font-weight: 700;
  font-size: 37px;
  margin-top: 30px;
}

.main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e74c3c;
  font-weight: 700;
  max-width: 190px;
  border-radius: 24px;
  width: 100%;
  margin: 25px auto;
  height: 46px;
  color: #fff;
  text-transform: uppercase;
}

.aviator-logo {
  margin: auto;
  max-width: 150px;
}
.aviator-logo img {
  width: 100%;
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 50px 0;
}

.platform {
  background: #fff;
  box-shadow: 0 10px 40px 0 rgba(109, 141, 173, 0.25);
  padding: 20px 30px;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}
.platform:hover {
  box-shadow: 0 15px 40px 0 rgba(109, 141, 173, 0.55);
}
.platform .platform-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.platform .sub-text {
  font-size: 12px;
  color: #b2bec3;
}
.platform:first-child .number {
  background: #d63031;
}
.platform .logo {
  display: flex;
  align-items: center;
  max-width: 232px;
  width: 100%;
}
.platform .logo-img {
  position: relative;
  width: 50px;
  height: 50px;
}
.platform .logo-img img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgba(109, 141, 173, 0.25);
}
.platform .number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #636e72;
  font-weight: 700;
  font-size: 16px;
}
.platform .logo-title {
  font-size: 21px;
  font-weight: 700;
  max-width: 138px;
  margin-left: 15px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in-out;
}
.platform .logo-title:hover {
  color: #b2bec3;
}
.platform .description {
  max-width: 262px;
  width: 100%;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 200%;
  color: #7f8c8d;
  text-align: center;
}
.platform .description .big-text {
  font-size: 28px;
  color: #111;
  font-weight: 700;
}
.platform .description .bold {
  font-size: 16px;
  color: #111;
  font-weight: 700;
}
.platform .rating {
  max-width: 290px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #d6d7db;
  padding: 11px;
  height: 40px;
  box-sizing: border-box;
}

.buttons {
  max-width: 180px;
  width: 100%;
}
.buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
}

.play-btn {
  background: #d63031;
  margin-bottom: 4px;
  transition: 0.3s ease-in-out;
}
.play-btn:hover {
  box-shadow: 0 0 15px 0 rgba(214, 48, 49, 0.55);
}

.reviews-btn {
  background: #b2bec3;
  transition: 0.3s ease-in-out;
}
.reviews-btn:hover {
  box-shadow: 0 0 15px 0 rgba(178, 190, 195, 0.55);
}

.rating-num {
  font-weight: 700;
  font-size: 16px;
  color: #111;
  margin-left: 10px;
}

.divider {
  background: #d6d7db;
  width: 1px;
  height: 50px;
}

.best-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 0;
}
.best-section .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 148px;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  text-decoration: none;
}
.best-section .text {
  max-width: 560px;
}

.icon {
  max-width: 30px;
  width: 100%;
}
.icon img {
  width: 100%;
}

.image {
  max-width: 561px;
  width: 100%;
}
.image img {
  width: 100%;
  border-radius: 5px;
}

.sub-image-text {
  color: #7f8c8d;
  font-size: 13px;
  text-align: center;
}

.platforms-short-section {
  margin: 100px 0;
}
.platforms-short-section .h2-title {
  text-align: center;
}
.platforms-short-section .icon {
  margin: 30px auto;
}
.platforms-short-section .title {
  text-align: center;
  color: #7f8c8d;
  font-size: 16px;
}

.red {
  color: #d63031;
  background: none;
}

.platforms-short {
  display: flex;
  gap: 30px;
}

.platform-short {
  padding: 15px;
  box-sizing: border-box;
  background: #f1f3f4;
  max-width: 270px;
  width: 100%;
  border-radius: 5px;
}

.platform-short-header {
  display: flex;
  gap: 10px;
}
.platform-short-header .logo {
  width: 50px;
  height: 50px;
}
.platform-short-header .logo img {
  border-radius: 5px;
  width: 100%;
}
.platform-short-header .info-side .name {
  font-weight: 700;
  color: #151515;
  font-size: 16px;
}
.platform-short-header .info-side .star {
  font-size: 14px;
}

.platform-short-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
  max-width: 100%;
}
.platform-short-footer a {
  border-radius: 5px;
  font-size: 12px;
  height: 30px;
  text-align: center;
  margin-bottom: 0;
}

.info {
  margin-top: 100px;
}
.info .h2-title {
  text-align: left;
}
.info a {
  color: #d63031;
  text-decoration: underline;
}

li {
  font-size: 16px;
  padding: 5px;
  line-height: 1.65em;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  .platform {
    padding: 20px 10px;
  }
  .platform .logo {
    max-width: 100%;
    justify-content: center;
  }
  .platform .logo-title {
    max-width: 100%;
  }
  .platform .description {
    max-width: 100%;
    margin: 15px 0;
  }
  .platform .rating {
    height: 30px;
    max-width: 200px;
    margin: 0 0 15px 0;
  }
  .platform .rating .star {
    font-size: 16px;
  }
  .platform .sub-text {
    margin-top: 10px;
  }
  .rating-num {
    font-size: 13px;
  }
  .platform-wrapper {
    flex-direction: column;
  }
  .divider {
    display: none;
  }
  .buttons {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .buttons a {
    font-size: 13px;
    height: 30px;
    margin: 0;
  }
  .best-section {
    flex-direction: column;
  }
  .best-section .image {
    margin-top: 20px;
  }
  .bonuses {
    flex-direction: column;
  }
  .bonus-card {
    max-width: 100%;
  }
  .platforms-short {
    flex-direction: column;
  }
  .platform-short {
    max-width: 100%;
  }
}/*# sourceMappingURL=home.css.map */