:root {
  --sht-bg:#02070d;
  --sht-panel:#07111d;
  --sht-ink:#fbfcff;
  --sht-muted:#a9b6c6;
  --sht-dim:#71849a;
  --sht-accent:#e25600;
  --sht-hot:#ff6a00;
  --sht-line:rgba(226,86,0,.36);
  --sht-gold:#ffd16b
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  background:linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),radial-gradient(circle at 86% 4%,rgba(226,86,0,.17),transparent 30rem),linear-gradient(180deg,#02060c,#050d17 48%,#01050a);
  background-size:44px 44px,44px 44px,auto,auto;
  color:var(--sht-ink);
  font-family:Arial,Helvetica,sans-serif
}

a {
  color:inherit;
  text-decoration:none
}

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

.sht-site {
  min-height:100vh;
  overflow:hidden
}

.sht-top {
  position:sticky;
  top:0;
  z-index:40;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
  min-height:60px;
  padding:10px max(28px,calc((100vw - 1280px)/2));
  border-bottom:1px solid rgba(226,86,0,.16);
  background:rgba(2,7,13,.94);
  backdrop-filter:blur(12px)
}

.sht-logo img {
  width:120px;
  filter:saturate(1.25)
}

.sht-nav {
  display:flex;
  justify-content:center;
  gap:clamp(18px,4vw,54px);
  color:#8197ae;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase
}

.sht-nav a:hover {
  color:var(--sht-hot)
}

.sht-top-btn,.sht-main-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid var(--sht-hot);
  background:linear-gradient(100deg,var(--sht-hot),var(--sht-accent));
  color:#05080d;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  transform:skewX(-10deg);
  box-shadow:0 14px 34px rgba(226,86,0,.24)
}

.sht-top-btn {
  min-height:31px;
  min-width:116px;
  font-size:.72rem
}

.sht-hero {
  position:relative;
  width:min(1280px,calc(100% - 64px));
  min-height:455px;
  margin:16px auto 0;
  overflow:hidden;
  border:1px solid rgba(226,86,0,.32);
  border-radius:6px;
  background:#030914;
  padding:clamp(30px,4.6vw,56px);
  display:flex;
  align-items:center
}

.sht-hero:before,.sht-hero:after {
  content:"";
  position:absolute;
  z-index:3;
  width:22px;
  height:22px;
  pointer-events:none
}

.sht-hero:before {
  left:12px;
  bottom:12px;
  border-left:1px solid var(--sht-hot);
  border-bottom:1px solid var(--sht-hot)
}

.sht-hero:after {
  right:12px;
  top:12px;
  border-right:1px solid var(--sht-hot);
  border-top:1px solid var(--sht-hot)
}

.sht-art {
  position:absolute;
  inset:0
}

.sht-art:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(2,7,13,.96),rgba(2,7,13,.76) 43%,rgba(2,7,13,.2) 76%),linear-gradient(180deg,rgba(2,7,13,.02),rgba(2,7,13,.88))
}

.sht-art img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center right;
  filter:saturate(1.13) contrast(1.08)
}

.sht-hero-copy {
  position:relative;
  z-index:2;
  max-width:740px
}

.sht-hero h1 {
  margin:0 0 22px;
  font-size:clamp(2.2rem,3.35vw,3.9rem);
  line-height:1.08;
  font-weight:950;
  letter-spacing:0
}

.sht-hero p {
  max-width:700px;
  margin:0;
  color:#cbd5df;
  font-size:clamp(1rem,1.22vw,1.22rem);
  line-height:1.58
}

.sht-main-btn {
  min-width:220px;
  margin-top:26px;
  color:#fff;
  background:transparent
}

.sht-providers {
  width:min(1280px,calc(100% - 64px));
  margin:0 auto;
  padding:22px 0 30px;
  border-bottom:1px solid rgba(226,86,0,.14);
  overflow:hidden
}

.sht-providers>strong {
  display:block;
  width:max-content;
  margin:0 auto 16px;
  color:var(--sht-hot);
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase
}

.sht-provider-mask {
  overflow:hidden
}

