:root {
  --ac-gold: #f9b100;
  --ac-accent: #cc7a14;
  --ac-page: #111111;
  --ac-dark: #1a1a1a;
  --ac-panel: #1d1d1d;
  --ac-lift: #242424;
  --ac-line: #ffffff2e;
  --ac-text: #fff;
  --ac-muted: #ffffffb3;
  --ac-quiet: #9e9e9e;
  --ac-radius: 12px;
  --ac-drawer: 248px;
  --ac-top: 72px;
  --ac-max: 1180px;
  --ac-font: Poppins, "Segoe UI", Roboto, Arial, sans-serif;
  --ac-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --ac-grad: linear-gradient(to right, #cc7a14 0%, #f9b100 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ac-page);
  color: var(--ac-text);
  font-family: var(--ac-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--ac-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--ac-gold);
  color: var(--ac-page);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  left: 8px;
}

.ac-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.ac-backdrop {
  display: none;
}

.ac-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: var(--ac-drawer);
  height: 100vh;
  background: #161616;
  border-right: 1px solid var(--ac-line);
}

.ac-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 110px;
  padding: 18px 12px 12px;
  text-decoration: none;
}

.ac-logo-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.ac-logo-title {
  width: 118px;
  height: 40px;
  object-fit: contain;
}

.ac-brand--compact {
  display: none;
  flex-direction: row;
  min-height: 56px;
  padding: 0;
  gap: 8px;
}

.ac-brand--compact .ac-logo-mark {
  width: 36px;
  height: 36px;
}

.ac-brand--compact .ac-logo-title {
  width: 88px;
  height: 32px;
}

.ac-rail-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  overflow: auto;
}

.ac-rail-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px 18px;
}

.ac-rail-link,
.ac-rail-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #1f1f1f;
  color: var(--ac-text);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.ac-rail-link:hover,
.ac-rail-cta:hover,
.ac-rail-link.is-on {
  background: #2a2a2a;
  text-decoration: none;
}

.ac-rail-link.is-on {
  color: var(--ac-gold);
}

.ac-rail-link img,
.ac-rail-cta img,
.ac-quick img,
.ac-dock img,
.ac-fab img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.ac-frame {
  min-height: 100vh;
  min-width: 0;
  overflow-x: hidden;
}

.ac-top {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--ac-top);
  padding: 8px 24px;
  background: rgba(17, 17, 17, 0.96);
}

.ac-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ac-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.ac-quick-item,
.ac-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
  color: var(--ac-text);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none;
}

.ac-quick-link.is-on,
.ac-quick-link:hover,
.ac-quick-item:hover {
  color: var(--ac-gold);
  text-decoration: none;
}

.ac-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.ac-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 168px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: #2a2a2a;
  color: var(--ac-muted);
  font-size: 0.85rem;
}

.ac-search img {
  width: 16px;
  height: 16px;
}

.ac-stage,
.ac-foot {
  width: 100%;
  max-width: var(--ac-max);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.ac-stage {
  overflow-x: hidden;
  padding: 18px 24px 24px;
}

.ac-foot {
  padding: 12px 24px 48px;
}

.ac-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 168px;
  margin: 0 0 14px;
  padding: 22px 24px;
  overflow: hidden;
  border-radius: var(--ac-radius);
  background: #1a1208 url("/images/home/main_hero.webp") center / cover no-repeat;
}

.ac-hero-offer {
  position: relative;
  z-index: 1;
  width: min(46%, 280px);
  padding: 16px 18px 18px;
  color: #fff;
  text-align: center;
  background: rgba(24, 14, 6, 0.86);
  border: 2px solid #e0b12a;
  box-shadow:
    0 0 0 4px rgba(58, 36, 12, 0.85),
    inset 0 0 0 1px rgba(249, 177, 0, 0.45);
  clip-path: polygon(10% 0, 90% 0, 100% 14%, 100% 86%, 90% 100%, 10% 100%, 0 86%, 0 14%);
}

.ac-hero-offer p {
  margin: 0;
  line-height: 1.15;
}

.ac-hero-kicker {
  color: #f3d27a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ac-hero-bonus {
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ac-hero-upto {
  margin-top: 6px;
  color: #eee;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ac-hero-sum {
  color: var(--ac-gold);
  font-weight: 800;
  line-height: 0.9;
}

.ac-hero-sum span {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}

.ac-hero-spins {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ac-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin: 0 0 18px;
  min-height: 220px;
  aspect-ratio: 1151 / 247;
}

.ac-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--ac-radius);
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ac-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.46) 100%);
}

