@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
:root {
  --bc-bg: #2a292e;
  --bc-card: #35343a;
  --bc-hover: #3d3c43;
  --bc-green: #53c05f;
  --bc-secondary: #f8f7fb;
  --bc-text: #ffffff;
  --bc-muted: #b0b0bc;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bc-bg);
  color: var(--bc-text);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
.bc-wrapper {
  padding-top: 70px;
  overflow-x: clip;
}
.bc-container {
  max-width: 1200px;
  margin: 0 auto;
}
.bc-main-wrap {
  padding: 0 20px;
}
.bc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bc-bg);
  border-bottom: 1px solid rgba(83, 192, 95, 0.2);
}
.bc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  height: 70px;
}
.bc-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.bc-logo-link {
  display: block;
  line-height: 0;
}
.bc-header-logo img {
  display: block;
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.25));
}
.bc-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.bc-nav-list {
  display: flex;
  gap: 20px;
}
.bc-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}
.bc-nav-link:hover {
  color: var(--bc-green);
}
.bc-nav-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.bc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.3;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.bc-btn--primary {
  background: var(--bc-green);
  color: #fff;
  box-shadow: 0 0 15px rgba(83, 192, 95, 0.3);
}
.bc-btn--primary:hover {
  background: #45a850;
  box-shadow: 0 0 20px rgba(83, 192, 95, 0.5);
}
.bc-btn--secondary {
  background: var(--bc-hover);
  color: var(--bc-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bc-btn--secondary:hover {
  background: var(--bc-card);
}
.bc-btn--outline {
  background: transparent;
  color: var(--bc-green);
  border: 1px solid var(--bc-green);
}
.bc-btn--outline:hover {
  background: rgba(83, 192, 95, 0.12);
}
.bc-btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}
.bc-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.bc-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}
.bc-burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bc-text);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.bc-burger-line:nth-child(1) {
  top: 0;
}
.bc-burger-line:nth-child(2) {
  top: 11px;
}
.bc-burger-line:nth-child(3) {
  bottom: 0;
}
body.bc-nav-open .bc-burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
body.bc-nav-open .bc-burger-line:nth-child(2) {
  opacity: 0;
}
body.bc-nav-open .bc-burger-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}
.bc-mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--bc-card);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s, visibility 0s 0.3s;
  z-index: 999;
  padding: 24px 20px 40px;
  overflow-y: auto;
}
body.bc-nav-open .bc-mobile-nav {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s, visibility 0s;
}
body.bc-nav-open {
  overflow: hidden;
}
.bc-mobile-nav .bc-nav-list {
  flex-direction: column;
  gap: 0;
}
.bc-mobile-nav .bc-nav-link {
  font-size: 1.1rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bc-mobile-nav-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.bc-mobile-nav-actions .bc-btn {
  flex: 1;
}
html {
  scroll-behavior: smooth;
}
.bc-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: url("/banner-1.png") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.bc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 41, 46, 0.7);
}
.bc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}
.bc-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.bc-hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.bc-block {
  max-width: 1200px;
  margin: 60px auto;
  scroll-margin-top: 90px;
}
.bc-block h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.bc-info-table h2 {
  text-align: left;
  padding-left: 20px;
  border-left: 4px solid var(--bc-green);
}
.bc-table-wrap {
  overflow-x: auto;
  background: var(--bc-card);
  border-radius: 12px;
  border: 1px solid rgba(83, 192, 95, 0.2);
}
.bc-table {
  width: 100%;
  text-align: left;
}
.bc-table th,
.bc-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}
.bc-table th {
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--bc-green);
}
.bc-table tr:last-child td {
  border-bottom: none;
}
.bc-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.bc-mirrors-block p {
  text-align: center;
  margin-bottom: 20px;
  color: var(--bc-muted);
}
.bc-mirrors-block td a {
  color: var(--bc-green);
  text-decoration: underline;
}
.bc-status-active {
  color: var(--bc-green);
}
.bc-winners-block .bc-table th:nth-child(1) {
  width: 50px;
}
.bc-app-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: center;
}
.bc-app-table-wrap {
  min-width: 0;
}
.bc-download-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}
.bc-download-btns .bc-btn {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  font-size: 1.05rem;
  padding: 14px 20px;
  gap: 12px;
  white-space: normal;
}
.bc-download-btns .bc-btn svg {
  flex-shrink: 0;
}
.bc-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}
.bc-app-badge {
  background: var(--bc-card);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(83, 192, 95, 0.2);
}
.bc-bonus-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.bc-bonus-card {
  background: var(--bc-card);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(83, 192, 95, 0.25);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bc-bonus-card:hover {
  border-color: rgba(83, 192, 95, 0.5);
  box-shadow: 0 0 20px rgba(83, 192, 95, 0.1);
}
.bc-bonus-icon {
  font-size: 2rem;
  line-height: 1;
}
.bc-bonus-label {
  font-size: 1.1rem;
  color: var(--bc-green);
  font-weight: 600;
}
.bc-bonus-amount {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.bc-bonus-desc {
  color: var(--bc-muted);
  font-size: 0.95rem;
}
.bc-bonus-tc {
  font-size: 0.75rem;
  color: #888;
  margin-top: auto;
}
.bc-bonus-card .bc-btn {
  width: 100%;
  max-width: 280px;
  min-height: 48px;
}
.bc-slot-wrap {
  background: var(--bc-card);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid rgba(83, 192, 95, 0.3);
}
.bc-slot-wrap p {
  margin-bottom: 30px;
  color: var(--bc-muted);
}
.bc-slot-disclaimer {
  margin: 24px auto 0 !important;
  font-size: 0.85rem;
  max-width: 600px;
}
.bc-slot-machine {
  background: #1a191c;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}
.bc-slot-reels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}
.bc-slot-reel {
  flex: 1;
  height: 100px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  line-height: 1;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.5);
}
.bc-slot-symbol {
  display: block;
  transition: opacity 0.15s;
}
.bc-slot-reel::before {
  content: "\1F352\A\1F34B\A\1F347\A\2B50\A\1F48E\A 7\FE0F\20E3\A\1F514\A\1F0CF\A\1F352";
  white-space: pre;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 100px;
  display: none;
}
.bc-slot-reel.spinning .bc-slot-symbol {
  opacity: 0;
}
.bc-slot-reel.spinning::before {
  display: block;
  animation: bcSpin 0.35s linear infinite;
}
.bc-btn--spin {
  min-width: 140px;
}
.bc-slot-result {
  margin-top: 24px;
  background: rgba(83, 192, 95, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--bc-green);
}
.bc-slot-result p {
  margin-bottom: 16px;
}
.bc-slot-win-title,
.bc-slot-lose-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.bc-slot-result .bc-btn {
  width: 100%;
  max-width: 320px;
}
.bc-review-block .bc-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bc-card);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--bc-green);
}
.bc-review-block .bc-author-avatar {
  width: 60px;
  height: 60px;
  background: var(--bc-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.bc-author-info {
  min-width: 0;
}
.bc-author-name {
  font-size: 1.1rem;
}
.bc-author-role {
  display: block;
  font-size: 0.9rem;
  color: var(--bc-green);
  margin-bottom: 8px;
}
.bc-author-bio {
  font-size: 0.9rem;
  color: var(--bc-muted);
  margin-bottom: 8px;
}
.bc-author-link {
  font-size: 0.9rem;
  color: var(--bc-green);
}
.bc-author-link:hover {
  text-decoration: underline;
}
.bc-text-wrap {
  background: var(--bc-card);
  border: 1px solid rgba(83, 192, 95, 0.2);
  border-radius: 12px;
  padding: 30px;
  overflow-wrap: break-word;
}
.bc-text-wrap .bc-h1,
.bc-text-wrap h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: left;
}
.bc-text-wrap h2 {
  font-size: 1.6rem;
  margin: 30px 0 15px;
  text-align: left;
}
.bc-text-wrap h3 {
  font-size: 1.25rem;
  margin: 25px 0 10px;
}
.bc-text-wrap p {
  margin-bottom: 15px;
  color: var(--bc-muted);
}
.bc-text-wrap ul,
.bc-text-wrap ol {
  margin: 0 0 15px;
  padding-left: 22px;
  color: var(--bc-muted);
}
.bc-text-wrap ul {
  list-style: disc;
}
.bc-text-wrap ol {
  list-style: decimal;
}
.bc-text-wrap li {
  margin-bottom: 6px;
}
.bc-text-wrap strong {
  color: var(--bc-text);
}
.bc-text-wrap a {
  color: var(--bc-green);
  text-decoration: underline;
}
.bc-text-wrap table {
  margin-bottom: 15px;
}
.bc-text-wrap td,
.bc-text-wrap th {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.bc-text-wrap > :last-child {
  margin-bottom: 0;
}
.bc-info-page-wrap {
  padding: 0 20px;
}
.bc-content-box--info {
  max-width: 900px;
  margin: 40px auto 60px;
}
.bc-responsible-block {
  background: var(--bc-card);
  border: 1px solid rgba(83, 192, 95, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
}
.bc-responsible-block > p {
  color: var(--bc-muted);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.bc-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.bc-responsible-card {
  background: var(--bc-hover);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.bc-responsible-card:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 192, 95, 0.4);
}
.bc-responsible-icon {
  font-size: 2rem;
  line-height: 1;
}
.bc-responsible-card strong {
  font-size: 1.05rem;
}
.bc-responsible-card > span:not(.bc-responsible-icon) {
  color: var(--bc-green);
  font-size: 0.9rem;
}
.bc-responsible-card .bc-responsible-desc {
  color: var(--bc-muted);
  font-size: 0.85rem;
}
.bc-18plus-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding: 16px 20px;
  background: rgba(255, 179, 0, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 179, 0, 0.3);
  color: var(--bc-muted);
  font-size: 0.9rem;
}
.bc-18plus-badge span:first-child {
  font-size: 1.6rem;
  line-height: 1;
}
.bc-faq-block .bc-faq-item {
  background: var(--bc-card);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.bc-faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--bc-text);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.4;
}
.bc-faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bc-green);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.bc-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
  color: var(--bc-muted);
}
.bc-faq-answer p {
  padding-bottom: 20px;
}
.bc-faq-answer strong {
  color: var(--bc-text);
}
.bc-comments-block {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 30px 40px;
  align-items: start;
}
.bc-comments-block > h2 {
  grid-column: 1 / -1;
}
.bc-comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.bc-comment-card {
  background: var(--bc-card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.bc-comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.bc-comment-avatar {
  width: 50px;
  height: 50px;
  background: var(--bc-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.bc-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
}
.bc-comment-name {
  font-size: 1.05rem;
}
.bc-comment-date {
  font-size: 0.85rem;
  color: var(--bc-muted);
}
.bc-comment-stars {
  color: #ffb300;
  font-size: 1rem;
  flex-basis: 100%;
}
.bc-comment-text {
  color: var(--bc-muted);
  font-size: 0.95rem;
}
.bc-comment-form-wrap {
  background: var(--bc-card);
  padding: 30px;
  border-radius: 12px;
  position: sticky;
  top: 90px;
  border: 1px solid rgba(83, 192, 95, 0.2);
  min-width: 0;
}
.bc-comment-form-wrap h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.bc-form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bc-form-label {
  font-size: 0.9rem;
  font-weight: 500;
}
.bc-form-note {
  font-size: 0.8rem;
  color: var(--bc-muted);
}
.bc-form-input,
.bc-form-textarea {
  width: 100%;
  padding: 12px;
  background: var(--bc-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}
.bc-form-textarea {
  resize: vertical;
  min-height: 110px;
}
.bc-form-input:focus,
.bc-form-textarea:focus {
  outline: none;
  border-color: var(--bc-green);
}
.bc-star-rating {
  display: flex;
  gap: 4px;
}
.bc-star {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}
.bc-star.active,
.bc-star:hover,
.bc-star-rating:hover .bc-star:hover ~ .bc-star {
  color: #ffb300;
}
.bc-star-rating:hover .bc-star {
  color: #ffb300;
}
.bc-star-rating:hover .bc-star:hover ~ .bc-star {
  color: rgba(255, 255, 255, 0.2);
}
.bc-comment-form .bc-btn {
  width: 100%;
  margin-top: 5px;
}
.bc-form-success {
  color: var(--bc-green);
  font-weight: 600;
  text-align: center;
  padding: 20px;
  background: rgba(83, 192, 95, 0.1);
  border-radius: 8px;
}
.bc-footer {
  background: var(--bc-bg);
  border-top: 1px solid rgba(83, 192, 95, 0.2);
  padding: 60px 20px 30px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: var(--bc-muted);
  text-align: center;
}
.bc-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.bc-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.bc-footer-brand img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.25));
}
.bc-footer-tagline {
  margin-top: 10px;
}
.bc-footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.bc-footer-nav a:hover {
  color: var(--bc-text);
}
.bc-footer-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.bc-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.bc-badge {
  background: var(--bc-card);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.bc-badge--link:hover {
  color: var(--bc-text);
  background: var(--bc-hover);
}
.bc-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--bc-green);
  color: var(--bc-green);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
}
.bc-footer-social {
  display: flex;
  gap: 15px;
}
.bc-footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bc-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.bc-footer-social a:hover {
  background: var(--bc-green);
  color: #fff;
}
.bc-footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.bc-footer-legal {
  font-size: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  color: #777;
  line-height: 1.5;
}
.bc-footer-legal p {
  margin-bottom: 8px;
}
.bc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease-out;
}
.bc-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes bcSpin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-88.889%);
  }
}
@media (max-width: 992px) {
  .bc-header-inner .bc-nav-wrap {
    display: none;
  }
  .bc-header-inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .bc-header-logo img {
    width: 120px;
    opacity: 0.9;
  }
  .bc-header-actions {
    gap: 10px;
  }
  .bc-header-actions .bc-btn--secondary {
    display: none;
  }
  .bc-header-actions .bc-btn {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
  .bc-burger {
    display: block;
  }
  .bc-app-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bc-download-btns {
    padding: 8px 0 0;
  }
  .bc-comments-block {
    grid-template-columns: 1fr;
  }
  .bc-comment-form-wrap {
    position: static;
  }
  .bc-hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .bc-block {
    margin: 40px auto;
  }
  .bc-block h2 {
    font-size: 1.6rem;
  }
  .bc-bonus-wrap {
    grid-template-columns: 1fr;
  }
  .bc-bonus-card {
    padding: 26px 20px;
  }
  .bc-slot-wrap {
    padding: 30px 16px;
  }
  .bc-slot-machine {
    padding: 20px 16px;
  }
  .bc-slot-reel {
    height: 90px;
    font-size: 3rem;
  }
  .bc-slot-reel::before {
    line-height: 90px;
  }
  .bc-responsible-block {
    padding: 30px 20px;
  }
  .bc-text-wrap,
  .bc-comment-form-wrap {
    padding: 22px 18px;
  }
  .bc-text-wrap .bc-h1,
  .bc-text-wrap h1 {
    font-size: 1.6rem;
  }
  .bc-text-wrap h2 {
    font-size: 1.3rem;
  }
  .bc-review-block .bc-author-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .bc-hero {
    min-height: 420px;
    padding: 50px 20px;
  }
  .bc-hero-subtitle {
    font-size: 1.05rem;
  }
  .bc-faq-question {
    padding: 16px;
    font-size: 1rem;
  }
  .bc-faq-answer {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .bc-header-logo img {
    width: 104px;
  }
  .bc-header-actions .bc-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .bc-main-wrap,
  .bc-info-page-wrap {
    padding: 0 16px;
  }
  .bc-slot-reel {
    height: 80px;
    font-size: 2.6rem;
  }
  .bc-slot-reel::before {
    line-height: 80px;
  }
  .bc-hero-title {
    font-size: 1.8rem;
  }
  .bc-bonus-amount {
    font-size: 1.9rem;
  }
}
.entry-content {
  color: inherit;
}
.widget-area {
  margin: 0;
}
.wp-block-group {
  padding: 0;
}
.elementor-widget {
  width: 100%;
}
.elementor-section {
  display: block;
}
.elementor-container {
  max-width: 100%;
}
.elementor-column {
  float: left;
}
.ast-container {
  margin: 0;
}
.site-content {
  padding: 0;
}
.site-main {
  width: 100%;
}
.screen-reader-text,
#wpadminbar,
.wp-post-image {
  display: none;
}