.sht-provider-mask>div {
  display:flex;
  gap:30px;
  width:max-content;
  animation:sht-move 34s linear infinite
}

.sht-provider-mask span {
  display:grid;
  flex:0 0 74px;
  min-height:32px;
  place-items:center;
  border:1px solid rgba(105,132,162,.24);
  background:#030914;
  opacity:.72
}

.sht-provider-mask img {
  max-width:60px;
  max-height:20px;
  filter:grayscale(1) brightness(.92)
}

@keyframes sht-move {
  to {
    transform:translateX(calc(-50% - 15px))
  }
}

.sht-stage,.sht-copy-flow,.sht-footer {
  width:min(1280px,calc(100% - 64px));
  margin:0 auto
}

.sht-stage {
  padding-top:54px
}

.sht-stage-title h2 {
  margin:0 0 18px;
  font-size:clamp(1.35rem,2.6vw,2.25rem);
  line-height:1.08
}

.sht-stage-title h2:before {
  content:"";
  display:inline-block;
  width:4px;
  height:1em;
  margin-right:9px;
  vertical-align:-.14em;
  background:var(--sht-hot)
}

.sht-game-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px
}

.sht-game {
  position:relative;
  overflow:hidden;
  min-height:245px;
  border:1px solid rgba(105,132,162,.24);
  background:#030914
}

.sht-game:before {
  content:"HOT";
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  border:1px solid var(--sht-accent);
  padding:3px 9px;
  color:var(--sht-hot);
  font-size:.64rem;
  font-weight:950
}

.sht-game img {
  width:100%;
  height:100%;
  min-height:245px;
  object-fit:cover;
  transition:transform .22s ease
}

.sht-game:hover img {
  transform:scale(1.04)
}

.sht-game div {
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  padding:48px 14px 14px;
  background:linear-gradient(180deg,transparent,rgba(2,7,13,.96))
}

.sht-game h3 {
  margin:0 0 10px;
  font-size:1rem
}

.sht-game a {
  color:var(--sht-hot);
  font-size:.76rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase
}

.sht-copy-flow {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding-top:58px
}

.sht-copy {
  border:1px solid rgba(105,132,162,.22);
  background:linear-gradient(180deg,rgba(8,19,32,.84),rgba(4,10,17,.92));
  padding:clamp(20px,3vw,32px)
}

.sht-copy:nth-child(even) {
  border-color:rgba(226,86,0,.31)
}

.sht-copy h2 {
  margin:0 0 16px;
  font-size:clamp(1.35rem,2.45vw,2.3rem);
  line-height:1.08
}

.sht-copy p {
  color:var(--sht-muted);
  line-height:1.68
}

.sht-table-scroll {
  overflow-x:auto;
  margin:18px 0
}

.sht-table {
  width:100%;
  border-collapse:collapse;
  border:1px solid rgba(226,86,0,.3);
  background:rgba(3,9,16,.74)
}

.sht-table th,.sht-table td {
  padding:13px 15px;
  border-bottom:1px solid rgba(105,132,162,.22);
  text-align:left;
  vertical-align:top
}

.sht-table th {
  background:rgba(226,86,0,.12);
  color:#fff;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase
}

.sht-list {
  display:grid;
  gap:10px;
  padding:0;
  margin:18px 0;
  list-style:none
}

.sht-list li {
  position:relative;
  padding-left:24px;
  color:var(--sht-muted);
  line-height:1.62
}

.sht-list li:before {
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:8px;
  height:8px;
  background:var(--sht-accent);
  box-shadow:0 0 16px rgba(226,86,0,.6)
}

.sht-faq-item {
  border-top:1px solid rgba(105,132,162,.22);
  padding:15px 0
}

.sht-faq-item summary {
  cursor:pointer;
  color:#fff;
  font-weight:950
}

.sht-footer {
  display:grid;
  gap:24px;
  padding:66px 0 30px;
  color:var(--sht-muted)
}

.sht-footer-grid {
  display:grid;
  grid-template-columns:minmax(230px,1.1fr) repeat(3,minmax(145px,.75fr));
  gap:clamp(28px,5vw,72px);
  padding-bottom:34px;
  border-bottom:1px solid rgba(105,132,162,.18)
}

