@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%;
  }
}
.article-header {
  position: relative;
  padding: 60px;
  background: #f1f3f4;
  z-index: 1;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  color: #151515;
}

.path {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 10px;
}
.path a {
  text-decoration: none;
  color: inherit;
}
.path a:hover {
  text-decoration: underline;
}
.path span {
  margin: 0 8px;
}

.tags {
  position: absolute;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #d63031;
  color: #fff;
  font-size: 12px;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  height: 25px;
}
.tag:hover {
  background: #57606f;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 70px 0 60px 0;
}

.author-avatar {
  background: url("../img/emptyUser.webp") no-repeat center/cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-info {
  font-size: 12px;
  color: #7f8c8d;
}

.author-name {
  font-size: 16px;
}
.author-name span {
  color: #151515;
}

.author-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}

.article-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

article {
  color: #151515;
}

.article-content {
  max-width: 870px;
  width: 100%;
}
.article-content .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  color: #151515;
}
.article-content .big-title {
  font-size: 36px;
}
.article-content .center {
  display: block;
  text-align: center;
  margin: auto;
}
.article-content .big-btn {
  max-width: 380px;
  margin: auto;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 100px;
  background: #3498db;
  color: #Fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.article-content .big-btn:hover {
  background-color: #2d3436 !important;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.25);
}
.article-content li {
  font-size: 16px;
  color: #2e3246;
}
.article-content iframe {
  margin: 40px 0;
  max-width: 100%;
  width: 100%;
  height: 450px;
}
.article-content a {
  text-decoration: underline;
  color: #d63031;
}
.article-content .sub-image-text {
  font-size: 12px;
  color: #7f8c8d;
}
.article-content b {
  font-weight: bold;
}
.article-content ol li {
  margin: 20px 0;
}
.article-content p {
  font-size: 16px;
  line-height: 1.85em;
  color: #2e3246;
}
.article-content blockquote {
  font-size: 16px;
  background: #fafafa;
  border-bottom: 1px solid #ededed;
  padding: 30px;
  border-radius: 5px;
  font-family: monospace;
  margin: 30px 0;
}
.article-content .image {
  max-width: 425px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.article-content .image img {
  width: 100%;
  border-radius: 5px;
}
.article-content .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 22px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  background: #d63031;
  max-width: 200px;
  margin: auto auto 10px auto;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.article-content .btn:hover {
  background: #2d3436;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.25);
}
.article-content .btn.blue {
  background: #3498db;
}

.article-keywords {
  border-top: 1px solid #dfe6e9;
  margin: 40px 0;
  padding: 10px 0;
  text-align: center;
}

.keyword {
  font-size: 12px;
  color: #7f8c8d;
}

aside {
  position: relative;
  max-width: 300px;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.aside-wrapper {
  position: sticky;
  top: 30px;
}

.aside-casinos {
  margin-bottom: 50px;
}

.aside-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.aside-content-card {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.aside-content-card:last-child {
  margin-bottom: 0;
}

.card-logo {
  width: 100px;
  height: 100px;
  flex: none;
  box-shadow: 0 10px 40px 0 rgba(109, 141, 173, 0.25);
  border-radius: 5px;
}
.card-logo img {
  width: 100%;
  border-radius: 5px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.card-title:hover {
  color: #7f8c8d;
}

.casino-rating {
  margin: 5px 0;
}

.rating-star .star {
  font-size: 14px;
}

.card-description {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 10px;
}

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

.comments {
  margin: 50px 0;
  padding: 30px;
  background: #f1f3f4;
  box-sizing: border-box;
  border-radius: 5px;
}

.comments-form-title {
  font-weight: 700;
  font-size: 28px;
}

.comments-form-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: #7f8c8d;
  margin: 5px 0 30px 0;
}

form * {
  box-sizing: border-box;
}

textarea {
  height: 180px;
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 11px 15px;
  margin-bottom: 30px;
}

input {
  display: block;
  max-width: 400px;
  width: 100%;
  height: 45px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 11px 15px;
  margin-bottom: 30px;
}

button {
  max-width: 400px;
  width: 100%;
  height: 45px;
  border: none;
  background: #636e72;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
button:hover {
  background: #57606f;
}

.comments-wrapper {
  margin-bottom: 30px;
}

.comment-title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.comment {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 20px;
}
.comment a {
  color: #d63031;
}

.comment.reply {
  margin-left: 40px;
}

.comment-avatar {
  background: url("../img/emptyUser.webp") no-repeat center/cover;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex: none;
}

.comment-name {
  font-weight: 700;
  font-size: 16px;
}

.comment-text {
  font-size: 16px;
  margin: 15px 0;
}

.comment-date {
  font-size: 12px;
  color: #7f8c8d;
}

@media screen and (max-width: 1024px) {
  aside {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  .article-main {
    gap: 0;
  }
  .article-header {
    padding: 30px 0;
  }
  .tags {
    flex-wrap: wrap;
    bottom: -40px;
  }
  aside {
    display: none;
  }
  .author {
    margin: 70px 0 40px 0;
  }
  .article-content .title {
    font-size: 28px;
  }
  .article-content .big-btn {
    font-size: 16px;
  }
  .news-grid {
    flex-direction: column;
    gap: 30px;
  }
  .news-card {
    max-width: 100%;
  }
  .comments {
    padding: 15px;
  }
  .comments-form-title {
    font-size: 20px;
  }
  .comments-form-subtitle {
    font-size: 12px;
  }
  .comment-title {
    font-size: 20px;
  }
  .tags {
    position: static;
    margin-top: 20px;
  }
}/*# sourceMappingURL=article.css.map */