@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --gp-primary: #7c3aed;
  --gp-primary-light: #a78bfa;
  --gp-accent: #06b6d4;
  --gp-accent-glow: #22d3ee;
  --gp-gold: #f0abfc;
  --gp-dark: #0f0a1e;
  --gp-dark-soft: #1a1230;
  --gp-dark-card: #231a3a;
  --gp-text: #e2e8f0;
  --gp-text-muted: #94a3b8;
  --gp-border: rgba(124, 58, 237, 0.25);
  --gp-gradient: linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #a78bfa 100%);
  --gp-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
  --gp-radius: 12px;
  --gp-font-heading: 'Outfit', sans-serif;
  --gp-font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--gp-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gp-text);
  background-color: var(--gp-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

.gp-topbar {
  background: linear-gradient(90deg, #1e1035 0%, #2d1b4e 50%, #1e1035 100%);
  border-bottom: 1px solid var(--gp-border);
  padding: 0.55rem 0;
  position: relative;
  z-index: 100;
}

.gp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gp-text-muted);
  padding: 0 1rem;
}

.gp-topbar__inner i {
  color: var(--gp-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.gp-topbar__inner span strong {
  color: var(--gp-accent-glow);
  font-weight: 600;
}

.gp-navbar {
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gp-border);
  padding: 0.75rem 0;
  position: relative;
  z-index: 99;
}

.gp-navbar .navbar {
  padding: 0;
}

.gp-navbar .navbar-brand img {
  height: 42px;
  width: auto;
}

.gp-navbar .navbar-nav {
  gap: 0.25rem;
}

.gp-navbar .nav-link {
  font-family: var(--gp-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gp-text-muted) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
}

.gp-navbar .nav-link:hover,
.gp-navbar .nav-link:focus {
  color: var(--gp-text) !important;
  background: rgba(124, 58, 237, 0.12);
}

.gp-navbar .nav-link.active {
  color: var(--gp-accent-glow) !important;
}

.gp-navbar .dropdown-menu {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 0.5rem;
  box-shadow: var(--gp-shadow);
  margin-top: 0.5rem;
}

.gp-navbar .dropdown-item {
  font-family: var(--gp-font-heading);
  font-size: 0.9rem;
  color: var(--gp-text-muted);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.gp-navbar .dropdown-item:hover,
.gp-navbar .dropdown-item:focus {
  background: rgba(124, 58, 237, 0.18);
  color: var(--gp-text);
}

.gp-navbar .dropdown-item i {
  width: 20px;
  color: var(--gp-primary-light);
  margin-right: 0.5rem;
}

.gp-navbar .navbar-toggler {
  border: 1px solid var(--gp-border);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}

.gp-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.gp-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28167, 139, 250, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .gp-navbar .navbar-collapse {
    background: var(--gp-dark-card);
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius);
    padding: 1rem;
    margin-top: 0.75rem;
  }

  .gp-navbar .nav-link {
    padding: 0.65rem 1rem !important;
  }

  .gp-navbar .dropdown-menu {
    background: rgba(35, 26, 58, 0.6);
    border: none;
    box-shadow: none;
    padding-left: 0.5rem;
  }
}

.gp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 10, 30, 0.92) 0%,
    rgba(30, 16, 53, 0.78) 40%,
    rgba(15, 10, 30, 0.85) 100%
  );
  z-index: 1;
}

.gp-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  z-index: 1;
  pointer-events: none;
}

.gp-hero__glow--secondary {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  top: auto;
  right: auto;
}