.sht-foot-brand img {
  width:178px;
  margin-bottom:18px
}

.sht-foot-brand p {
  max-width:320px;
  line-height:1.6
}

.sht-foot-col {
  display:grid;
  gap:14px
}

.sht-foot-col h3 {
  margin:0 0 4px;
  color:var(--sht-gold);
  font-size:.9rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase
}

.sht-foot-col a:hover {
  color:var(--sht-hot)
}

.sht-badges {
  display:grid;
  grid-template-columns:150px 1fr;
  gap:16px;
  align-items:center;
  padding-top:22px;
  border-top:1px solid rgba(105,132,162,.18)
}

.sht-badges strong {
  color:#94a8bb;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase
}

.sht-badges div {
  display:flex;
  flex-wrap:wrap;
  gap:10px
}

.sht-badges span {
  display:grid;
  min-width:76px;
  height:34px;
  place-items:center;
  border:1px solid rgba(105,132,162,.24);
  border-radius:7px;
  background:rgba(255,255,255,.035);
  padding:6px 12px
}

.sht-badges img {
  max-width:92px;
  max-height:20px;
  object-fit:contain
}

@media(max-width:980px) {
  .sht-top {
    grid-template-columns:1fr auto
  }

  .sht-nav {
    grid-column:1/-1;
    justify-content:flex-start;
    overflow-x:auto
  }

  .sht-hero {
    min-height:500px;
    width:min(100% - 32px,1280px)
  }

  .sht-game-grid,.sht-copy-flow {
    grid-template-columns:1fr 1fr
  }

  .sht-footer-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}

@media(max-width:640px) {
  .sht-providers,.sht-stage,.sht-copy-flow,.sht-footer {
    width:min(100% - 24px,1280px)
  }

  .sht-top {
    padding:12px;
    gap:12px
  }

  .sht-logo img {
    width:104px
  }

  .sht-top-btn {
    min-width:104px
  }

  .sht-nav {
    gap:14px;
    font-size:.68rem
  }

  .sht-hero {
    min-height:560px;
    width:min(100% - 24px,1280px);
    padding:28px 20px;
    align-items:flex-end
  }

  .sht-art img {
    object-position:64% center
  }

  .sht-art:after {
    background:linear-gradient(90deg,rgba(2,7,13,.96),rgba(2,7,13,.8) 58%,rgba(2,7,13,.26)),linear-gradient(180deg,rgba(2,7,13,.04),rgba(2,7,13,.94))
  }

  .sht-hero h1 {
    font-size:clamp(1.85rem,8vw,2.6rem);
    overflow-wrap:anywhere
  }

  .sht-hero p {
    font-size:.94rem
  }

  .sht-main-btn {
    width:100%;
    transform:none
  }

  .sht-game-grid,.sht-copy-flow,.sht-footer-grid,.sht-badges {
    grid-template-columns:1fr
  }

  .sht-game {
    min-height:230px
  }

  .sht-table {
    min-width:560px
  }

  .sht-foot-brand img {
    width:150px
  }

  .sht-badges span {
    min-width:66px
  }
}



/* Clean final shared fixes */
.clean-article {

  display: block;
}



.site-action-pair {

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 10px;

  min-width: max-content;
}



.site-login-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 31px;

  min-width: 104px;

  border: 1px solid rgba(226, 86, 0, 0.72);

  border-radius: 0;

  background: rgba(4, 8, 14, 0.74);

  color: #fff;

  font-size: 0.72rem;

  font-weight: 950;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  white-space: nowrap;
}



.site-action-pair > a {

  white-space: nowrap;
}



.spin-card a,
.game-card a,
.hd-game-tile a,
.dnv-game a,
.sht-game a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 34px;

  padding: 0 16px;

  border: 1px solid #e25600;

  border-radius: 999px;

  background: #e25600;

  color: #05070b !important;

  font-size: 0.74rem;

  font-weight: 950;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  box-shadow: 0 12px 28px rgba(226, 86, 0, 0.28);

  opacity: 1;

  transform: translateY(0);

  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}



