    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: #f4f6f8;
      min-height: 100vh;
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* Header */
    .updates-header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 3rem 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .updates-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: linear-gradient(45deg, #0066cc, #004a99);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      color: white;
      font-weight: bold;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .updates-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      background: linear-gradient(45deg, #0066cc, #004a99);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .updates-subtitle {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 1rem;
    }

    /* Recent Updates Section */
    .recent-updates {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-icon {
      width: 24px;
      height: 24px;
      background: linear-gradient(45deg, #0066cc, #004a99);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.8rem;
    }

    .update-entry {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 15px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .update-entry:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 102, 204, 0.2);
    }

    .update-date {
      display: inline-block;
      background: linear-gradient(45deg, #0066cc, #004a99);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1rem;
      box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
    }

    .update-list {
      list-style: none;
      padding: 0;
    }

    .update-list li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.8rem;
      color: #555;
      font-size: 1rem;
    }

    .update-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #0066cc;
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* Coming Soon Section */
    .coming-soon {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .coming-soon-intro {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 2rem;
      text-align: center;
      padding: 1rem;
      background: rgba(0, 102, 204, 0.05);
      border-radius: 10px;
      border-left: 4px solid #0066cc;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .feature-item {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 12px;
      padding: 1.25rem;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 102, 204, 0.2);
    }

    .feature-title {
      font-weight: 600;
      color: #0066cc;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .feature-icon {
      width: 18px;
      height: 18px;
      background: linear-gradient(45deg, #0066cc, #004a99);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.7rem;
    }

    .feature-description {
      color: #666;
      font-size: 0.95rem;
    }

    /* Vision Statement */
    .vision-statement {
      background: linear-gradient(45deg, #0066cc, #004a99);
      color: white;
      border-radius: 15px;
      padding: 2rem;
      margin-bottom: 2rem;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
    }

    .vision-text {
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 1.7;
    }

    /* Footer */
    .footer {
      text-align: center;
      padding: 2rem;
      color: #666;
      font-size: 0.9rem;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .container {
        padding: 1rem;
      }

      .updates-header {
        padding: 2rem 1rem;
      }

      .updates-title {
        font-size: 2rem;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .recent-updates,
      .coming-soon {
        padding: 1.5rem;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .update-entry,
    .feature-item {
      animation: fadeInUp 0.6s ease-out;
    }

    .update-entry:nth-child(2) { animation-delay: 0.1s; }
    .update-entry:nth-child(3) { animation-delay: 0.2s; }
    .feature-item:nth-child(2) { animation-delay: 0.1s; }
    .feature-item:nth-child(3) { animation-delay: 0.2s; }
    .feature-item:nth-child(4) { animation-delay: 0.3s; }
    .feature-item:nth-child(5) { animation-delay: 0.4s; }
    .feature-item:nth-child(6) { animation-delay: 0.5s; }