/* General Styles */
    body {
      font-family: tahoma;
      margin: 0;
      padding: 0;
      background: #3f51b5; /* Deep blue background */
      color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
	
    }

    /* Header */
    header {
      margin-bottom: 20px;
    }

    header h1 {
      font-size: 38px;

      font-weight: bold;
      margin: 0;
      animation: fadeIn 2s ease-in-out;
    }

    header p {
      font-size: 16px;
      margin: 10px 0 0;
      animation: fadeIn 2.5s ease-in-out;
    }

    /* Main Content */
    main {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      max-width: 800px;
      width: 90%;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      animation: slideIn 1s ease-in-out;
	
    }

    /* About Section Above Meter */
    #about-above-meter {
      margin-bottom: 20px;
    }

    #about-above-meter p {
      font-size: 16px;
      line-height: 1.6;
    }

    /* Speedometer Section */
    #speedometer {
      text-align: center;
    }

.speed-container {
      margin: 20px 0;
    }

    .speed-label {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .speed-value {
      font-size: 32px;
      font-weight: bold;
      background: rgba(255, 255, 255, 0.2);
      padding: 10px 20px;
      border-radius: 10px;
      display: inline-block;
      animation: pulse 1.5s infinite;
    }

    button {
      margin-top: 20px;
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600;
      background: #0073e6;
      color: white;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #005bb5;
    }

    /* Error Message Styling */
    #error {
      color: white;
      background-color: #ff4d4d; /* Red background */
      padding: 10px 20px;
      border-radius: 10px;
      margin-top: 20px;
      font-size: 14px;
      display: none; /* Hidden by default */
      animation: pulse 1.5s infinite; /* Pulse animation */
    }

    /* Additional Sections */
    .section {
      margin-top: 40px;
    }

    .section h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .section p {
      font-size: 16px;
      line-height: 1.6;
    }

    .section a {
      color: #00c6ff; /* Light blue for links */
      text-decoration: none;
      font-weight: 500;
    }

    .section a:hover {
      text-decoration: underline;
    }

    .section ul {
      list-style-type: none;
      padding: 0;
    }

    .section ul li {
      margin: 10px 0;
    }

    .section ul li a {
      color: #00c6ff; /* Light blue for links */
      text-decoration: none;
      font-weight: 500;
    }

    .section ul li a:hover {
      text-decoration: underline;
    }

    /* Footer */
    footer {
      margin-top: 30px;
      text-align: center;
      font-size: 14px;
      animation: fadeIn 3s ease-in-out;
    }

    footer a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }