/* Prefix: tc- */
/* Mobile-first */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #121212;
  color: #F0F0F0;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #F0F0F0;
  text-decoration: none;
}

.go-link {
  cursor: pointer;
}

button {
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

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

/* ========== UTILITY ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== HEADER ========== */
.tc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1A1A2E;
  border-bottom: 1px solid #272F50;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.tc-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tc-hamburger {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #F0F0F0;
  font-size: 22px;
  border-radius: 8px;
  transition: background 0.2s;
}

.tc-hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.tc-hamburger:focus-visible,
.tc-header-search:focus-visible,
.tc-header-chat:focus-visible,
.tc-lang-select:focus-visible,
.tc-sidebar-item:focus-visible,
.tc-mobile-nav-item:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.tc-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: #F4FD2B;
  text-transform: uppercase;
}

.tc-logo-icon {
  height: 28px;
}

.tc-logo-text {
  height: 28px;
}

.tc-logo-flag {
  height: 16px;
  margin-left: 6px;
  flex-shrink: 0;
}

.tc-lang-select img {
  height: 16px;
  width: 22px;
  border-radius: 2px;
}

.tc-sidebar-bottom-item img {
  height: 20px;
  width: 28px;
  border-radius: 3px;
  flex-shrink: 0;
}

.tc-sidebar-toggle-row .tc-sidebar-icon {
  color: rgba(138,149,193,0.5);
}

.tc-logo img {
  display: inline-block;
}

.tc-logo-icon {
  display: none;
}

.tc-header-search {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: rgba(138,149,193,0.7);
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.2s;
}

.tc-header-search:hover {
  background: rgba(255,255,255,0.08);
}

.tc-header-spacer {
  flex: 1;
}

.tc-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.tc-btn-ghost {
  height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(138,149,193,0.3);
  border-radius: 8px;
  color: #F0F0F0;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  min-width: 45px;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-btn-ghost:hover {
  border-color: #F4FD2B;
  background: rgba(244,253,43,0.05);
}

.tc-btn-primary {
  height: 40px;
  padding: 0 20px;
  background: #F4FD2B;
  border: none;
  border-radius: 8px;
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  transition: filter 0.2s;
  min-width: 45px;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-btn-primary:hover {
  filter: brightness(0.9);
}

.tc-lang-select {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid #272F50;
  border-radius: 8px;
  color: #F0F0F0;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
  gap: 6px;
  min-width: auto;
}

.tc-header-chat {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: rgba(138,149,193,0.7);
  font-size: 18px;
  border-radius: 8px;
}

.tc-header-right .tc-btn-ghost,
.tc-header-right .tc-btn-primary,
.tc-header-right .tc-lang-select {
  display: flex;
}

.tc-header-right .tc-header-chat {
  display: none;
}

.tc-header-search {
  display: none;
}

@media (max-width: 767px) {
  .tc-btn-ghost {
    padding: 0 10px;
    font-size: 12px;
    height: 36px;
  }

  .tc-btn-primary {
    padding: 0 12px;
    font-size: 12px;
    height: 36px;
  }

  .tc-lang-select {
    height: 36px;
    padding: 0 8px;
    gap: 0;
  }

  .tc-lang-select span,
  .tc-lang-select svg {
    display: none;
  }

  .tc-header {
    gap: 4px;
    padding: 0 8px;
  }

  .tc-header-left {
    gap: 4px;
  }

  .tc-header-right {
    gap: 6px;
  }

  .tc-logo-text {
    display: none !important;
  }

  .tc-logo-icon {
    display: inline-block !important;
  }

  .tc-logo-flag {
    height: 14px !important;
  }

  .tc-header-left {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  .tc-hamburger {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 768px) {
  .tc-header-search {
    display: flex;
  }

  .tc-header-right .tc-header-chat {
    display: flex;
  }
}

/* ========== SIDEBAR ========== */
.tc-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.tc-sidebar-overlay.tc-active {
  opacity: 1;
  visibility: visible;
}

.tc-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 68px;
  background: #1D2442;
  border-right: 1px solid #272F50;
  z-index: 950;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
}

.tc-sidebar.tc-visible {
  transform: translateX(0);
}

.tc-sidebar.tc-expanded {
  width: 240px;
}

@media (min-width: 1024px) {
  .tc-sidebar {
    transform: translateX(0);
  }

  .tc-sidebar-overlay {
    display: none;
  }
}

.tc-sidebar-nav {
  flex: 1;
  padding: 8px 0;
}

.tc-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 22px;
  color: rgba(138,149,193,0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.tc-sidebar-item:hover {
  background: rgba(255,255,255,0.05);
  color: #F0F0F0;
}

.tc-sidebar-item.tc-active-item {
  color: #F4FD2B;
}

.tc-sidebar-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.tc-sidebar-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tc-sidebar-label {
  opacity: 0;
  transition: opacity 0.2s;
  flex: 1;
}

.tc-sidebar.tc-expanded .tc-sidebar-label {
  opacity: 1;
}

.tc-sidebar-badge {
  background: #22C55E;
  color: #121212;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}

.tc-sidebar.tc-expanded .tc-sidebar-badge {
  opacity: 1;
}

.tc-sidebar-chevron {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
  margin-left: auto;
}

.tc-sidebar.tc-expanded .tc-sidebar-chevron {
  opacity: 1;
}

.tc-sidebar-sep {
  height: 1px;
  background: #272F50;
  margin: 8px 16px;
}

.tc-sidebar-item.tc-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.tc-sidebar-bottom {
  padding: 12px 16px;
  padding-bottom: 76px;
  border-top: 1px solid #272F50;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 1024px) {
  .tc-sidebar-bottom {
    padding-bottom: 12px;
  }
}

.tc-sidebar-bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 6px;
  color: rgba(138,149,193,0.7);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.tc-sidebar-app-btn {
  display: none;
  height: 40px;
  background: rgba(244,253,43,0.1);
  border: 1px solid rgba(244,253,43,0.3);
  border-radius: 8px;
  color: #F4FD2B;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  white-space: nowrap;
}

.tc-sidebar.tc-expanded .tc-sidebar-app-btn {
  display: flex;
}

.tc-sidebar-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  overflow: hidden;
}

.tc-sidebar-toggle-row .tc-theme-toggle {
  display: none;
}

.tc-sidebar.tc-expanded .tc-sidebar-toggle-row {
  justify-content: space-between;
}

.tc-sidebar.tc-expanded .tc-sidebar-toggle-row .tc-theme-toggle {
  display: block;
}

.tc-theme-toggle {
  width: 42px;
  height: 24px;
  background: #272F50;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.tc-theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #F4FD2B;
  border-radius: 50%;
  transition: transform 0.2s;
}

/* ========== SIDEBAR PROMO BUTTONS ========== */
.tc-sidebar-top-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.tc-sidebar:not(.tc-expanded) .tc-sidebar-top-btns {
  padding: 8px 0;
  align-items: center;
}

.tc-sidebar:not(.tc-expanded) .tc-sidebar-promo-btn {
  width: 44px;
  min-height: 44px;
  border-radius: 8px;
  padding: 0;
  justify-content: center;
  overflow: hidden;
}

.tc-sidebar:not(.tc-expanded) .tc-promo-label {
  display: none;
}

.tc-sidebar:not(.tc-expanded) .tc-promo-img {
  position: static;
  height: 28px;
}

.tc-sidebar-promo-btn {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}

.tc-sidebar-promo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tc-promo-yellow {
  background: #645108;
}

.tc-promo-yellow::before {
  background: conic-gradient(from 0deg, #FFDB4B, #645108, #FFDB4B);
}

.tc-promo-purple {
  background: #411B47;
}

.tc-promo-purple::before {
  background: conic-gradient(from 0deg, #CB5AFF, #411B47, #CB5AFF);
}

.tc-promo-label {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  z-index: 1;
}

.tc-promo-img {
  height: 36px;
  position: absolute;
  right: 8px;
  z-index: 1;
}

/* ========== MAIN CONTENT ========== */
.tc-main {
  padding: 16px;
  padding-bottom: 80px;
  min-height: calc(100vh - 60px);
}

@media (min-width: 1024px) {
  .tc-main {
    margin-left: 68px;
    padding-bottom: 24px;
    transition: margin-left 0.3s;
  }

  .tc-main.tc-shifted {
    margin-left: 240px;
  }
}

/* ========== CONTENT TYPOGRAPHY ========== */
.tc-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #F0F0F0;
  margin: 32px 0 16px;
  line-height: 1.3;
}

.tc-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #F0F0F0;
  margin: 24px 0 12px;
  line-height: 1.35;
}

.tc-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.82);
  margin: 0 0 16px;
}

.tc-content ul,
.tc-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.tc-content ul {
  list-style: disc;
}

.tc-content ol {
  list-style: decimal;
}

.tc-content li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.82);
  margin-bottom: 6px;
}

