/* Vampire Circus — purple crypt / gold / crimson */
html, body { margin: 0; padding: 0; background: #14082a; }
body.vc-body {
  min-height: 100%; overflow-x: hidden;
  font-family: Figtree, system-ui, sans-serif;
  color: #f1e6d6; -webkit-font-smoothing: antialiased;
  background-color: #14082a;
  background-image: linear-gradient(rgba(14,5,32,.72), rgba(14,5,32,.86)), var(--vc-bg);
  background-size: cover, cover;
  background-position: center top, center top;
  background-attachment: fixed, fixed;
}
* { box-sizing: border-box; }
a { color: #f6cd6b; text-decoration: none; }
a:hover { color: #ffe7a8; }
a:focus-visible, button:focus-visible {
  outline: 2px solid #ffd873; outline-offset: 2px;
}

@keyframes vcMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes vcGlow {
  0%,100% { box-shadow: 0 6px 0 #7a1226, 0 12px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(246,205,107,.55); }
  50% { box-shadow: 0 6px 0 #7a1226, 0 12px 24px rgba(0,0,0,.45), 0 0 26px 4px rgba(246,205,107,.35); }
}

.vc-shell { display: block; min-height: 100vh; padding-left: 232px; }
.vc-main { min-width: 0; }

/* Aside desktop */
.vc-aside--desktop {
  position: fixed; left: 0; top: 0; height: 100vh; z-index: 40;
  width: 232px; display: flex; flex-direction: column; gap: 10px;
  padding: 18px 14px; overflow-y: auto;
  background: linear-gradient(180deg, #24103f 0%, #180a2d 100%);
  border-right: 2px solid rgba(246,205,107,.35);
  box-shadow: 8px 0 30px rgba(0,0,0,.55);
}
.vc-logo-wrap {
  width: 100%; height: 76px; display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; margin-bottom: 4px;
}
.vc-logo--aside {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.vc-aside-rule {
  height: 2px; flex: 0 0 auto; margin: 8px 0;
  background: linear-gradient(90deg, transparent, rgba(246,205,107,.6), transparent);
}
.vc-nav-slot--desktop .vc-main-nav {
  display: flex; flex-direction: column; gap: 8px;
}
.vc-nav-slot--desktop .vc-nav-link {
  display: block; padding: 12px 14px; border-radius: 10px;
  background: #3a1d6b; border: 1px solid rgba(246,205,107,.28);
  color: #f1e6d6; font-size: 15px; font-weight: 600; letter-spacing: .2px;
}
.vc-nav-slot--desktop .vc-nav-link:hover {
  background: #4a2686; color: #ffe7a8;
}

/* Drawer */
.vc-overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(6,2,14,.7);
}
.vc-overlay[hidden] { display: none !important; }
.vc-drawer {
  position: fixed; left: 0; top: 0; bottom: 0; z-index: 70;
  width: min(282px, 84vw); display: flex; flex-direction: column; gap: 10px;
  padding: 18px 14px; overflow-y: auto;
  background: linear-gradient(180deg, #24103f 0%, #180a2d 100%);
  border-right: 2px solid rgba(246,205,107,.35);
  box-shadow: 14px 0 40px rgba(0,0,0,.6);
  transform: translateX(0); transition: transform .3s ease;
}
.vc-drawer[hidden] {
  display: flex !important; transform: translateX(-104%); pointer-events: none;
}
.vc-drawer-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.vc-drawer-title {
  font-family: Rye, serif; color: #ffd873; font-size: 18px;
}
.vc-drawer-close {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(246,205,107,.4); background: #3a1d6b;
  color: #ffd873; font-size: 22px; line-height: 1; cursor: pointer;
}
.vc-nav-slot--mobile .vc-main-nav {
  display: flex; flex-direction: column; gap: 8px;
}
.vc-nav-slot--mobile .vc-nav-link {
  display: block; padding: 12px 14px; border-radius: 10px;
  background: #3a1d6b; border: 1px solid rgba(246,205,107,.28);
  color: #f1e6d6; font-size: 15px; font-weight: 600;
}
.vc-nav-slot--mobile .vc-nav-link:hover {
  background: #4a2686; color: #ffe7a8;
}

/* Header */
.vc-header {
  position: relative;
  padding: clamp(14px, 2vw, 26px) clamp(16px, 4vw, 40px) 0;
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}
.vc-burger {
  display: none; flex: 0 0 auto; width: 46px; height: 46px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0; border-radius: 12px; background: #3a1d6b;
  border: 1px solid rgba(246,205,107,.4); cursor: pointer;
}
.vc-burger span {
  display: block; width: 22px; height: 3px; border-radius: 2px; background: #ffd873;
}
.vc-header-spacer { flex: 1; }

/* Buttons Example 1 */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: Rye, serif; letter-spacing: .5px; cursor: pointer;
  text-decoration: none; transition: filter .18s ease;
}
.vc-btn:hover { filter: brightness(1.08); color: inherit; }
.vc-btn--block { width: 100%; }
.vc-btn--login {
  padding: 13px 16px; border-radius: 10px;
  background: linear-gradient(180deg, #e8203c 0%, #93061f 100%);
  border: 2px solid #f6cd6b; color: #fff8e7; font-size: 17px;
  box-shadow: 0 6px 0 rgba(0,0,0,.35); flex: 0 0 auto;
}
.vc-btn--signup {
  flex: 0 0 auto; padding: 13px 26px; border-radius: 999px;
  background: linear-gradient(180deg, #ffd873 0%, #e8a127 55%, #b4701a 100%);
  border: 2px solid #5c1024; color: #3d0812;
  font-size: clamp(14px, 1.4vw, 18px);
  animation: vcGlow 3.2s ease-in-out infinite;
}
.vc-btn--play {
  margin-left: clamp(0px, 10vw, 150px);
  padding: 19px 44px; border-radius: 999px;
  background: linear-gradient(180deg, #ff2f4d 0%, #a3081f 100%);
  border: 2px solid #f6cd6b; color: #fff8e7;
  font-size: clamp(18px, 2.1vw, 28px);
  box-shadow: 0 7px 0 #5c1024, 0 14px 30px rgba(0,0,0,.5);
}
.vc-btn--more {
  padding: 13px 34px; border-radius: 999px; border: 2px solid #5c1024;
  background: linear-gradient(180deg, #ffd873 0%, #e8a127 55%, #b4701a 100%);
  color: #3d0812; font-size: 16px;
  box-shadow: 0 6px 0 #7a1226, 0 12px 24px rgba(0,0,0,.45);
}

/* Hero */
.vc-hero { padding: clamp(8px, 2vw, 24px) clamp(16px, 4vw, 40px) 0; }
.vc-hero-frame {
  max-width: 1160px; margin: 0 auto; position: relative;
  border-radius: 20px; overflow: hidden;
  border: 3px solid rgba(246,205,107,.5);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.vc-hero-img { display: block; width: 100%; height: auto; }
.vc-hero-copy {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: clamp(12px, 2vw, 22px); padding: 0 clamp(16px, 3vw, 44px) 0 0;
}
.vc-hero-title {
  margin: 0; font-family: Rye, serif; font-weight: 400;
  font-size: clamp(24px, 3.4vw, 52px); line-height: 1.08; color: #ffe7a8;
  text-shadow: 0 3px 0 #6d0f22, 0 10px 26px rgba(0,0,0,.65);
}

/* Sections */
.vc-section {
  max-width: 1160px; margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(16px, 4vw, 40px) 0;
}
.vc-section--tight { padding-bottom: 0; }
.vc-heading {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.vc-heading-title {
  margin: 0; font-family: Rye, serif; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px); color: #ffe7a8;
  text-shadow: 0 3px 0 #6d0f22; white-space: nowrap;
}
.vc-heading-title--sm { font-size: clamp(20px, 2.2vw, 30px); }
.vc-heading-line {
  flex: 1 1 auto; height: 2px;
  background: linear-gradient(90deg, rgba(246,205,107,.7), transparent);
}
.vc-more-wrap { display: flex; justify-content: center; margin-top: 22px; }

/* Games */
.vc-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.vc-game { display: flex; flex-direction: column; gap: 8px; }
.vc-game.is-hidden { display: none !important; }
.vc-game-card {
  display: block; padding: 4px; border-radius: 16px;
  background: linear-gradient(150deg, #f6cd6b 0%, #a86d16 38%, #ffe7a8 62%, #8d5a10 100%);
  box-shadow: 0 10px 26px rgba(0,0,0,.5); transition: filter .18s ease;
}
.vc-game-card:hover { filter: brightness(1.08); }
.vc-game-inner {
  display: block; padding: 3px; border-radius: 13px;
  background: linear-gradient(180deg, #4a1030, #240a22);
}
.vc-game-inner img {
  display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 10px;
}
.vc-game-meta {
  display: flex; align-items: center; gap: 7px; padding: 6px 10px;
  border-radius: 999px; background: rgba(58,29,107,.85);
  border: 1px solid rgba(246,205,107,.3); align-self: flex-start;
  font-size: 13px; font-weight: 600; color: #e7d9f3;
}
.vc-game-meta img { width: 16px; height: 16px; object-fit: contain; display: block; }

/* Winners */
.vc-winners-band {
  position: relative; overflow: hidden; padding: 14px 0;
  background: linear-gradient(180deg, rgba(109,15,34,.75), rgba(36,10,34,.75));
  border-top: 2px solid rgba(246,205,107,.4);
  border-bottom: 2px solid rgba(246,205,107,.4);
}
.vc-winners-track {
  display: flex; width: max-content; gap: 14px;
  animation: vcMarquee 46s linear infinite;
}
.vc-win {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 16px 8px 8px; border-radius: 999px; flex: 0 0 auto;
  background: rgba(26,10,48,.85); border: 1px solid rgba(246,205,107,.32);
}
.vc-win-thumb {
  display: block; padding: 2px; border-radius: 9px;
  background: linear-gradient(150deg, #f6cd6b, #a86d16);
}
.vc-win-thumb img {
  display: block; width: 34px; height: 51px; object-fit: cover; border-radius: 7px;
}
.vc-win-meta { display: flex; flex-direction: column; line-height: 1.25; }
.vc-win-name { font-size: 14px; font-weight: 700; color: #f1e6d6; }
.vc-win-amt { font-size: 14px; font-weight: 800; color: #ffd873; }

/* Content */
.vc-article {
  max-width: 900px; margin: 0 auto; padding: clamp(20px, 3vw, 40px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(36,16,63,.92), rgba(20,8,42,.94));
  border: 2px solid rgba(246,205,107,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.vc-content { font-size: 16px; line-height: 1.65; color: #e7d9f3; }
.vc-content h1, .vc-content h2 {
  margin: 0 0 14px; font-family: Rye, serif; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px); color: #ffe7a8; text-shadow: 0 3px 0 #6d0f22;
}
.vc-content h3 {
  margin: 26px 0 10px; font-family: Rye, serif; font-weight: 400;
  font-size: clamp(18px, 1.9vw, 24px); color: #ffd873;
}
.vc-content p { margin: 0 0 20px; }
.vc-content ul, .vc-content ol {
  margin: 0 0 20px; padding-left: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.vc-content li { font-size: 16px; line-height: 1.55; color: #e7d9f3; }
.vc-content a { color: #f6cd6b; }
.vc-content blockquote {
  margin: 26px 0; padding: 20px 24px; border-radius: 14px;
  background: rgba(109,15,34,.55); border-left: 5px solid #f6cd6b;
  font-size: 18px; line-height: 1.55; color: #fff3d9; font-style: italic;
}
.vc-content table {
  width: 100%; border-collapse: collapse; font-size: 15px; margin-bottom: 26px;
}
.vc-content table th {
  padding: 12px 14px; text-align: left; font-family: Rye, serif; font-weight: 400;
  font-size: 16px; color: #ffe7a8; border: 1px solid rgba(246,205,107,.35);
  background: linear-gradient(180deg, #8f0f22, #5c0a18);
}
.vc-content table td {
  padding: 11px 14px; border: 1px solid rgba(246,205,107,.22); color: #e7d9f3;
}
.vc-content table tr:nth-child(odd) td { background: rgba(58,29,107,.45); }
.vc-content table tr:nth-child(even) td { background: rgba(36,16,63,.55); }
.vc-content details {
  border-radius: 12px; background: rgba(58,29,107,.5);
  border: 1px solid rgba(246,205,107,.28); overflow: hidden; margin: 10px 0;
}
.vc-content summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 15px 18px; font-size: 16px; font-weight: 700; color: #f1e6d6; cursor: pointer;
  list-style: none;
}
.vc-content summary::-webkit-details-marker { display: none; }
.vc-content summary::after {
  content: "+"; flex: 0 0 auto; font-size: 20px; color: #ffd873; line-height: 1;
}
.vc-content details[open] summary::after { content: "–"; }
.vc-content details > *:not(summary) {
  margin: 0; padding: 0 18px 16px; font-size: 15px; line-height: 1.6; color: #e7d9f3;
}

/* FAQ accordion (from mock) — rebuilt from CMS light FAQ blocks */
.vc-faq {
  display: flex; flex-direction: column; gap: 10px;
  margin: 26px 0;
}
.vc-faq-item {
  border-radius: 12px; background: rgba(58,29,107,.5);
  border: 1px solid rgba(246,205,107,.28); overflow: hidden;
}
.vc-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 15px 18px; background: transparent; border: 0;
  cursor: pointer; text-align: left;
  font-family: Figtree, sans-serif; font-size: 16px; font-weight: 700; color: #f1e6d6;
}
.vc-faq-q:hover { color: #ffe7a8; }
.vc-faq-sign {
  flex: 0 0 auto; font-size: 20px; color: #ffd873; line-height: 1;
}
.vc-faq-a {
  margin: 0; padding: 0 18px 16px;
  font-size: 15px; line-height: 1.6; color: #e7d9f3;
}
.vc-faq-a[hidden] { display: none !important; }
.vc-content-cta { margin-top: 28px; display: flex; justify-content: center; }
.vc-content-cta .vc-btn--play { margin-left: 0; }

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* Providers */
.vc-prov-band {
  position: relative; overflow: hidden; padding: 16px 0;
  background: linear-gradient(180deg, rgba(36,16,63,.8), rgba(20,8,42,.8));
  border-top: 2px solid rgba(246,205,107,.4);
  border-bottom: 2px solid rgba(246,205,107,.4);
}
.vc-prov-track {
  display: flex; width: max-content; gap: 12px;
  animation: vcMarquee 60s linear infinite;
}
.vc-prov {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 146px; height: 56px; padding: 6px 10px; border-radius: 12px;
  background: rgba(58,29,107,.55); border: 1px solid rgba(246,205,107,.28);
}
.vc-prov img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block; opacity: .9;
}

/* Footer */
.vc-footer {
  margin-top: clamp(40px, 6vw, 80px); position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(36,16,63,.9) 0%, #14082a 100%);
  border-top: 3px solid rgba(246,205,107,.45);
  padding: clamp(28px, 4vw, 52px) clamp(16px, 4vw, 40px) 28px;
}
.vc-footer-art {
  position: absolute; right: -40px; bottom: -30px;
  width: clamp(240px, 32vw, 460px); opacity: .22; pointer-events: none;
}
.vc-footer-inner {
  position: relative; max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(18px, 2.5vw, 28px); text-align: center; width: 100%;
}
.vc-logo--footer {
  height: 56px; width: auto; max-width: 160px; object-fit: contain;
  display: block; margin: 0 auto;
}
.vc-footer-label {
  display: block; font-family: Rye, serif; font-size: 17px; color: #ffd873; margin-bottom: 12px;
}
.vc-nav-slot--footer { width: 100%; }
.vc-nav-slot--footer .vc-footer-nav {
  display: flex; flex-direction: row; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 12px 28px;
}
.vc-footer-link {
  font-size: 15px; font-weight: 600; color: #f1e6d6;
}
.vc-footer-link:hover { color: #ffe7a8; }
.vc-footer-col--pay {
  width: 100%; display: flex; flex-direction: column; align-items: center;
}
.vc-pay-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 16px;
}
.vc-pay {
  display: flex; align-items: center; justify-content: center;
  width: 70px; height: 34px; border-radius: 8px;
  background: rgba(58,29,107,.6); border: 1px solid rgba(246,205,107,.25);
}
.vc-pay img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.vc-safe-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
}
.vc-safe-img {
  height: 42px; width: auto; object-fit: contain; display: block; opacity: .9;
}
.vc-rg {
  position: relative; max-width: 1160px;
  margin: clamp(24px, 3vw, 40px) auto 0; padding-top: 18px;
  border-top: 1px solid rgba(246,205,107,.2);
  font-size: 13px; color: #a893bd; text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .vc-winners-track, .vc-prov-track, .vc-btn--signup { animation: none !important; }
}

@media (max-width: 980px) {
  .vc-shell { padding-left: 0; }
  .vc-aside--desktop { display: none !important; }
  .vc-burger { display: flex; }
  .vc-header { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .vc-games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .vc-hero-img { height: 340px; object-fit: cover; object-position: 22% 18%; }
  .vc-hero-copy {
    width: 100%; align-items: stretch; justify-content: space-between; text-align: center;
    padding: 16px; background: linear-gradient(180deg, rgba(14,5,32,0) 45%, rgba(14,5,32,.6) 68%, rgba(14,5,32,.92) 100%);
  }
  .vc-hero-title { order: 2; align-self: center; margin-top: auto; font-size: 25px; }
  .vc-btn--play {
    position: absolute; top: 33%; right: 16px; transform: translateY(-50%);
    margin-left: 0; padding: 14px 30px; font-size: 19px;
  }
  .vc-content-cta .vc-btn--play {
    position: static; transform: none; margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .vc-btn--signup { padding: 11px 16px; font-size: 13px; }
  .vc-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