.spin-card:hover a,
.game-card:hover a,
.hd-game-tile:hover a,
.dnv-game:hover a,
.sht-game:hover a {

  transform: translateY(-2px);

  background: #ff7a1a;
}



@media (max-width: 760px) {

  .site-action-pair {

    gap: 8px;
  }



  .site-login-btn {

    min-width: 88px;
  }
}

/* Clean CTA buttons and game-card hover overlay */
.site-action-pair {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: max-content !important;
}

.site-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  min-width: 98px !important;
  max-width: 176px !important;
  width: auto !important;
  padding: 0 16px !important;
  border: 1px solid #e25600 !important;
  border-radius: 6px !important;
  font-size: clamp(0.68rem, 0.72vw, 0.78rem) !important;
  font-style: normal !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  transform: none !important;
  box-shadow: none !important;
}

.site-action-login {
  background: rgba(4, 9, 16, 0.72) !important;
  color: #ffffff !important;
}

.site-action-register {
  background: #e25600 !important;
  color: #07090d !important;
}

.site-action:hover,
.site-action:focus-visible {
  border-color: #ff7a1a !important;
  background: #ff7a1a !important;
  color: #07090d !important;
}

.spin-card,
.game-card,
.hd-game-tile,
.dnv-game,
.sht-game {
  position: relative !important;
  overflow: hidden !important;
}

.spin-card::after,
.game-card::after,
.hd-game-tile::after,
.dnv-game::after,
.sht-game::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  background: rgba(2, 6, 12, 0.58) !important;
  opacity: 0 !important;
  transition: opacity 220ms ease !important;
  pointer-events: none !important;
}

.spin-card img,
.game-card img,
.hd-game-tile img,
.dnv-game img,
.sht-game img {
  transition: transform 260ms ease, filter 260ms ease !important;
}

.spin-card:hover::after,
.game-card:hover::after,
.hd-game-tile:hover::after,
.dnv-game:hover::after,
.sht-game:hover::after,
.spin-card:focus-within::after,
.game-card:focus-within::after,
.hd-game-tile:focus-within::after,
.dnv-game:focus-within::after,
.sht-game:focus-within::after {
  opacity: 1 !important;
}

.spin-card:hover img,
.game-card:hover img,
.hd-game-tile:hover img,
.dnv-game:hover img,
.sht-game:hover img,
.spin-card:focus-within img,
.game-card:focus-within img,
.hd-game-tile:focus-within img,
.dnv-game:focus-within img,
.sht-game:focus-within img {
  transform: scale(1.05) !important;
  filter: brightness(0.72) saturate(1.12) !important;
}

.spin-card a[href*="play"],
.game-card a[href*="play"],
.hd-game-tile a[href*="play"],
.dnv-game a[href*="play"],
.sht-game a[href*="play"] {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 6 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  min-width: 132px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #ffe486, #f0aa25) !important;
  color: #160d04 !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translate(-50%, -42%) scale(0.94) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease !important;
}

.spin-card:hover a[href*="play"],
.game-card:hover a[href*="play"],
.hd-game-tile:hover a[href*="play"],
.dnv-game:hover a[href*="play"],
.sht-game:hover a[href*="play"],
.spin-card:focus-within a[href*="play"],
.game-card:focus-within a[href*="play"],
.hd-game-tile:focus-within a[href*="play"],
.dnv-game:focus-within a[href*="play"],
.sht-game:focus-within a[href*="play"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

@media (max-width: 760px) {
  .site-action-pair {
    width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .site-action {
    min-width: 96px !important;
    max-width: none !important;
    min-height: 36px !important;
    padding: 0 13px !important;
    font-size: 0.68rem !important;
  }

  .spin-card::after,
  .game-card::after,
  .hd-game-tile::after,
  .dnv-game::after,
  .sht-game::after {
    opacity: 0.48 !important;
  }

  .spin-card a[href*="play"],
  .game-card a[href*="play"],
  .hd-game-tile a[href*="play"],
  .dnv-game a[href*="play"],
  .sht-game a[href*="play"] {
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 42px !important;
    min-width: 112px !important;
    padding: 0 18px !important;
    font-size: 0.9rem !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
}

