:root {
  --primary-burgundy: #8b1538;
  --accent-gold: #c9a961;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #2d2d2d;
  --text-light: #666666;
  --border-light: #e0e0e0;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.age-gate {
  background-color: #2d2d2d;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.age-gate strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.site-header {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 37px;
  z-index: 99;
}

@media (max-width: 576px) {
  .site-header {
    top: 31px;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  letter-spacing: -0.02em;
}

.brand-text {
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-burgundy);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
}

.btn-link:hover {
  color: var(--primary-burgundy);
}

.btn-primary {
  background-color: var(--primary-burgundy);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: #6d1030;
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(245, 240, 232, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(139, 21, 56, 0.1);
  color: var(--primary-burgundy);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-section h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-disclaimer {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-light);
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(139, 21, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-burgundy);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.info-box {
  background-color: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent-gold);
}

.info-box h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
}

.info-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.warning-style {
  background-color: #fff8f0;
  border-left-color: #ff9800;
}

.warning-style li:before {
  content: "×";
  color: #ff9800;
}

.section-games {
  background-color: var(--light-bg);
}

.game-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid var(--border-light);
}

.game-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-content {
  padding: 48px;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.game-header h3 {
  font-size: 2rem;
}

.game-badge {
  background-color: rgba(139, 21, 56, 0.1);
  color: var(--primary-burgundy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.game-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.game-details-box {
  background-color: var(--light-bg);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.game-details-box h4 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.game-details-box p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.game-details-box ul {
  list-style: none;
  padding: 0;
}

.game-details-box li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
}

.game-details-box li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.game-stats {
  display: flex;
  gap: 32px;
  padding: 24px;
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 28px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.stat-item i {
  color: var(--primary-burgundy);
  font-size: 1.4rem;
  margin-top: 4px;
}

.stat-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-item span {
  display: block;
  font-size: 14px;
  color: var(--text-light);
}

.game-guidance {
  background-color: #fff8f0;
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.game-guidance h4 {
  margin-bottom: 16px;
  color: #d35400;
}

.game-guidance ul {
  list-style: none;
  padding: 0;
}

.game-guidance li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
}

.game-guidance li:before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #ff9800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  text-align: center;
  padding: 36px 28px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary-burgundy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(139, 21, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 20px;
}

.step-icon i {
  font-size: 1.8rem;
  color: var(--primary-burgundy);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.step-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  gap: 28px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3 i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.section-responsible {
  background-color: var(--light-bg);
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.responsible-card {
  background: white;
  text-align: center;
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.responsible-card i {
  font-size: 3rem;
  color: var(--primary-burgundy);
  margin-bottom: 20px;
}

.responsible-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.responsible-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.warning-box-large {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid #ff9800;
}

.warning-box-large h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #d35400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.warning-box-large > p {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.warning-box-large ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.warning-box-large li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-dark);
  line-height: 1.7;
}

.warning-box-large li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9800;
  font-size: 1.5rem;
}

.help-box {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #27ae60;
}

.help-box p {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.help-box strong {
  color: #27ae60;
}

.help-box a {
  color: #27ae60;
  text-decoration: underline;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.9rem;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-link,
  .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }

  .hero-section {
    padding: 60px 0;
  }

  section {
    padding: 60px 0;
  }

  .game-content {
    padding: 32px;
  }

  .game-stats {
    flex-direction: column;
  }

  .game-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 16px;
  }

  .age-gate {
    font-size: 11px;
    padding: 10px 12px;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    font-size: 1.2rem;
  }

  .nav-actions {
    flex-direction: row;
    gap: 6px;
  }

  .btn-link {
    font-size: 13px;
    padding: 6px 12px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-disclaimer {
    font-size: 13px;
  }

  section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 1rem;
  }

  .features-grid,
  .steps-grid {
    gap: 24px;
  }

  .feature-card,
  .step-card {
    padding: 28px 20px;
  }

  .game-card {
    margin-bottom: 40px;
  }

  .game-image-wrapper {
    height: 220px;
  }

  .game-content {
    padding: 24px 16px;
  }

  .game-header h3 {
    font-size: 1.5rem;
  }

  .game-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .game-intro {
    font-size: 1rem;
  }

  .game-details-box,
  .game-guidance {
    padding: 20px;
  }

  .game-stats {
    padding: 16px;
    gap: 16px;
  }

  .info-box {
    padding: 24px 16px;
  }

  .faq-item {
    padding: 20px 16px;
  }

  .warning-box-large {
    padding: 28px 20px;
  }

  .responsible-intro {
    font-size: 1rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 15px;
  }
}

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-modal {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.age-modal-icon {
  font-size: 4rem;
  color: var(--primary-burgundy);
  margin-bottom: 24px;
}

.age-modal h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary-burgundy);
}

.age-modal p {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  border: none;
  transition: all 0.3s;
}

.age-btn-yes {
  background: var(--primary-burgundy);
  color: white;
}

.age-btn-yes:hover {
  background: #6d1030;
}

.age-btn-no {
  background: #e0e0e0;
  color: #2d2d2d;
}

.age-btn-no:hover {
  background: #d0d0d0;
}

.age-modal-hidden {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--primary-burgundy);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: #2d2d2d;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-burgundy);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--primary-burgundy);
  color: white;
}

.cookie-accept:hover {
  background: #6d1030;
}

.cookie-decline {
  background: #e0e0e0;
  color: #2d2d2d;
}

.cookie-decline:hover {
  background: #d0d0d0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    padding: 0 8px;
  }

  .cookie-text {
    font-size: 14px;
  }

  .cookie-text p {
    font-size: 14px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    flex: 1;
    width: 100%;
  }

  .age-modal {
    padding: 36px 28px;
    max-width: 90%;
  }

  .age-modal h2 {
    font-size: 1.6rem;
  }

  .age-modal-icon {
    font-size: 3rem;
  }

  .age-modal-buttons {
    flex-direction: column;
    width: 100%;
  }

  .age-btn {
    width: 100%;
  }
}
.mpc-footer {
  background-color: #121b2e;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.mpc-footer.border-slate {
  border-color: #1f2937 !important;
}

.mpc-footer .container-xxl {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 48px;
  padding-bottom: 40px;
}

.mpc-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.mpc-footer a:hover {
  color: #ffffff;
}

.mpc-footer .navbar-brand {
  padding: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 600;
}

.mpc-footer .navbar-brand img {
  display: block;
  height: 42px;
  width: auto;
}

.mpc-footer p {
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 15px;
}

.mpc-footer a[href*="responsiblegambling.org"] {
  color: #63ac8d;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.mpc-footer > .container-xxl > .row {
  display: flex;
  flex-wrap: wrap;
}

.mpc-footer > .container-xxl > .row > .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer > .container-xxl > .row > .col-md-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer > .container-xxl > .row > .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer .nav-pages > .row {
  display: flex;
  flex-wrap: wrap;
}

.mpc-footer .nav-pages > .row > .col-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer .nav-pages {
  margin-top: 40px;
}

.mpc-footer .label-nav {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}

.mpc-footer .nav-pages a {
  display: block;
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.86;
  margin-bottom: 6px;
}

.mpc-footer .nav-pages a:hover {
  opacity: 1;
}

.mpc-footer .logo-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 4px;
}

