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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: #ffffff;
}

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

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

/* ========= NAV ========= */
.btc_topBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 16px 0;
}

.btc_navContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btc_brandLogo img {
  height: 68px;
}

.btc_navLinks {
  display: flex;
  list-style: none;
  gap: 38px;
}

.btc_navLinks a {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.btc_navLinks a:hover {
  color: #c0392b;
}

.btc_menuToggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.btc_menuToggle span {
  width: 26px;
  height: 3px;
  background: #1a1a1a;
  transition: 0.3s;
}

/* ========= HERO ========= */
.btc_heroDisplay {
  position: relative;
  background: linear-gradient(135deg, #1a0a00 0%, #8b1a1a 50%, #c0392b 100%);
  padding-top: 80px;
}

.btc_heroDisplay.overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 10, 0, 0.45);
  z-index: 1;
}

.btc_heroInner {
  position: relative;
  z-index: 2;
}

.btc_heroWrap {
  height: calc(95vh - 180px);
  min-height: 690px;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_heroColumn {
  max-width: 920px;
  margin: 0 auto;
}

.btc_heroWrap.align-items-center { align-items: center; }
.btc_heroWrap.text-center { text-align: center; }
.btc_heroWrap.justify-content-center { justify-content: center; }

.btc_heroDisplay h1 {
  font-family: "Poppins", sans-serif;
  line-height: 1.35;
  font-weight: 850 !important;
  font-size: 3.8rem;
}

.text-white { color: #fff; }
.mb-4 { margin-bottom: 2rem; }

.btc_heroDisplay p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.btn-video {
  display: inline-block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease;
}

.btn-video:hover { transform: scale(1.12); }

.btn-video .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  font-size: 15px;
  transform: translate(-38%, -50%);
}

.btn-video .icon-play img {
  width: 32px;
  height: 32px;
}

/* ========= CASINO LIST ========= */
.btc_catalogZone {
  padding: 100px 0;
  background: #fafafa;
}

.btc_catalogWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_catalogHeader {
  text-align: center;
  margin-bottom: 56px;
}

.btc_catalogHeader h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 16px;
}

.btc_catalogHeader p {
  font-size: 1.1rem;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
}

.btc_casinosList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.btc_casinoRow {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.btc_casinoRow:hover {
  box-shadow: 0 8px 28px rgba(192,57,43,0.15);
  transform: translateY(-2px);
}

.btc_logoSection {
  flex: 0 0 160px;
  text-align: center;
}

.btc_logoSection img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
}

.btc_logoSection h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.btc_ratingSection {
  flex: 0 0 110px;
  text-align: center;
}

.btc_scoreDisplay {
  margin-bottom: 8px;
}

.btc_scoreNumber {
  font-size: 32px;
  font-weight: 800;
  color: #c0392b;
  line-height: 1;
}

.btc_scoreMax {
  font-size: 16px;
  font-weight: 600;
  color: #999;
}