.ac-tile-label {
  position: relative;
  z-index: 1;
  padding: 8px;
  font-size: clamp(0.78rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.ac-tile-lg {
  grid-row: 1 / 3;
}

.ac-tile--slots {
  background-image: url("/images/home/slots.webp");
}

.ac-tile--live {
  background-image: url("/images/home/live_casino.webp");
}

.ac-tile--crash {
  background-image: url("/images/home/crash_and_fast.webp");
}

.ac-tile--rewards {
  background-image: url("/images/home/rewards.webp");
}

.ac-tile--shows {
  background-image: url("/images/home/game_shows.webp");
}

.ac-tile--vip {
  background-image: url("/images/home/vip_club.webp");
}

.ac-tile:hover {
  outline: 1px solid var(--ac-gold);
  text-decoration: none;
}

.ac-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 12px;
}

.ac-cups-marquee,
.ac-news-marquee {
  height: auto;
  margin-bottom: 12px;
  container-type: inline-size;
}

.ac-cups-marquee .ac-marquee-track,
.ac-news-marquee .ac-marquee-track {
  align-items: stretch;
  gap: 10px;
}

.ac-marquee-track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.ac-pay-marquee .ac-marquee-track,
.ac-prov-marquee .ac-marquee-track,
.ac-badge-marquee .ac-marquee-track {
  gap: 12px;
}

.ac-pay-cta,
.ac-prov-cta,
.ac-badge-cta,
.ac-rg-cta,
.ac-logo-cta,
.ac-age-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-pay-marquee img,
.ac-prov-marquee img {
  height: 26px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.ac-badge-marquee {
  margin: 18px 0;
}

.ac-badge-marquee img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.ac-news-card {
  flex: 0 0 calc((100cqi - 20px) / 3);
  width: calc((100cqi - 20px) / 3);
  max-width: calc((100cqi - 20px) / 3);
  min-width: 0;
  height: auto;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--ac-radius);
}

.ac-news-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ac-cup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 calc((100cqi - 20px) / 3);
  width: calc((100cqi - 20px) / 3);
  max-width: calc((100cqi - 20px) / 3);
  min-width: 0;
  aspect-ratio: 2 / 1;
  padding: calc((100cqi - 20px) / 3 * 0.08) calc((100cqi - 20px) / 3 * 0.22);
  overflow: hidden;
  border-radius: var(--ac-radius);
  background: #1a1208 url("/images/home/Turniere.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.ac-cup-logo {
  height: 16px;
  width: auto;
  max-width: 68%;
  max-height: 18px;
  margin-bottom: 4px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.ac-cup-name {
  max-width: 100%;
  color: #e8c56a;
  font-size: clamp(0.55rem, 1.05vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.ac-cup-kind {
  font-size: clamp(0.72rem, 1.5vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ac-cup-prize {
  margin-top: 2px;
  font-size: clamp(0.95rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.ac-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 12px;
}

.ac-sec-title,
.ac-page-kicker {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.ac-page-kicker {
  margin: 8px 0 18px;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.ac-row-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac-hscroll {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  margin: 0 0 22px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.ac-hscroll::-webkit-scrollbar {
  display: none;
}

.ac-game {
  flex: 0 0 148px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ac-dark);
}

.ac-game img {
  width: 148px;
  height: 222px;
  object-fit: cover;
}

.ac-game span {
  display: block;
  padding: 8px 8px 10px;
  color: var(--ac-muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

.ac-vip-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 18px;
  overflow: hidden;
  border-radius: var(--ac-radius);
  aspect-ratio: 1848 / 205;
  background: #1a1208 url("/images/home/Art_Casino_desktop_vip_club_main.webp") center / cover no-repeat;
}

.ac-vip-strip-label {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  color: #fff;
  font-size: clamp(0.82rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.ac-cups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.ac-cup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 18px 12px;
  border-radius: var(--ac-radius);
  background:
    radial-gradient(circle at 50% 50%, #3a2a12 0 38%, transparent 39%),
    repeating-conic-gradient(from 0deg, #f9b100 0 6deg, #b8860b 6deg 12deg);
  text-align: center;
  color: #fff;
}

.ac-cup strong {
  font-size: 0.95rem;
}

.ac-cup span {
  color: var(--ac-gold);
  font-size: 0.82rem;
}

.ac-winners {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 16px;
  overflow-x: auto;
}

.ac-win-tabs {
  display: flex;
  gap: 22px;
  margin: 0 0 12px;
  font-weight: 600;
}

.ac-win-tabs .is-on {
  color: var(--ac-gold);
  border-bottom: 2px solid var(--ac-gold);
  padding-bottom: 4px;
}

.ac-win-head,
.ac-win-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) 72px 76px 92px;
  gap: 8px 10px;
  align-items: center;
  padding: 12px 14px;
}

.ac-win-head {
  color: var(--ac-quiet);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ac-win-row {
  margin: 0 0 6px;
  border-radius: 8px;
  background: #1a1a1a;
  font-size: 0.9rem;
}

.ac-win-game,
.ac-win-user,
.ac-win-bet,
.ac-win-x,
.ac-win-pay {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ac-win-bet,
.ac-win-x,
.ac-win-pay {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.ac-win-row .ac-win-pay {
  color: var(--ac-gold);
  font-weight: 700;
}

.ac-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin: 8px 0 28px;
}

.ac-offer-title {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 700;
}

.ac-offer-desc {
  margin: 0 0 12px;
  color: #eee;
}

.ac-offer-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--ac-radius);
}

.ac-offer-visual img {
  width: 100%;
  aspect-ratio: 375 / 167;
  object-fit: cover;
}

.ac-offer-banner {
  position: absolute;
  left: 16px;
  right: 120px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(1rem, 3.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.ac-readmore {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--ac-gold);
  color: #121212;
  font-size: 0.82rem;
  font-weight: 700;
}

.ac-rank {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 36px;
}

.ac-rank-card {
  min-width: 0;
  max-width: 100%;
  padding: 22px 16px 18px;
  border-radius: 14px;
  background: #1a1a1a;
  text-align: center;
  white-space: normal;
}

.ac-rank-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.ac-rank-name {
  display: block;
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.ac-rank-card.is-bronze .ac-rank-name {
  color: #e08a3c;
}
.ac-rank-card.is-silver .ac-rank-name {
  color: #cfcfcf;
}
.ac-rank-card.is-gold .ac-rank-name {
  color: var(--ac-gold);
}
.ac-rank-card.is-platinum .ac-rank-name {
  color: #b9c6d6;
}

.ac-rank-wager {
  display: block;
  margin: 0 0 12px;
  color: var(--ac-muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ac-rank-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.ac-rank-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px;
  color: #ddd;
  font-size: 0.86rem;
}

.ac-bolt {
  flex: 0 0 8px;
  width: 8px;
  height: 14px;
  margin-top: 3px;
  background: var(--ac-gold);
  clip-path: polygon(35% 0, 100% 0, 55% 48%, 100% 48%, 20% 100%, 42% 58%, 0 58%);
}

.ac-perk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 32px;
}

.ac-perk {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 22px 18px;
  border-radius: 12px;
  background: #1a1a1a;
  white-space: normal;
}

.ac-perk > div {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ac-perk img {
  width: 40px;
  height: 40px;
}

.ac-perk-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: normal;
}

.ac-perk p {
  margin: 0;
  max-width: 100%;
  color: var(--ac-muted);
  font-size: 0.92rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ac-perk p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ac-star-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.ac-star {
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.ac-star img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.ac-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.ac-tier-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid var(--ac-line);
  border-radius: 8px;
  background: var(--ac-dark);
  text-align: center;
}

.ac-tier img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ac-tier strong {
  color: var(--ac-gold);
}

.ac-legal-box {
  padding: 22px 24px 18px;
  border-radius: 14px;
  background: #2a2a2a;
}

.ac-legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}

.ac-foot-logo {
  width: 160px;
  height: 54px;
  object-fit: contain;
}

.ac-age-img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.ac-rg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.ac-rg-row img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ac-seo-band {
  margin: 22px 0;
}

.ac-seo-kicker {
  margin: 0 0 8px;
  color: var(--ac-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.ac-foot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 10px;
}

.ac-foot-h {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.ac-foot-grid a,
.ac-foot-cta {
  display: block;
  margin: 0 0 8px;
  color: var(--ac-muted);
  font-size: 0.88rem;
}

.ac-copy,
.ac-legal,
.ac-note {
  margin: 0 0 12px;
  color: var(--ac-quiet);
  font-size: 0.88rem;
}

.ac-copy {
  text-align: center;
}

.ac-crumbs {
  display: flex;
  gap: 8px;
  margin: 18px 0 8px;
  color: var(--ac-quiet);
  font-size: 0.85rem;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin: 28px 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
}

h3 {
  margin: 20px 0 12px;
  font-size: 1.08rem;
  font-weight: 700;
}

.ac-prose {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ac-prose > :last-child {
  margin-bottom: 0;
}

.ac-prose p {
  margin: 0 0 16px;
  color: #eee;
  white-space: normal;
  max-width: 100%;
}

.ac-prose ul,
.ac-prose ol {
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.ac-howto-art125 {
  padding: 16px 16px 16px 2rem;
  border: 1px solid var(--ac-line);
  border-radius: 8px;
  background: var(--ac-dark);
}

.ac-prose li {
  margin: 0 0 8px;
}

.ac-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid var(--ac-line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ac-line);
  text-align: left;
}

th {
  background: var(--ac-lift);
  color: var(--ac-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

td {
  background: var(--ac-dark);
}

.ac-dock {
  display: none;
}

.ac-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ac-gold);
}

.ac-sub {
  margin: -8px 0 22px;
  color: var(--ac-muted);
  text-align: center;
}

.ac-acc {
  max-width: 760px;
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: 12px;
  background: #1e1e1e;
}

.ac-acc details {
  border-bottom: 1px solid #2e2e2e;
}

.ac-acc details:last-child {
  border-bottom: 0;
}

.ac-acc summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.ac-acc summary::-webkit-details-marker {
  display: none;
}

.ac-acc summary img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ac-acc-name {
  flex: 1;
  font-weight: 600;
}

.ac-acc-chevron {
  color: var(--ac-muted);
}

.ac-acc details[open] .ac-acc-chevron {
  transform: rotate(180deg);
}

.ac-acc-body {
  padding: 0 18px 16px 68px;
  color: var(--ac-muted);
  font-size: 0.92rem;
}

.ac-chal-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 12px 0 18px;
}

.ac-chal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.ac-chal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border-radius: 10px;
  background: #1e1e1e;
  text-align: center;
}

.ac-chal-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ac-chal-card p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ac-chal-card strong {
  font-size: 1.35rem;
}

.ac-chal-games {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.ac-chal-games .ac-game {
  flex: none;
  width: auto;
}

.ac-chal-games .ac-game img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
}

.ac-show-count {
  margin: 0 0 28px;
  color: var(--ac-quiet);
  font-size: 0.85rem;
  text-align: center;
}

[role="button"][aria-label="arialabel-artcasino"] {
  cursor: pointer;
  outline: none;
}

[role="button"][aria-label="arialabel-artcasino"]:focus-visible {
  outline: 2px solid var(--ac-gold);
  outline-offset: 2px;
}

[role="button"][aria-label="arialabel-artcasino"].ac-reg-top,
[role="button"][aria-label="arialabel-artcasino"].ac-lost-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--ac-gold);
  color: #121212;
  font-size: 0.92rem;
  font-weight: 700;
}

[role="button"][aria-label="arialabel-artcasino"].ac-login-top {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}

[role="button"][aria-label="arialabel-artcasino"].ac-btn-ghost,
[role="button"][aria-label="arialabel-artcasino"].ac-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 6px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.82rem;
}

[role="button"][aria-label="arialabel-artcasino"].ac-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1.1rem;
}

[role="button"][aria-label="arialabel-artcasino"].ac-game,
[role="button"][aria-label="arialabel-artcasino"].ac-offer-visual,
[role="button"][aria-label="arialabel-artcasino"].ac-news-card,
[role="button"][aria-label="arialabel-artcasino"].ac-cup,
[role="button"][aria-label="arialabel-artcasino"].ac-pay-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-prov-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-badge-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-rg-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-logo-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-age-cta,
[role="button"][aria-label="arialabel-artcasino"].ac-acc-ico,
[role="button"][aria-label="arialabel-artcasino"].ac-fab {
  padding: 0;
  background: transparent;
  color: inherit;
  text-transform: none;
}

[role="button"][aria-label="arialabel-artcasino"].ac-vip-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #1a1208 url("/images/home/Art_Casino_desktop_vip_club_main.webp") center / cover no-repeat;
  color: #fff;
  text-transform: none;
}

[role="button"][aria-label="arialabel-artcasino"].ac-cup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc((100cqi - 20px) / 3 * 0.08) calc((100cqi - 20px) / 3 * 0.22);
  background: #1a1208 url("/images/home/Turniere.webp") center / cover no-repeat;
  color: #fff;
  text-transform: none;
}

[role="button"][aria-label="arialabel-artcasino"].ac-fab {
  background: var(--ac-gold);
}

[role="button"][aria-label="arialabel-artcasino"].ac-hero {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  color: #fff;
  text-transform: none;
  background: #1a1208 url("/images/home/main_hero.webp") center / cover no-repeat;
}

[role="button"][aria-label="arialabel-artcasino"].ac-tile {
  color: #fff;
  text-transform: none;
}

[role="button"][aria-label="arialabel-artcasino"].ac-tile--slots {
  background-image: url("/images/home/slots.webp");
}

[role="button"][aria-label="arialabel-artcasino"].ac-tile--live {
  background-image: url("/images/home/live_casino.webp");
}

[role="button"][aria-label="arialabel-artcasino"].ac-tile--crash {
  background-image: url("/images/home/crash_and_fast.webp");
}

[role="button"][aria-label="arialabel-artcasino"].ac-tile--shows {
  background-image: url("/images/home/game_shows.webp");
}

[role="button"][aria-label="arialabel-artcasino"].ac-win-row {
  display: grid;
  text-transform: none;
}

[role="button"][aria-label="arialabel-artcasino"].ac-rank-card,
[role="button"][aria-label="arialabel-artcasino"].ac-perk {
  white-space: normal;
  color: inherit;
  text-transform: none;
}

@media (min-width: 1024px) {
  .ac-frame {
    margin-left: var(--ac-drawer);
  }
}

@media (max-width: 1100px) {
  .ac-rank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ac-rank,
  .ac-perk-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ac-perk {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px 14px;
  }
}

@media (max-width: 1023px) {
  .ac-drawer {
    transform: translateX(-100%);
    transition: transform 0.18s ease;
  }

  .ac-nav-toggle:checked ~ .ac-drawer {
    transform: translateX(0);
  }

  .ac-nav-toggle:checked ~ .ac-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(0, 0, 0, 0.55);
  }

  .ac-menu-btn,
  .ac-brand--compact {
    display: inline-flex;
  }

  .ac-quick {
    display: none;
  }

  .ac-search span {
    display: none;
  }

  .ac-search {
    min-width: 40px;
    padding: 0;
    justify-content: center;
  }

  .ac-mosaic,
  .ac-cups {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: auto;
  }

  .ac-top {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ac-stage {
    padding: 16px 20px 16px;
  }

  .ac-foot {
    padding: 8px 20px 88px;
  }

  .ac-offers,
  .ac-rank,
  .ac-perk-grid {
    margin-bottom: 16px;
  }

  .ac-crumbs {
    margin-top: 10px;
  }

  .ac-hero {
    min-height: 200px;
    padding: 18px 16px;
    aspect-ratio: auto;
  }

  [role="button"][aria-label="arialabel-artcasino"].ac-hero {
    padding: 18px 16px;
  }

  .ac-hero-offer {
    width: min(72%, 240px);
    padding: 14px 14px 16px;
  }

  .ac-tile {
    min-height: 108px;
  }

  .ac-tile-lg {
    grid-row: auto;
    min-height: 140px;
  }

  .ac-star-row,
  .ac-tier-grid,
  .ac-tier-grid--five,
  .ac-foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ac-login-top {
    display: none;
  }

  .ac-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 64px;
    background: var(--ac-dark);
    border-top: 1px solid var(--ac-line);
  }

  .ac-dock a,
  .ac-dock-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--ac-text);
    font-size: 0.72rem;
    text-decoration: none;
  }

  .ac-dock a.is-on {
    color: var(--ac-gold);
  }

  .ac-fab {
    bottom: 76px;
  }
}

@media (max-width: 600px) {
  .ac-offers {
    grid-template-columns: 1fr;
  }

  .ac-cup-card,
  [role="button"][aria-label="arialabel-artcasino"].ac-cup-card,
  .ac-news-card {
    flex: 0 0 100cqi;
    width: 100cqi;
    max-width: 100cqi;
  }

  .ac-cup-card,
  [role="button"][aria-label="arialabel-artcasino"].ac-cup-card {
    padding: 8cqi 20cqi;
  }

  .ac-cup-name {
    font-size: 0.78rem;
  }

  .ac-cup-kind {
    font-size: 1.05rem;
  }

  .ac-cup-prize {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .ac-stage {
    padding: 16px 20px 16px;
  }

  .ac-foot {
    padding-bottom: 88px;
  }

  .ac-hero-sum span {
    font-size: 2.2rem;
  }

  .ac-chal-games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-win-head,
  .ac-win-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) 56px 60px 72px;
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  .ac-win-head {
    display: grid;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 1.45rem;
  }

  .ac-game,
  .ac-game img {
    width: 120px;
    flex-basis: 120px;
    height: auto;
  }

  .ac-game img {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ac-marquee-track {
    animation: none;
  }
}