.mpc-footer .logo-trust .age18 {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #f04242;
  background: #121b2e;
  color: #f04242;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpc-footer .logo-trust img {
  display: block;
  height: 38px;
  width: auto;
}

.mpc-footer .border-top.border-secondary {
  border-color: #1f2937 !important;
}

.mpc-footer .text-center.pt-3.mt-4 {
  padding-top: 18px !important;
  margin-top: 40px !important;
}

.mpc-footer .small {
  color: #9ca3af;
  line-height: 1.5;
}

.mpc-footer .small.fw-bold {
  color: #e5e7eb;
}

@media (max-width: 991.98px) {
  .mpc-footer > .container-xxl > .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mpc-footer .nav-pages {
    margin-top: 32px;
  }

  .mpc-footer .logo-trust {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 575.98px) {
  .mpc-footer .container-xxl {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .mpc-footer .navbar-brand {
    font-size: 16px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }

  .mpc-footer .nav-pages > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .mpc-footer .logo-trust {
    gap: 14px;
  }

  .mpc-footer .logo-trust .age18 {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .mpc-footer .logo-trust img {
    height: 30px;
  }

  .mpc-footer .small {
    font-size: 11px;
  }
}

.py-4 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.gy-2 {
  row-gap: 8px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-md-0 {
  margin-bottom: 0;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 24px;
}

.pt-3 {
  padding-top: 18px;
}

.gap-2 {
  gap: 8px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

.border-top {
  border-top: 1px solid;
}

.border-secondary {
  border-color: #1f2937;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.container-xxl {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1200px) {
  .container-xxl {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.4rem;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-actions {
    gap: 4px;
  }

  .btn-link,
  .btn-primary {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .container {
    padding: 0 12px;
  }

  .game-content {
    padding: 20px 12px;
  }

  .info-box {
    padding: 20px 12px;
  }

  .info-box li {
    padding: 8px 0 8px 20px;
    font-size: 14px;
  }

  .game-details-box li,
  .game-guidance li {
    font-size: 14px;
  }
}
