/* Reset some default spacing */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a1a3a;
  }
  
  /* Center everything in the hero section */
  .landing {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;  /* vertical centering */
    align-items: center;      /* horizontal centering */
    padding: 20px;
  }
  
  /* Title styling */
  .landing h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .red-text {
    color: #d2002e;
    font-weight: 900;
    -webkit-text-stroke: 5px white;
    paint-order: stroke fill;
  }

  .yellow-text {
    color: white;
    font-weight: 900;
    -webkit-text-stroke: 5px black;
    paint-order: stroke fill;
  }

  h2 {
    color: white;
    font-weight: 900;
    -webkit-text-stroke: 2px black;
    paint-order: stroke fill;
  }

  /* Image styling */
  .landing img {
    max-width: 100%;
    width: 600px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  /* Paragraph styling */
  .landing h2 {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 20px;
  }
  
  #countdown {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .time-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 90px;
    text-align: center;
  }
  
  .time-box .num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .time-box .label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 4px;
  }

  .rb-logo {
    width: 350px;
    max-width: 70%; 
    height: auto;
    margin: 20px auto 0;
    display: block;
  }