.gp-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.gp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-family: var(--gp-font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gp-primary-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.gp-hero__badge i {
  color: var(--gp-accent);
}

.gp-hero__title {
  font-family: var(--gp-font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.gp-hero__title .gp-gradient-text {
  background: var(--gp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gp-text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.gp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gp-btn--primary {
  background: var(--gp-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.gp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  color: #fff;
}

.gp-btn--outline {
  background: transparent;
  color: var(--gp-text);
  border: 1px solid var(--gp-border);
}

.gp-btn--outline:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--gp-primary-light);
  color: var(--gp-text);
  transform: translateY(-2px);
}

.gp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.gp-hero__stat {
  display: flex;
  flex-direction: column;
}

.gp-hero__stat-value {
  font-family: var(--gp-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gp-accent-glow);
  line-height: 1.2;
}

.gp-hero__stat-label {
  font-size: 0.82rem;
  color: var(--gp-text-muted);
  margin-top: 0.15rem;
}

.gp-hero__cards {
  position: relative;
  z-index: 2;
}

.gp-hero-card {
  background: rgba(35, 26, 58, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gp-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.5);
}

.gp-hero-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.gp-hero-card__icon--purple {
  background: rgba(124, 58, 237, 0.2);
  color: var(--gp-primary-light);
}

.gp-hero-card__icon--cyan {
  background: rgba(6, 182, 212, 0.2);
  color: var(--gp-accent);
}

.gp-hero-card__icon--pink {
  background: rgba(240, 171, 252, 0.15);
  color: var(--gp-gold);
}

.gp-hero-card__title {
  font-family: var(--gp-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gp-hero-card__text {
  font-size: 0.88rem;
  color: var(--gp-text-muted);
  margin: 0;
  line-height: 1.55;
}

.gp-hero__floating {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.gp-hero__floating--1 {
  top: 20%;
  right: 8%;
  font-size: 5rem;
  color: var(--gp-primary-light);
  animation: gpFloat 6s ease-in-out infinite;
}

.gp-hero__floating--2 {
  bottom: 25%;
  right: 15%;
  font-size: 3.5rem;
  color: var(--gp-accent);
  animation: gpFloat 8s ease-in-out infinite reverse;
}

@keyframes gpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 991.98px) {
  .gp-hero {
    min-height: auto;
  }

  .gp-hero__content {
    padding: 3rem 0 1.5rem;
  }

  .gp-hero__cards {
    padding-bottom: 3rem;
  }

  .gp-hero__stats {
    gap: 1.5rem;
  }

  .gp-hero__floating {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .gp-hero__actions {
    flex-direction: column;
  }

  .gp-btn {
    justify-content: center;
    width: 100%;
  }

  .gp-hero__stats {
    gap: 1rem;
  }

  .gp-hero__stat-value {
    font-size: 1.4rem;
  }
}

.gp-games {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--gp-dark) 0%, var(--gp-dark-soft) 50%, var(--gp-dark) 100%);
  position: relative;
}

.gp-games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gp-border), transparent);
}

.gp-games__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.gp-games__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-family: var(--gp-font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gp-primary-light);
  margin-bottom: 1.25rem;
}

.gp-games__badge i {
  color: var(--gp-accent);
}

.gp-games__title {
  font-family: var(--gp-font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.gp-games__subtitle {
  font-size: 1rem;
  color: var(--gp-text-muted);
  margin: 0;
  line-height: 1.7;
}

.gp-game-card {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gp-game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: var(--gp-shadow);
}

.gp-game-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gp-game-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gp-game-card:hover .gp-game-card__visual img {
  transform: scale(1.05);
}

.gp-game-card__type {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(15, 10, 30, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-family: var(--gp-font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gp-text);
  z-index: 2;
}

.gp-game-card__type i {
  color: var(--gp-accent-glow);
  font-size: 0.7rem;
}

.gp-game-card__play {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gp-gradient);
  color: #fff;
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45);
  z-index: 3;
  opacity: 1;
  transform: translateY(0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gp-game-card__play:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.55);
  transform: scale(1.04);
}

.gp-game-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 30, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.gp-game-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gp-game-card__title {
  font-family: var(--gp-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gp-text);
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.gp-game-card__title:hover {
  color: var(--gp-accent-glow);
}

.gp-game-card__desc {
  font-size: 0.88rem;
  color: var(--gp-text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 575.98px) {
  .gp-games {
    padding: 3.5rem 0;
  }

  .gp-games__header {
    margin-bottom: 2.5rem;
  }
}

.gp-section {
  padding: 5rem 0;
  position: relative;
}

.gp-section--alt {
  background: var(--gp-dark-soft);
}

.gp-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-family: var(--gp-font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gp-primary-light);
  margin-bottom: 1.25rem;
}

.gp-section__badge i {
  color: var(--gp-accent);
}

.gp-section__title {
  font-family: var(--gp-font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.gp-section__lead {
  font-size: 1.1rem;
  color: var(--gp-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.gp-section__text {
  font-size: 1rem;
  color: var(--gp-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gp-section__text:last-child {
  margin-bottom: 0;
}

.gp-about__visual {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 2rem;
  height: 100%;
}

.gp-about__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.gp-about__stat-item {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 1.25rem;
  text-align: center;
}

.gp-about__stat-item i {
  font-size: 1.5rem;
  color: var(--gp-accent);
  margin-bottom: 0.75rem;
}

.gp-about__stat-item h4 {
  font-family: var(--gp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.gp-about__stat-item p {
  font-size: 0.82rem;
  color: var(--gp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.gp-disclaimer {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-top: 1px solid var(--gp-border);
  border-bottom: 1px solid var(--gp-border);
}

.gp-disclaimer__box {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 2.5rem;
}

.gp-disclaimer__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gp-primary-light);
  margin-bottom: 1.5rem;
}

.gp-disclaimer__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.gp-disclaimer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gp-border);
  font-size: 0.95rem;
  color: var(--gp-text-muted);
  line-height: 1.65;
}

.gp-disclaimer__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gp-disclaimer__list li i {
  color: var(--gp-accent-glow);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.gp-features__card {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gp-features__card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-4px);
}

.gp-features__card i {
  font-size: 1.75rem;
  color: var(--gp-primary-light);
  margin-bottom: 1.25rem;
}

.gp-features__card h3 {
  font-family: var(--gp-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.gp-features__card p {
  font-size: 0.92rem;
  color: var(--gp-text-muted);
  margin: 0;
  line-height: 1.65;
}

.gp-community {
  background: linear-gradient(180deg, var(--gp-dark) 0%, var(--gp-dark-soft) 100%);
}

.gp-community__panel {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 2.5rem;
}

.gp-community__panel p {
  font-size: 1rem;
  color: var(--gp-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gp-community__panel p:last-child {
  margin-bottom: 0;
}

.gp-responsible__resource {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.gp-responsible__resource:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.06);
}

.gp-responsible__resource i {
  font-size: 1.35rem;
  color: var(--gp-accent);
  flex-shrink: 0;
}

.gp-responsible__resource span {
  font-family: var(--gp-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
}

.gp-cta {
  padding: 4rem 0;
  background: var(--gp-dark-soft);
}

.gp-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.gp-footer {
  background: #0a0614;
  border-top: 1px solid var(--gp-border);
  padding: 4rem 0 0;
}

.gp-footer__brand img {
  height: 40px;
  margin-bottom: 1.25rem;
}

.gp-footer__brand p {
  font-size: 0.9rem;
  color: var(--gp-text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.gp-footer__heading {
  font-family: var(--gp-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gp-text);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gp-footer__links li {
  margin-bottom: 0.65rem;
}

.gp-footer__links a {
  font-size: 0.9rem;
  color: var(--gp-text-muted);
  transition: color 0.25s ease;
}

.gp-footer__links a:hover {
  color: var(--gp-accent-glow);
}

.gp-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gp-text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.gp-footer__contact i {
  color: var(--gp-primary-light);
  margin-top: 0.15rem;
  width: 16px;
}

.gp-footer__disclaimer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gp-border);
  background: rgba(0, 0, 0, 0.25);
}

.gp-footer__disclaimer-box {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.gp-footer__disclaimer-box p {
  font-size: 0.85rem;
  color: var(--gp-text-muted);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

.gp-footer__disclaimer-box p:last-child {
  margin-bottom: 0;
}

.gp-footer__disclaimer-box strong {
  color: var(--gp-accent-glow);
}

.gp-footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gp-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gp-text-muted);
}

.gp-page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--gp-dark-soft) 0%, var(--gp-dark) 100%);
  border-bottom: 1px solid var(--gp-border);
}

.gp-page-hero h1 {
  font-family: var(--gp-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.gp-page-hero p {
  font-size: 1.05rem;
  color: var(--gp-text-muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.7;
}

.gp-legal {
  padding: 3.5rem 0 5rem;
}

.gp-legal__content {
  max-width: 820px;
}

.gp-legal__content h2 {
  font-family: var(--gp-font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--gp-text);
}

.gp-legal__content h2:first-child {
  margin-top: 0;
}

.gp-legal__content h3 {
  font-family: var(--gp-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--gp-text);
}

.gp-legal__content p {
  font-size: 0.95rem;
  color: var(--gp-text-muted);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}

.gp-legal__content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.15rem;
}

.gp-legal__content ul li {
  font-size: 0.95rem;
  color: var(--gp-text-muted);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.gp-legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gp-text-muted);
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .gp-section {
    padding: 3.5rem 0;
  }

  .gp-about__stat-grid {
    grid-template-columns: 1fr;
  }

  .gp-disclaimer__box {
    padding: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .gp-footer {
    padding-top: 3rem;
  }
}

.gp-no-scroll {
  overflow: hidden;
}

.gp-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 6, 20, 0.92);
  backdrop-filter: blur(8px);
  animation: gpAgeFadeIn 0.35s ease;
}

.gp-age-overlay--closing {
  animation: gpAgeFadeOut 0.3s ease forwards;
}

.gp-age-modal {
  width: 100%;
  max-width: 480px;
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.25),
    0 0 80px rgba(6, 182, 212, 0.1),
    var(--gp-shadow);
  animation: gpAgeModalIn 0.4s ease;
}

.gp-age-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gp-accent-glow);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--gp-border);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
}

.gp-age-modal__title {
  font-family: var(--gp-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--gp-text);
}

.gp-age-modal__text {
  font-size: 0.92rem;
  color: var(--gp-text-muted);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  text-align: left;
}

.gp-age-modal__text strong {
  color: var(--gp-accent-glow);
}

.gp-age-modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  cursor: pointer;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.gp-age-modal__checkbox:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.1);
}

.gp-age-modal__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gp-age-modal__checkmark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  border: 2px solid var(--gp-border);
  border-radius: 6px;
  background: var(--gp-dark);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gp-age-modal__checkbox input:checked + .gp-age-modal__checkmark {
  background: var(--gp-primary);
  border-color: var(--gp-primary-light);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.gp-age-modal__checkbox input:checked + .gp-age-modal__checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gp-age-modal__checkbox input:focus + .gp-age-modal__checkmark {
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.gp-age-modal__label-text {
  font-size: 0.9rem;
  color: var(--gp-text);
  line-height: 1.5;
}

.gp-age-modal__accept {
  width: 100%;
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gp-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.gp-age-modal__accept:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.gp-age-modal__accept:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gp-cookie-banner--visible {
  transform: translateY(0);
}

.gp-cookie-banner--closing {
  transform: translateY(100%);
}

.gp-cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  box-shadow:
    0 -4px 32px rgba(124, 58, 237, 0.15),
    0 0 40px rgba(6, 182, 212, 0.08);
}

.gp-cookie-banner__text {
  font-size: 0.88rem;
  color: var(--gp-text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.gp-cookie-banner__text a {
  color: var(--gp-accent-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gp-cookie-banner__text a:hover {
  color: var(--gp-primary-light);
}

.gp-cookie-banner__accept {
  flex-shrink: 0;
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gp-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gp-cookie-banner__accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

@keyframes gpAgeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gpAgeFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes gpAgeModalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 575.98px) {
  .gp-age-modal {
    padding: 2rem 1.5rem;
  }

  .gp-cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .gp-cookie-banner__accept {
    width: 100%;
  }
}

.gp-play-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--gp-dark) 0%, var(--gp-dark-soft) 40%, var(--gp-dark) 100%);
  position: relative;
  overflow-x: hidden;
}

.gp-play-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gp-play-page::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gp-play-game {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.gp-play-game__header {
  text-align: center;
  margin-bottom: 2rem;
}

.gp-play-game__title {
  font-family: var(--gp-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.gp-play-game__subtitle {
  font-size: 0.95rem;
  color: var(--gp-text-muted);
  margin: 0;
}

.gp-play-game__arena {
  background: var(--gp-dark-card);
  border: 1px solid var(--gp-border);
  border-radius: calc(var(--gp-radius) + 4px);
  padding: 2rem;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.15),
    inset 0 0 60px rgba(124, 58, 237, 0.03);
}

.gp-play-game__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.gp-play-game__score {
  font-family: var(--gp-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gp-accent-glow);
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}

.gp-game-disclaimer {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  font-size: 0.82rem;
  color: var(--gp-text-muted);
  line-height: 1.65;
  text-align: center;
}

.gp-game-disclaimer strong {
  color: var(--gp-accent-glow);
}

.gp-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.gp-slot__machine {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--gp-dark-soft) 0%, var(--gp-dark) 100%);
  border: 2px solid var(--gp-border);
  border-radius: var(--gp-radius);
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.25),
    0 0 60px rgba(6, 182, 212, 0.1),
    inset 0 0 20px rgba(124, 58, 237, 0.05);
}

.gp-slot__machine::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--gp-radius) + 2px);
  background: var(--gp-gradient);
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.gp-slot__reels {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.gp-slot__reel {
  width: 90px;
  height: 120px;
  background: var(--gp-dark);
  border: 2px solid var(--gp-border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(124, 58, 237, 0.2);
}

.gp-slot__reel--spinning .gp-slot__symbols {
  animation: gpSlotSpin 0.6s linear infinite;
}

.gp-slot__symbols {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gp-slot__symbol {
  width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gp-gold);
  text-shadow: 0 0 15px rgba(240, 171, 252, 0.6);
}

.gp-slot__win {
  animation: gpSlotWin 0.6s ease infinite alternate;
}

.gp-slot__lever {
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gp-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-slot__lever:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55);
}

.gp-slot__lever:active {
  transform: translateY(1px);
}

.gp-bj {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gp-bj__table {
  position: relative;
  padding: 2rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(35, 26, 58, 0.9) 0%, var(--gp-dark) 70%);
  border: 2px solid var(--gp-border);
  border-radius: 50% / 30%;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.2),
    inset 0 0 40px rgba(6, 182, 212, 0.05);
}

.gp-bj__hand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.gp-bj__hand-label {
  font-family: var(--gp-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gp-bj__cards {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 110px;
}

.gp-bj__card {
  width: 72px;
  height: 100px;
  background: linear-gradient(145deg, #fff 0%, #e8e8f0 100%);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--gp-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gp-dark);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(124, 58, 237, 0.15);
  transition: transform 0.3s ease;
}

.gp-bj__card--deal {
  animation: gpCardDeal 0.4s ease;
}

.gp-bj__card--red {
  color: #dc2626;
}

.gp-bj__card--hidden {
  background: linear-gradient(145deg, var(--gp-primary) 0%, var(--gp-dark-soft) 100%);
  color: transparent;
  border-color: var(--gp-primary-light);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(124, 58, 237, 0.35);
}

.gp-bj__card--hidden::after {
  content: '?';
  color: var(--gp-accent-glow);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.gp-bj__score {
  font-family: var(--gp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gp-accent-glow);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.gp-bj__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gp-bj__btn {
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gp-border);
  border-radius: 50px;
  cursor: pointer;
  background: rgba(124, 58, 237, 0.12);
  color: var(--gp-text);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gp-bj__btn:hover {
  background: rgba(124, 58, 237, 0.22);
  border-color: var(--gp-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}

.gp-bj__btn--primary {
  background: var(--gp-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.gp-bj__btn--primary:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

.gp-roulette {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.gp-roulette__wheel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.gp-roulette__wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--gp-border);
  background: conic-gradient(
    from 0deg,
    #dc2626 0deg 10deg,
    #1a1230 10deg 20deg,
    #dc2626 20deg 30deg,
    #1a1230 30deg 40deg,
    #dc2626 40deg 50deg,
    #1a1230 50deg 60deg,
    #dc2626 60deg 70deg,
    #1a1230 70deg 80deg,
    #dc2626 80deg 90deg,
    #1a1230 90deg 100deg,
    #dc2626 100deg 110deg,
    #1a1230 110deg 120deg,
    #dc2626 120deg 130deg,
    #1a1230 130deg 140deg,
    #dc2626 140deg 150deg,
    #1a1230 150deg 160deg,
    #dc2626 160deg 170deg,
    #1a1230 170deg 180deg,
    #059669 180deg 190deg,
    #1a1230 190deg 200deg,
    #dc2626 200deg 210deg,
    #1a1230 210deg 220deg,
    #dc2626 220deg 230deg,
    #1a1230 230deg 240deg,
    #dc2626 240deg 250deg,
    #1a1230 250deg 260deg,
    #dc2626 260deg 270deg,
    #1a1230 270deg 280deg,
    #dc2626 280deg 290deg,
    #1a1230 290deg 300deg,
    #dc2626 300deg 310deg,
    #1a1230 310deg 320deg,
    #dc2626 320deg 330deg,
    #1a1230 330deg 340deg,
    #dc2626 340deg 350deg,
    #1a1230 350deg 360deg
  );
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.3),
    0 0 80px rgba(6, 182, 212, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.4);
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.gp-roulette__wheel--spinning {
  animation: gpWheelGlow 0.5s ease infinite alternate;
}

.gp-roulette__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gp-gradient);
  border: 3px solid var(--gp-dark-card);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  z-index: 2;
}

.gp-roulette__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(--gp-gold);
  filter: drop-shadow(0 0 6px rgba(240, 171, 252, 0.6));
  z-index: 3;
}

.gp-roulette__bets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 500px;
}

.gp-roulette__bet {
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--gp-dark-card);
  color: var(--gp-text);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gp-roulette__bet:hover {
  border-color: var(--gp-primary-light);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.25);
}

.gp-roulette__bet--active {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--gp-primary-light);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
}

.gp-roulette__bet--red {
  color: #f87171;
}

.gp-roulette__bet--black {
  color: var(--gp-text-muted);
}

.gp-roulette__bet--green {
  color: #34d399;
}

.gp-roulette__spin {
  font-family: var(--gp-font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gp-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-roulette__spin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55);
}

@keyframes gpSlotSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes gpSlotWin {
  0% {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(124, 58, 237, 0.2);
  }
  100% {
    box-shadow:
      inset 0 0 20px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(240, 171, 252, 0.6),
      0 0 40px rgba(124, 58, 237, 0.4);
  }
}

@keyframes gpCardDeal {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

@keyframes gpWheelGlow {
  0% {
    box-shadow:
      0 0 40px rgba(124, 58, 237, 0.3),
      0 0 80px rgba(6, 182, 212, 0.15),
      inset 0 0 30px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow:
      0 0 50px rgba(124, 58, 237, 0.5),
      0 0 100px rgba(6, 182, 212, 0.25),
      inset 0 0 30px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 575.98px) {
  .gp-play-game__arena {
    padding: 1.25rem;
  }

  .gp-slot__reel {
    width: 70px;
    height: 95px;
  }

  .gp-slot__symbol {
    width: 70px;
    height: 95px;
    font-size: 2rem;
  }

  .gp-bj__card {
    width: 60px;
    height: 84px;
    font-size: 1rem;
  }

  .gp-roulette__wheel-wrap {
    width: 220px;
    height: 220px;
  }
}