.btc_starsDisplay {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.btc_starsDisplay img {
  width: 16px;
  height: 16px;
  filter: invert(26%) sepia(80%) saturate(1600%) hue-rotate(348deg) brightness(80%) contrast(95%);
}

.btc_bonusSection {
  flex: 1;
  padding: 0 24px;
  border-left: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
}

.btc_bonusLabel {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.btc_bonusAmount {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.btc_bonusReward {
  font-size: 16px;
  color: #c0392b;
  font-weight: 700;
  line-height: 1.35;
}

.btc_featuresSection {
  flex: 1;
  padding: 0 16px;
}

.btc_featuresList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btc_featuresList li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}

.btc_featuresList li:last-child { margin-bottom: 0; }

.btc_featuresList li img {
  width: 18px;
  height: 18px;
  filter: invert(26%) sepia(80%) saturate(1600%) hue-rotate(348deg) brightness(80%) contrast(95%);
}

.btc_actionSection {
  flex: 0 0 160px;
  text-align: center;
}

.btc_claimButton {
  display: block;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.btc_claimButton:hover {
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  transform: scale(1.05);
}

.btc_termsNote {
  font-size: 11px;
  color: #999;
  font-style: italic;
}

/* ========= FEATURES ========= */
.btc_featuresArea {
  padding: 100px 0 0;
}

.btc_featureWrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-sm-6 { width: 50%; padding: 0 15px; }
.col-lg-4 { width: 33.333333%; padding: 0 15px; }
.col-lg-5 { width: 41.666667%; padding: 0 15px; }
.col-lg-6 { width: 50%; padding: 0 15px; }

.single-feature {
  background: #fff;
  padding: 38px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.single-feature:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.mb-100 { margin-bottom: 100px; }

.feature-content {
  margin-bottom: 20px;
}

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.feature-content h4 {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0;
}

.single-feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ========= ABOUT ========= */
.btc_aboutArea {
  padding-top: 75px;
  padding-bottom: 70px;
}

.btc_aboutWrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-img {
  margin-bottom: 30px;
}

.about-img img {
  min-width: 100%;
  border-radius: 6px;
}

.section-title h2 {
  color: #1a1a1a;
  font-size: 48px;
  line-height: 48px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 40px;
}

p {
  font-size: 14px;
  color: #555;
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 15px 0;
}

.about-text {
  margin-bottom: 30px;
}

.about-text p {
  letter-spacing: 0.2px;
  margin-bottom: 42px;
}

.primary-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 18px 38px;
  color: #fff;
  background: #c0392b;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.primary-btn:hover {
  background: #8b1a1a;
}

/* ========= INFO SECTION ========= */
.btc_infoSection {
  padding: 3em 0;
}

.btc_infoWrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.h3 { font-size: 1.9rem; }
.text-dark { color: #111 !important; }
.mb-3 { margin-bottom: 1rem; }
.ml-auto { margin-left: auto !important; }

.circle-background {
  position: relative;
}

.circle-background:after {
  width: 320px;
  height: 320px;
  content: "";
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  bottom: -95px;
  right: -95px;
  background: #f5e6e6;
}

.img-responsive { border-radius: 6px; }

.check-list {
  margin-bottom: 55px;
}

.list-unstyled {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.check-list li:before {
  left: 0;
  font-size: 22px;
  top: -0.4rem;
  content: "✓";
  position: absolute;
}

.check-list.success li:before {
  color: #c0392b;
  font-weight: bold;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.6s;
}

[data-aos].aos-animate { opacity: 1; }
[data-aos-delay="120"] { transition-delay: 0.12s; }

/* ========= FOOTER ========= */
.btc_footer {
  position: relative;
  z-index: 1;
  padding: 42px 0;
  background-color: #1a0a00;
}

.btc_footerWrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.btc_regulatorBox {
  background: rgba(192, 57, 43, 0.1);
  border: 2px solid #c0392b;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 42px;
  text-align: center;
}

.btc_regulatorBox h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.btc_regulatorLogos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.btc_regulatorLogos a {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btc_regulatorLogos a:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}

.btc_regulatorLogos img {
  height: 64px;
  width: auto;
}

.btc_disclaimerBox {
  background: #fff3cd;
  border-left: 5px solid #c0392b;
  padding: 28px 36px;
  margin-bottom: 48px;
  border-radius: 4px;
}

.btc_disclaimerBox h4 {
  color: #1a0a00;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btc_disclaimerBox p {
  color: #333;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copywrite-text {
  font-size: 15px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 420;
}

.copywrite-text p {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.copywrite-text a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 420;
}

.copywrite-text a:hover,
.copywrite-text a:focus {
  color: #e74c3c;
}

.footer-logo a {
  display: block;
}

.footer-logo a img {
  max-height: 68px;
  filter: brightness(0) invert(1);
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-info a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.social-info a:hover,
.social-info a:focus {
  color: #e74c3c;
}

/* ========= AGE POPUP ========= */
.btc_agePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 10, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.btc_agePopup.btc_hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btc_popupContent {
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  padding: 48px 42px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  text-align: center;
}

.btc_popupInner h2 {
  color: #1a0a00;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.btc_popupInner p {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.btc_popupButtons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.btc_confirmBtn,
.btc_declineBtn {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btc_confirmBtn {
  background: #c0392b;
  color: #fff;
}

.btc_confirmBtn:hover {
  background: #8b1a1a;
  transform: translateY(-2px);
}

.btc_declineBtn {
  background: #e0e0e0;
  color: #333;
}

.btc_declineBtn:hover {
  background: #ccc;
}

/* ========= CONTACT ========= */
.btc_contactHero {
  background: linear-gradient(135deg, #1a0a00 0%, #8b1a1a 50%, #c0392b 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.btc_contactHeroInner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_contactHero h1 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.btc_contactHero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

.btc_contactZone {
  padding: 100px 0;
  background: #fafafa;
}

.btc_contactWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_contactLayout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.btc_contactInfo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.btc_infoBlock {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.btc_infoBlock:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.12);
}

.btc_infoIcon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btc_infoIcon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.btc_infoText h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.btc_infoText p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.btc_contactForm {
  background: #fff;
  padding: 48px 42px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.btc_contactForm h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
}

.btc_formSubtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}

.btc_formFields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.btc_fieldGroup {
  display: flex;
  flex-direction: column;
}

.btc_fieldGroup label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.btc_fieldGroup input,
.btc_fieldGroup select,
.btc_fieldGroup textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.btc_fieldGroup input:focus,
.btc_fieldGroup select:focus,
.btc_fieldGroup textarea:focus {
  outline: none;
  border-color: #c0392b;
}

.btc_fieldGroup textarea {
  resize: vertical;
  min-height: 120px;
}

.btc_fieldError {
  border-color: #e53e3e !important;
}

.btc_errorMsg {
  display: none;
  color: #e53e3e;
  font-size: 13px;
  margin-top: 6px;
}

.btc_submitBtn {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  padding: 16px 42px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btc_submitBtn:hover {
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  transform: translateY(-2px);
}

.btc_successPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 10, 0, 0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.btc_successPopup.btc_showPopup {
  opacity: 1;
  visibility: visible;
}

.btc_successContent {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 90%;
  padding: 48px 42px;
  text-align: center;
}

.btc_successIcon {
  width: 80px;
  height: 80px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.btc_successIcon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.btc_successInner h2 {
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 16px;
}

.btc_successInner p {
  font-size: 16px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 28px;
}

.btc_closeSuccess {
  background: #c0392b;
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btc_closeSuccess:hover { background: #8b1a1a; }

/* ========= LEGAL PAGES ========= */
.btc_legalHero {
  background: linear-gradient(135deg, #1a0a00 0%, #8b1a1a 50%, #c0392b 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.btc_legalHeroInner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_legalHero h1 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.btc_updateDate {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

.btc_legalContent {
  padding: 100px 0;
  background: #fafafa;
}

.btc_legalWrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.btc_textBlock {
  background: #fff;
  padding: 42px 48px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.btc_textBlock h2 {
  font-size: 1.8rem;
  color: #c0392b;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.btc_textBlock p {
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  margin: 0;
}

/* ========= RESPONSIVE ========= */
@media (min-width: 768px) {
  .btc_infoSection { padding: 8.5em 0; }
}

@media (max-width: 991.98px) {
  .btc_heroDisplay h1 { font-size: 2.2rem; }
  .btc_heroWrap { height: calc(72vh - 180px); min-height: 620px; }
  .col-lg-4, .col-lg-5, .col-lg-6 { width: 100%; }
  .circle-background:after { display: none; }
  .btc_contactHero h1 { font-size: 2.4rem; }
  .btc_contactLayout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 767px) {
  .col-sm-6 { width: 100%; }
  .btc_menuToggle { display: flex; }

  .btc_navLinks {
    position: fixed;
    top: 74px;
    right: -100%;
    background: #fff;
    flex-direction: column;
    width: 280px;
    padding: 32px 24px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    gap: 24px;
  }

  .btc_navLinks.btc_menuOpen { right: 0; }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .copywrite-text { margin-bottom: 17px; }
  .footer-logo { margin-bottom: 17px; }
  .btc_regulatorBox { padding: 24px 16px; }
  .btc_regulatorLogos { gap: 24px; }
  .btc_regulatorLogos img { height: 48px; }
  .btc_disclaimerBox { padding: 20px 24px; }
  .btc_popupContent { padding: 32px 24px; }
  .btc_popupInner h2 { font-size: 24px; }
  .btc_popupButtons { flex-direction: column; }
  .btc_confirmBtn, .btc_declineBtn { width: 100%; }
  .btc_contactHero { padding: 120px 0 60px; }
  .btc_contactZone { padding: 60px 0; }
  .btc_contactForm { padding: 32px 24px; }
  .btc_contactForm h2 { font-size: 1.8rem; }
  .btc_legalHero { padding: 120px 0 60px; }
  .btc_legalHero h1 { font-size: 2.2rem; }
  .btc_legalContent { padding: 60px 0; }
  .btc_textBlock { padding: 28px 24px; }
  .btc_textBlock h2 { font-size: 1.5rem; }
  .btc_textBlock p { font-size: 15px; }
}

@media (max-width: 1024px) {
  .btc_casinoRow {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 20px;
  }
  .btc_logoSection { flex: 0 0 140px; }
  .btc_ratingSection { flex: 0 0 100px; }
  .btc_bonusSection {
    flex: 1 1 200px;
    border-left: none;
    border-right: none;
    border-top: 2px solid #f0f0f0;
    padding: 16px 0 0 0;
  }
  .btc_featuresSection {
    flex: 1 1 200px;
    padding: 16px 0 0 0;
    border-top: 2px solid #f0f0f0;
  }
  .btc_actionSection {
    flex: 0 0 100%;
    border-top: 2px solid #f0f0f0;
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .btc_catalogZone { padding: 60px 0; }
  .btc_catalogHeader h2 { font-size: 2rem; }
  .btc_casinoRow {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }
  .btc_logoSection { flex: 0 0 auto; }
  .btc_logoSection img { width: 100px; height: 100px; }
  .btc_ratingSection { flex: 0 0 auto; }
  .btc_bonusSection, .btc_featuresSection {
    flex: 0 0 auto;
    width: 100%;
    border: none;
    padding: 16px 0;
    border-top: 2px solid #f0f0f0;
  }
  .btc_featuresList { display: flex; flex-direction: column; align-items: center; }
  .btc_actionSection { width: 100%; }
  .btc_claimButton { width: 100%; max-width: 280px; margin: 0 auto 8px; }
}

.img-invert-dark {
  filter: brightness(1) invert(1);
}

/* ========= LOGO PLACEHOLDER ========= */
.btc_logoPlaceholder {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 12px;
  letter-spacing: 1px;
}

.btc_logoNetbet {
  background: linear-gradient(135deg, #1a3c6e 0%, #2563b0 100%);
}

.btc_logoParty {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.btc_safetyLabel {
  font-size: 11px;
  font-weight: 700;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