.tc-content a:not(.go-link):not(.tc-btn-ghost):not(.tc-btn-primary):not(.tc-logo):not(.tc-social-icon):not(.tc-footer-col-link):not(.tc-sidebar-item):not(.tc-mobile-nav-item) {
  color: #F4FD2B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.tc-content a:not(.go-link):not(.tc-btn-ghost):not(.tc-btn-primary):not(.tc-logo):not(.tc-social-icon):not(.tc-footer-col-link):not(.tc-sidebar-item):not(.tc-mobile-nav-item):hover {
  opacity: 0.8;
}

.tc-content strong {
  font-weight: 700;
  color: #F0F0F0;
}

.tc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}

.tc-content th {
  background: rgba(39, 47, 80, 0.6);
  color: #F0F0F0;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #272F50;
}

.tc-content td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(39, 47, 80, 0.4);
  color: rgba(240, 240, 240, 0.82);
}

.tc-content tr:last-child td {
  border-bottom: none;
}

/* ========== HERO ========== */
.tc-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  background-color: #1A1A40;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.tc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 64, 0.3) 0%,
    rgba(26, 26, 64, 0.55) 50%,
    rgba(26, 26, 64, 0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.tc-hero-logo {
  display: block;
  margin: 0 auto 12px;
  height: 56px;
  position: relative;
  z-index: 1;
}

.tc-hero-h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .tc-hero {
    padding: 24px 16px;
    background-position: center center;
  }

  .tc-hero::before {
    background: linear-gradient(
      180deg,
      rgba(26, 26, 64, 0.45) 0%,
      rgba(26, 26, 64, 0.7) 50%,
      rgba(26, 26, 64, 0.85) 100%
    );
  }

  .tc-hero-logo {
    height: 40px;
    margin-bottom: 8px;
  }

  .tc-hero-h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .tc-deposit-input-row {
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .tc-deposit-amount {
    min-width: 0;
    flex: 1 1 0;
  }

  .tc-deposit-currency {
    width: auto;
    min-width: 56px;
    padding: 0 8px;
    flex: 0 0 auto;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .tc-hero {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .tc-hero-h1,
  .tc-hero-logo {
    width: 100%;
  }

  .tc-deposit-card,
  .tc-bonus-card {
    flex: 1;
  }
}

/* Deposit card */
.tc-deposit-card {
  background: rgba(29, 36, 66, 0.85);
  border: 1px solid rgba(39, 47, 80, 0.6);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

.tc-deposit-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(138,149,193,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.tc-deposit-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.tc-deposit-amount {
  flex: 1;
  height: 52px;
  background: #121212;
  border: 1px solid #272F50;
  border-radius: 10px;
  color: #F0F0F0;
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px;
  font-family: 'Raleway', sans-serif;
}

.tc-deposit-amount::placeholder {
  color: rgba(138,149,193,0.4);
}

.tc-deposit-currency {
  width: 80px;
  height: 52px;
  background: #121212;
  border: 1px solid #272F50;
  border-radius: 10px;
  color: #F0F0F0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tc-deposit-btn {
  width: 100%;
  height: 52px;
  background: #F4FD2B;
  border: none;
  border-radius: 10px;
  color: #121212;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: filter 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-deposit-btn:hover {
  filter: brightness(0.9);
}

.tc-deposit-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tc-payment-icon {
  height: 32px;
  opacity: 0.85;
}

.tc-payment-more {
  width: 42px;
  height: 28px;
  opacity: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(138,149,193,0.5);
  font-weight: 700;
}

.tc-promo-link {
  color: rgba(138,149,193,0.5);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.tc-promo-link:hover {
  color: #F4FD2B;
}

/* Bonus card */
.tc-bonus-card {
  background: linear-gradient(135deg, rgba(135,38,255,0.7) 0%, rgba(91,20,204,0.7) 100%), url('/assets/images/goldbet/goldbet-pl-hero-mini.webp') center/cover no-repeat;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}

.tc-bonus-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: -1;
}

.tc-bonus-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  z-index: -1;
}

.tc-bonus-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.tc-bonus-headline {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.tc-bonus-amount {
  font-size: 36px;
  font-weight: 900;
  color: #F4FD2B;
  line-height: 1.1;
  margin-bottom: 8px;
}

.tc-bonus-sub {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}

.tc-bonus-fs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.tc-bonus-badge {
  background: #F4FD2B;
  color: #121212;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: inherit;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.6;
}

/* ========== SEARCH BAR ========== */
.tc-search-bar {
  position: relative;
  margin-bottom: 24px;
}

.tc-search-input {
  width: 100%;
  height: 48px;
  background: #1D2442;
  border: 1px solid #272F50;
  border-radius: 12px;
  padding: 0 16px 0 44px;
  color: #F0F0F0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

.tc-search-input::placeholder {
  color: rgba(138,149,193,0.4);
}

.tc-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(138,149,193,0.5);
  font-size: 16px;
  pointer-events: none;
}

/* ========== SECTIONS ========== */
.tc-section {
  margin-bottom: 32px;
}

.tc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tc-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #F0F0F0;
}

.tc-section-link {
  font-size: 13px;
  font-weight: 600;
  color: #F4FD2B;
}

/* ========== FOOTER ========== */
.tc-footer {
  background: #1D2442;
  border-top: 1px solid #272F50;
  padding: 40px 16px 24px;
}

@media (min-width: 1024px) {
  .tc-footer {
    margin-left: 68px;
  }

  .tc-footer.tc-shifted {
    margin-left: 240px;
  }
}

.tc-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .tc-footer-top {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.tc-footer-brand {
  flex-shrink: 0;
}

.tc-footer-logo {
  height: 32px;
  margin-bottom: 16px;
}

.tc-footer-socials {
  display: flex;
  gap: 10px;
}

.tc-social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.tc-social-icon:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}

.tc-social-icon svg {
  width: 28px;
  height: 28px;
}

.tc-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  flex: 1;
}

@media (min-width: 768px) {
  .tc-footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tc-footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #F0F0F0;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tc-footer-col-link {
  display: block;
  color: rgba(138,149,193,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
}

.tc-footer-col-link:hover {
  color: #F4FD2B;
}

.tc-footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #272F50;
  border-bottom: 1px solid #272F50;
  margin-bottom: 20px;
}

.tc-badge {
  height: 32px;
  max-width: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}
.tc-badge-link { display: inline-flex; align-items: center; transition: opacity .2s; }
a.tc-badge-link:hover { opacity: .75; }


.tc-footer-payments {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tc-footer-payment {
  height: 24px;
  display: block;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.tc-footer-payment:hover {
  opacity: 1;
}

.tc-footer-copy {
  font-size: 12px;
  color: rgba(138,149,193,0.4);
  line-height: 1.6;
  text-align: center;
}

/* ========== MOBILE BOTTOM NAV ========== */
.tc-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #1A1A2E;
  border-top: 1px solid #272F50;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  padding: 0 4px;
}

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

.tc-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 45px;
  min-height: 45px;
  color: rgba(138,149,193,0.6);
  font-size: 10px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s;
}

.tc-mobile-nav-item:hover,
.tc-mobile-nav-item.tc-active-item {
  color: #F4FD2B;
}

.tc-mobile-nav-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-mobile-nav-icon svg {
  width: 20px;
  height: 20px;
}

.tc-mobile-nav-label {
  font-size: 10px;
  font-weight: 600;
}

.tc-mobile-nav-center .tc-mobile-nav-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
  border-radius: 50%;
  margin-top: -20px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.tc-mobile-nav-center .tc-mobile-nav-icon svg {
  color: #fff;
}

.tc-mobile-nav-center {
  color: rgba(138,149,193,0.6);
}

/* ========== SCROLLBAR ========== */
.tc-sidebar::-webkit-scrollbar {
  width: 4px;
}

.tc-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.tc-sidebar::-webkit-scrollbar-thumb {
  background: #272F50;
  border-radius: 4px;
}

/* ========== FAQ ========== */
.tc-faq { display: flex; flex-direction: column; gap: 8px; }
.tc-faq-item { background: #1D2442; border: 1px solid #272F50; border-radius: 12px; transition: border-color 0.2s; }
.tc-faq-item[open] { border-color: rgba(244,253,43,0.3); }
.tc-faq-question { padding: 16px 20px; font-size: 15px; font-weight: 700; color: #F0F0F0; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; min-height: 45px; }
.tc-faq-question::-webkit-details-marker { display: none; }
.tc-faq-question::after { content: '\25BE'; color: rgba(138,149,193,0.5); transition: transform 0.2s; font-size: 14px; flex-shrink: 0; margin-left: 12px; }
.tc-faq-item[open] .tc-faq-question::after { transform: rotate(180deg); color: #F4FD2B; }
.tc-faq-answer { padding: 12px 0 16px; font-size: 14px; color: rgba(138,149,193,0.7); line-height: 1.6; border-top: 1px solid #272F50; margin: 0 20px; }

/* ═══════════════════════════════════════════════════════════════
   CasinoGrid (.cg-*)  —  Goldbet dark theme
   ═══════════════════════════════════════════════════════════════ */

.cg-section {
  position: relative;
  margin-bottom: 40px;
}

.cg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.cg-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0F0F0;
  margin: 0;
  line-height: 1.2;
  font-family: 'Raleway', sans-serif;
}

.cg-view-all {
  font-size: 0.82rem;
  color: #A0A8C0;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid #272F50;
  border-radius: 16px;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cg-view-all:hover {
  border-color: #F4FD2B;
  color: #F4FD2B;
}
.cg-view-all:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.cg-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cg-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  flex: 1;
  min-width: 0;
}
.cg-slider::-webkit-scrollbar {
  display: none;
}

.cg-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1D2442;
  border: 1px solid #272F50;
  color: #F0F0F0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  padding: 0;
  user-select: none;
}
.cg-arrow:hover {
  border-color: rgba(244,253,43,0.4);
  color: #F4FD2B;
  background: #272F50;
}
.cg-arrow:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.cg-item {
  flex: 0 0 160px;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #1D2442;
  border: 1px solid #272F50;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cg-item:hover {
  transform: translateY(-3px);
  border-color: rgba(244,253,43,0.4);
  box-shadow: 0 0 0 1px rgba(244,253,43,0.15), 0 8px 24px rgba(0,0,0,0.3);
}
.cg-item:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.cg-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.cg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.2s ease;
}
.cg-item:hover .cg-img img {
  transform: scale(1.04);
}

.cg-meta {
  padding: 8px 10px 10px;
}
.cg-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: #F0F0F0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Raleway', sans-serif;
}
.cg-provider {
  font-size: 0.7rem;
  color: #A0A8C0;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .cg-arrow { display: none; }
  .cg-item { flex: 0 0 130px; }
  .cg-slider { gap: 8px; }
  .cg-heading { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cg-item, .cg-arrow, .cg-view-all { transition: none; }
  .cg-item:hover { transform: none; }
  .cg-img img { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   BigWins Ticker (.bw-*)  —  Goldbet dark theme
   ═══════════════════════════════════════════════════════════════ */

.bw-section {
  margin: 32px 0;
}

.bw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bw-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #F0F0F0;
  font-family: 'Raleway', sans-serif;
}

.bw-slider {
  position: relative;
  overflow: hidden;
  height: 84px;
}

.bw-cards {
  display: grid;
  grid-template-columns: repeat(var(--bw-per-row, 6), 1fr);
  gap: 12px;
  height: 84px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .bw-cards { grid-template-columns: repeat(var(--bw-per-row-md, 4), 1fr); }
}

.bw-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1D2442;
  border: 1px solid #272F50;
  border-radius: 16px;
  padding: 0 12px 0 0;
  height: 84px;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}
.bw-card:hover {
  border-color: rgba(244,253,43,0.4);
}

.bw-section .bw-card img {
  flex: 0 0 auto;
  width: 60px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  display: block;
}

.bw-card-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bw-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: #F4FD2B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-game {
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #F0F0F0;
  opacity: 0.7;
}

.bw-nickname {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #A0A8C0;
}

.bw-meta {
  font-size: 0.66rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #A0A8C0;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .bw-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    height: auto;
  }
  .bw-slider::-webkit-scrollbar { display: none; }
  .bw-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
    gap: 8px;
    padding-bottom: 2px;
  }
  .bw-card {
    flex: 0 0 min(190px, calc(50vw - 8px));
    width: min(190px, calc(50vw - 8px));
    height: 90px;
    scroll-snap-align: start;
  }
  .bw-section .bw-card img {
    width: 50px;
    height: 90px;
  }
}

@keyframes bw-slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bw-slide-out-right {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}
.bw-card--entering { animation: bw-slide-in-left 0.4s ease forwards; }
.bw-card--leaving  { animation: bw-slide-out-right 0.35s ease forwards; pointer-events: none; }

.bw-mult {
  color: #F4FD2B;
  font-weight: 700;
  background: rgba(244,253,43,0.15);
  border-radius: 4px;
  padding: 1px 4px;
}

@media (prefers-reduced-motion: reduce) {
  .bw-card--entering, .bw-card--leaving { animation: none; }
  .bw-card { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   LiveBets Table (.lb-*)  —  Goldbet dark theme
   ═══════════════════════════════════════════════════════════════ */

.lb-section {
  margin: 32px 0;
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #272F50;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.lb-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #F0F0F0;
  padding-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.lb-tabs {
  display: flex;
  align-items: center;
}

.lb-tab {
  height: 44px;
  padding: 0 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #A0A8C0;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}
.lb-tab--active {
  color: #F4FD2B;
  border-bottom-color: #F4FD2B;
}
.lb-tab:hover:not(.lb-tab--active) {
  color: #F0F0F0;
}
.lb-tab:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.lb-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lb-table {
  min-width: 540px;
}

.lb-thead {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.9fr 1fr 1fr 1.2fr;
  padding: 6px 12px;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A0A8C0;
  background: rgba(39,47,80,0.5);
}

.lb-tbody {
  height: calc(var(--lb-rows, 10) * 40px);
  overflow: hidden;
  contain: layout;
  overflow-anchor: none;
  transition: opacity 200ms ease;
}
.lb-tbody--fade { opacity: 0; }

.lb-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.9fr 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 0 12px;
  height: 40px;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: #F0F0F0;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease;
  box-sizing: border-box;
}
.lb-row:nth-child(odd) {
  background: rgba(255,255,255,0.055);
}
.lb-row:hover {
  background: rgba(255,255,255,0.09);
}
.lb-row:focus-visible {
  outline: 2px solid #F4FD2B;
  outline-offset: 2px;
}

.lb-col-game {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.lb-game-thumb {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.lb-game-name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #F0F0F0;
}

.lb-game-info {
  min-width: 0;
  overflow: hidden;
}

.lb-game-player { display: none; }
.lb-col-right { display: none; }

.lb-col-player,
.lb-col-time {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-col-bet { min-width: 0; }
.lb-col-mult { min-width: 0; }

.lb-col-payout {
  font-size: 0.8rem;
  font-weight: 700;
  color: #F4FD2B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.lb-badge--bet {
  background: rgba(39,47,80,0.8);
  color: inherit;
}
.lb-badge--mult {
  background: rgba(244,253,43,0.12);
  color: #F4FD2B;
}

@media (max-width: 767px) {
  .lb-body {
    overflow-x: visible;
    min-height: calc(var(--lb-rows, 10) * 64px);
  }
  .lb-tbody {
    height: calc(var(--lb-rows, 10) * 64px);
  }
  .lb-table { min-width: 0; }
  .lb-thead { display: none; }
  .lb-row {
    grid-template-columns: 1fr auto;
    height: 60px;
    margin-bottom: 4px;
  }
  .lb-col-player, .lb-col-time, .lb-col-bet, .lb-col-mult, .lb-col-payout { display: none; }
  .lb-col-game { grid-template-columns: 48px 1fr; }
  .lb-game-thumb {
    width: 48px;
    height: 48px;
    max-height: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
  .lb-game-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .lb-game-name { font-size: 0.82rem; }
  .lb-game-player {
    display: block;
    font-size: 0.72rem;
    color: #A0A8C0;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .lb-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .lb-payout-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F4FD2B;
    white-space: nowrap;
  }
  .lb-header {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    gap: 0;
  }
  .lb-heading {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .lb-tabs {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 3px;
    margin-bottom: 14px;
    gap: 2px;
  }
  .lb-tab {
    flex: 1;
    text-align: center;
    padding: 0 6px;
    height: 36px;
    font-size: 0.8rem;
    border-bottom: none;
    border-radius: 12px;
    bottom: 0;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .lb-tab--active {
    background: rgba(244,253,43,0.15);
    border-bottom-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-row, .lb-tab, .lb-tbody { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Go Overlay  (#go-overlay / .go-spinner)  —  Goldbet dark theme
   ═══════════════════════════════════════════════════════════════ */

.go-link {
  cursor: pointer;
}

#go-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}

#go-overlay.go-overlay--visible {
  display: flex;
}

.go-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: #F4FD2B;
  border-radius: 50%;
  animation: go-spin 0.8s linear infinite;
}

@keyframes go-spin {
  to { transform: rotate(360deg); }
}

/* ========== SNIPPET: CookieBanner (GDPR) ========== */
.cb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 4000; }
.cb-banner {
  position: fixed; bottom: 1rem; left: 1rem; z-index: 4001;
  max-width: 380px; padding: 1.25rem; border-radius: 12px;
  background: #1A1A2E; color: #F0F0F0; font-family: 'Raleway', sans-serif;
  font-size: .875rem; line-height: 1.5; box-shadow: 0 4px 24px rgba(0,0,0,.5);
  border: 1px solid #272F50;
}
.cb-text { margin: 0 0 1rem; }
.cb-text a { color: #F4FD2B; text-decoration: underline; }
.cb-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cb-btn { border: none; border-radius: 8px; padding: .5rem 1rem; font-size: .8125rem; font-weight: 700; cursor: pointer; transition: opacity .2s; font-family: 'Raleway', sans-serif; }
.cb-btn:hover { opacity: .85; }
.cb-btn--accept, .cb-btn--save { background: #F4FD2B; color: #121212; }
.cb-btn--reject { background: transparent; color: #F0F0F0; border: 1px solid #272F50; }
.cb-btn--settings { background: transparent; color: #F4FD2B; padding: .5rem .25rem; text-decoration: underline; }
.cb-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 4002; width: 90%; max-width: 480px; max-height: 85vh;
  overflow-y: auto; border-radius: 12px; padding: 1.5rem;
  background: #1A1A2E; color: #F0F0F0; font-family: 'Raleway', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); border: 1px solid #272F50;
}
.cb-modal__title { margin: 0 0 .5rem; font-size: 1.125rem; }
.cb-modal__desc { margin: 0 0 1.25rem; font-size: .8125rem; opacity: .8; line-height: 1.5; }
.cb-categories { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.cb-cat { border: 1px solid #272F50; border-radius: 8px; padding: .75rem 1rem; }
.cb-cat__header { display: flex; justify-content: space-between; align-items: center; }
.cb-cat__name { font-weight: 600; font-size: .875rem; }
.cb-cat__always { font-size: .75rem; opacity: .6; }
.cb-cat__desc { margin: .375rem 0 0; font-size: .75rem; opacity: .7; line-height: 1.4; }
.cb-modal__actions { display: flex; gap: .5rem; justify-content: flex-end; }
.cb-toggle { position: relative; display: inline-block; width: 40px; height: 22px; cursor: pointer; }
.cb-toggle input { opacity: 0; width: 0; height: 0; }
.cb-toggle__slider { position: absolute; inset: 0; border-radius: 22px; background: rgba(255,255,255,.2); transition: background .2s; }
.cb-toggle__slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; }
.cb-toggle input:checked + .cb-toggle__slider { background: #F4FD2B; }
.cb-toggle input:checked + .cb-toggle__slider::before { transform: translateX(18px); }
@media (max-width: 767px) {
  .cb-banner { left: 0; right: 0; bottom: 0; max-width: none; border-radius: 12px 12px 0 0; }
  .cb-modal { width: 95%; }
}

/* ========== SCROLL TO TOP ========== */
.tc-scroll-top {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.85);
  border: 1px solid #272F50;
  color: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(8px);
}

.tc-scroll-top.tc-visible {
  opacity: 1;
  visibility: visible;
}

.tc-scroll-top:hover {
  background: rgba(39, 47, 80, 0.95);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.cf-section { padding: 40px 0; }
.cf-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: #1D2442;
  border: 1px solid #272F50;
  border-radius: 10px;
  padding: 2rem 2.5rem;
}
.cf-title {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cf-group { margin-bottom: 1.25rem; }
.cf-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: rgba(138,149,193,0.7);
  margin-bottom: .35rem;
  font-size: .95rem;
}
.cf-label .cf-req { color: #EF4444; margin-left: 2px; }
.cf-input, .cf-textarea {
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #fff;
  background: #121212;
  border: 1.5px solid #272F50;
  border-radius: 10px;
  padding: .65rem .85rem;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-color: #F4FD2B;
  box-shadow: 0 0 0 3px rgba(244,253,43,.15);
}
.cf-textarea { min-height: 120px; resize: vertical; }
.cf-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0; width: 0;
  overflow: hidden;
}
.cf-btn {
  display: block;
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #121212;
  background: #F4FD2B;
  border: none;
  border-radius: 10px;
  padding: .8rem 1.5rem;
  cursor: pointer;
  transition: filter .15s, transform .15s;
  margin-top: .5rem;
}
.cf-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}
.cf-btn:active { transform: translateY(0); }
.cf-msg {
  text-align: center;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.cf-msg--ok { background: rgba(6,95,70,.2); color: #6EE7B7; border: 1px solid rgba(6,95,70,.4); }
.cf-msg--err { background: rgba(153,27,27,.2); color: #FCA5A5; border: 1px solid rgba(153,27,27,.4); }
