body.scroll-locked {
  overflow: hidden;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 6, 26, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-modal {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(160deg, #1e1848 0%, #161233 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 0 60px var(--color-purple-glow), var(--shadow-card);
}

.age-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-purple) 0%, #4a2d7a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-gold-light);
  box-shadow: 0 0 24px var(--color-purple-glow);
}

.age-modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.age-modal__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: left;
}

.age-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 24px 0;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}

.age-modal__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.age-modal__checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-deep);
  transition: all var(--transition-fast);
}

.age-modal__checkbox input:checked ~ .age-modal__checkmark {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.age-modal__checkbox input:checked ~ .age-modal__checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--color-bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.age-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8923f 100%);
  color: var(--color-bg-deep);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.age-modal__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

.age-modal__btn--disabled,
.age-modal__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  padding: 20px 24px;
}

.cookie-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar__content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}

.cookie-bar__icon {
  color: var(--color-gold);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cookie-bar__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cookie-bar__text a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.cookie-bar__text a:hover {
  color: var(--color-gold);
}

.cookie-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-purple) 0%, #4a2d7a 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.cookie-bar__btn:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8923f 100%);
  color: var(--color-bg-deep);
  border-color: var(--color-gold);
}

.page-banner {
  position: relative;
  padding: 72px 24px 64px;
  background: linear-gradient(135deg, #0e0b24 0%, #1a1035 50%, #161233 100%);
  overflow: hidden;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(155, 111, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.page-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(155, 111, 212, 0.12);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-banner__badge i {
  color: var(--color-gold);
  font-size: 11px;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.page-banner__subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.content-page {
  padding: 64px 24px 80px;
  background: var(--color-bg-deep);
}

.content-page__inner {
  max-width: 860px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.content-block p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.content-card {
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.content-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
}

.content-card i {
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.content-card p {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.7;
}

.contact-email-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: 0 0 30px var(--color-purple-glow);
}

.contact-email-block__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-purple) 0%, #4a2d7a 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--color-gold-light);
}

.contact-email-block__content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-email-block__content p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-email-block__email {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold-light);
  transition: color var(--transition-fast);
}

.contact-email-block__email:hover {
  color: var(--color-gold);
}

.games--page {
  padding-top: 0;
}

.game-play {
  padding: 48px 24px 64px;
  background: var(--color-bg-deep);
}

.game-play__inner {
  max-width: 800px;
  margin: 0 auto;
}

.game-play__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 32px;
}

.game-disclaimer {
  padding: 0 24px 80px;
  background: var(--color-bg-deep);
}

.game-disclaimer__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(155, 111, 212, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.game-disclaimer__icon {
  flex-shrink: 0;
  color: var(--color-purple-light);
  font-size: 22px;
  margin-top: 2px;
}

.game-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.game-disclaimer__text {
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.7;
}

.play-game {
  background: linear-gradient(160deg, #1c1740 0%, #12102e 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 0 40px var(--color-purple-glow), var(--shadow-card);
}

.play-game__header {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.play-game__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.play-game__stat i {
  color: var(--color-gold);
  font-size: 18px;
}

.play-game__stat span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.play-game__stat small {
  font-size: 11px;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-game__message {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 20px 0;
  min-height: 24px;
}

.play-game__message--success {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px var(--color-gold-glow);
}

.play-game__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b8923f 100%);
  color: var(--color-bg-deep);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.play-game__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

.play-game__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.play-game__btn--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: none;
}

.play-game__btn--secondary:hover:not(:disabled) {
  background: rgba(155, 111, 212, 0.12);
  border-color: var(--color-purple-light);
}

.play-game__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.slot-game__machine {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, #2a1f5e 0%, #1a1540 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border-gold);
  overflow: hidden;
}

.slot-game__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.slot-game--glow .slot-game__machine {
  animation: slotGlow 0.6s ease;
}

@keyframes slotGlow {
  0%, 100% { box-shadow: 0 0 20px var(--color-purple-glow); }
  50% { box-shadow: 0 0 40px var(--color-gold-glow), 0 0 60px var(--color-purple-glow); }
}

.slot-game__reels {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.slot-game__reel {
  width: 100px;
  height: 100px;
  background: var(--color-bg-deep);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.slot-game__reel--spin {
  animation: reelSpin 0.08s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
  100% { transform: translateY(-4px); }
}

.bj-game__table {
  background: linear-gradient(160deg, #0d5c36 0%, #084422 100%);
  border-radius: var(--radius-md);
  border: 3px solid var(--color-border-gold);
  padding: 28px;
  margin-bottom: 8px;
}

.bj-game__hand h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.bj-game__hand h4 span {
  color: var(--color-text);
  margin-left: 8px;
}

.bj-game__hand + .bj-game__hand {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bj-game__cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.bj-card {
  width: 60px;
  height: 84px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast);
}

.bj-card--red {
  color: #c0392b;
}

.bj-card--hidden {
  background: linear-gradient(135deg, var(--color-purple) 0%, #2a1f5e 100%);
  color: var(--color-gold-light);
  font-size: 24px;
}

.roulette-game__wheel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 28px;
}

.roulette-game__pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--color-gold);
  z-index: 3;
  filter: drop-shadow(0 0 6px var(--color-gold-glow));
}

.roulette-game__wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--color-gold);
  background: conic-gradient(
    #c0392b 0deg 9.7deg, #1a1a2e 9.7deg 19.4deg,
    #c0392b 19.4deg 29.1deg, #1a1a2e 29.1deg 38.8deg,
    #c0392b 38.8deg 48.5deg, #1a1a2e 48.5deg 58.2deg,
    #c0392b 58.2deg 67.9deg, #1a1a2e 67.9deg 77.6deg,
    #c0392b 77.6deg 87.3deg, #1a1a2e 87.3deg 97deg,
    #c0392b 97deg 106.7deg, #1a1a2e 106.7deg 116.4deg,
    #c0392b 116.4deg 126.1deg, #1a1a2e 126.1deg 135.8deg,
    #c0392b 135.8deg 145.5deg, #1a1a2e 145.5deg 155.2deg,
    #c0392b 155.2deg 164.9deg, #1a1a2e 164.9deg 174.6deg,
    #c0392b 174.6deg 184.3deg, #1a1a2e 184.3deg 194deg,
    #c0392b 194deg 203.7deg, #1a1a2e 203.7deg 213.4deg,
    #c0392b 213.4deg 223.1deg, #1a1a2e 223.1deg 232.8deg,
    #c0392b 232.8deg 242.5deg, #1a1a2e 242.5deg 252.2deg,
    #c0392b 252.2deg 261.9deg, #1a1a2e 261.9deg 271.6deg,
    #c0392b 271.6deg 281.3deg, #1a1a2e 281.3deg 291deg,
    #c0392b 291deg 300.7deg, #1a1a2e 300.7deg 310.4deg,
    #c0392b 310.4deg 320.1deg, #1a1a2e 320.1deg 329.8deg,
    #c0392b 329.8deg 339.5deg, #1a1a2e 339.5deg 349.2deg,
    #27ae60 349.2deg 360deg
  );
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 0 30px var(--color-purple-glow), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.roulette-game__seg {
  display: none;
}

.roulette-game__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold-light);
  z-index: 2;
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.roulette-game__bets {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.roulette-game__bet {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: all var(--transition-fast);
}

.roulette-game__bet--active {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.roulette-game__bet--red.roulette-game__bet--active {
  background: #c0392b;
}

.roulette-game__bet--black.roulette-game__bet--active {
  background: #1a1a2e;
}

.baccarat-game__table {
  display: flex;
  align-items: stretch;
  background: linear-gradient(160deg, #0d5c36 0%, #084422 100%);
  border-radius: var(--radius-md);
  border: 3px solid var(--color-border-gold);
  padding: 28px;
  margin-bottom: 20px;
}

.baccarat-game__side {
  flex: 1;
  text-align: center;
}

.baccarat-game__side h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.baccarat-game__score {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.baccarat-game__divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 20px;
}

.baccarat-game__cards {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.baccarat-game__card {
  width: 48px;
  height: 64px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.baccarat-game__bets {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.baccarat-game__bet {
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: all var(--transition-fast);
}

.baccarat-game__bet--active {
  border-color: var(--color-gold);
  background: rgba(212, 168, 83, 0.15);
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.poker-game__hand {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.poker-game__card {
  width: 72px;
  height: 100px;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a2e;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.poker-game__card--red {
  color: #c0392b;
}

.poker-game__card--held {
  border-color: var(--color-gold);
  box-shadow: 0 0 16px var(--color-gold-glow);
  transform: translateY(-8px);
}

.poker-game__card--empty {
  background: var(--color-bg-deep);
  color: var(--color-text-dim);
  cursor: default;
  font-size: 28px;
}

.poker-game__held-label {
  position: absolute;
  bottom: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.craps-game__table {
  text-align: center;
  padding: 32px;
  background: linear-gradient(160deg, #1c1740 0%, #12102e 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  margin-bottom: 8px;
}

.craps-game__dice {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.craps-game__dice--roll .craps-game__die {
  animation: diceRoll 0.08s linear infinite;
}

@keyframes diceRoll {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.craps-game__die {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, #fff 0%, #e8e8e8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-cyan-glow);
  border: 2px solid rgba(62, 207, 207, 0.3);
}

.craps-game__die-face {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
}

.craps-game__die-face::before {
  content: attr(data-value);
}

.craps-game__sum {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cyan);
  text-shadow: 0 0 16px var(--color-cyan-glow);
}

@media (max-width: 768px) {
  .age-modal {
    padding: 28px 24px;
  }

  .cookie-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar__btn {
    width: 100%;
    justify-content: center;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-email-block {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .baccarat-game__table {
    flex-direction: column;
    gap: 20px;
  }

  .baccarat-game__divider {
    width: 100%;
    height: 2px;
    margin: 0;
  }

  .slot-game__reel {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .roulette-game__wheel-wrap {
    width: 220px;
    height: 220px;
  }

  .play-game__actions {
    flex-direction: column;
    align-items: center;
  }

  .play-game__btn {
    max-width: 100%;
  }
}
