:root {
    --violet: #40295E;
    --blue: #13222E;
    --white: #F5F5F5;
    --black: #1A1A1A;
    --gray: #5A5A5A;
    --yellow: #E3C200; 
    --line-height: 1.6;
    --font-size-base: 1rem;
    --font-size-md: clamp(0.625rem, 0.305vw + 0.55rem, 0.79rem);
    --font-size-lg: clamp(0.975rem, 0.625vw + 0.82rem, 1.32rem);
    --font-size-xl: clamp(1.525rem, 1.4875vw + 1.15625rem, 2.34375rem);
    --font-family: 'Arial', sans-serif;
  }
  
  .dragon-background {
      position: fixed;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      pointer-events: none;
      opacity: 0.1;
  }
  
  .dragon-background img {
      width: 150vh;
      height: auto;
  }
  
  /* Update the container to ensure it's above the dragon */
  .container {
      position: relative;
      z-index: 1;
  }
  
  body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--blue);
      color: var(--white);
      font-family: var(--font-family);
      line-height: var(--line-height);
      font-size: var(--font-size-base);
  }
  
  #running-score {
      display: flex;
      flex-direction: column;
      text-align: center;
  }
  
  #score {
      display: flex;
      align-items: space-between;
      gap: 2rem;
  }
  
  /* Additional styles to enhance Bootstrap */
  
  .game-title {
      color: var(--yellow);
      font-weight: bold;
      font-size: var(--font-size-xl);
      margin-bottom: 2rem;
  }
  
  .game-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
  }
  
  .game-btn {
      text-transform: lowercase;
      font-size: var(--font-size-lg);
      padding: 0.5rem 1.5rem;
      background-color: var(--violet);
      border-color: var(--violet);
      color: var(--white);
  }
  
  .game-btn:hover, .game-btn:focus {
      background-color: var(--yellow);
      border-color: var(--yellow);
      color: var(--black);
  }
  
  .score-section {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 2rem;
  }
  
  .score-container {
      display: flex;
      justify-content: center;
      gap: 3rem;
  }
  
  .score-box {
      text-align: center;
  }
  
  .score-box h3 {
      color: var(--white);
      font-size: var(--font-size-lg);
  }
  
  .score {
      font-size: var(--font-size-xl);
      font-weight: bold;
      color: var(--yellow);
      margin-bottom: 0;
  }
  
  #results {
      width: 100%;
      max-width: 400px;
  }
  
  .results-section .card {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      background-color: var(--violet);
  }
  
  .results-section .card-text {
      font-style: italic;
      color: var(--white);
      font-size: var(--font-size-md);
  }

  .footer-42 {
    position: relative;
    background-color: #1a2a3b;
    color: var(--white);
    text-align: center;
    font-size: small;
    width: 100%;
    padding: 0;
  }

  .credit {
    position: absolute;
    bottom: 8px;
    right: 84%;
    font-size: 0.8rem;
  }

    .footer-42 a {
        color: var(--yellow);
        text-decoration: none;
        padding-bottom: 0.5rem;
    }