body {
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
  }
  
  h1, h2, h3 {
    text-align: center;
    animation: fadeIn 1s ease forwards;
  }
  
  h1 {
    color: #2e8b57;
    font-size: 2.5em;
    margin-top: 100px;
  }
  
  h2 {
    color: #4682b4;
    margin-top: 40px;
  }
  
  h3 {
    color: #6a5acd;
    margin-top: 20px;
  }
  
  p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateY(0);
  }
  
  b {
    color: #d2691e;
  }
  
  /* Bike animation */
  .bike {
    position: fixed;
    top: 30px;
    right: -100px;
    font-size: 50px;
    animation: moveBike 15s linear infinite;
    filter: drop-shadow(0 0 5px #00f);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .bike:hover {
    animation-duration: 7s;
    filter: drop-shadow(0 0 10px #00f) brightness(1.3);
  }
  
  @keyframes moveBike {
    0% { right: -100px; }
    100% { right: 110%; }
  }
  
  .road {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #555;
    z-index: 999;
  }
  
  /* Table */
  table {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  
  table.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  th, td {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  
  th {
    background-color: #2e8b57;
    color: white;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .gold-medal {
    color: gold;
    font-weight: bold;
    font-size: 1.1em;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  