:root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --secondary: #ec4899;
      --dark: #0f172a;
      --darker: #070b15;
      --card: #1e293b;
      --card-hover: #2d3748;
      --text: #f1f5f9;
      --text-muted: #94a3b8;
      --success: #10b981;
      --glass: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --radius: 16px;
      --radius-sm: 8px;
      --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, var(--darker), var(--dark));
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* Animated Background */
    .bg-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .bg-animation span {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
    }

    .bg-animation .circle-1 {
      width: 400px;
      height: 400px;
      background: var(--primary);
      top: 10%;
      left: 5%;
      animation: float 15s infinite ease-in-out;
    }

    .bg-animation .circle-2 {
      width: 600px;
      height: 600px;
      background: var(--secondary);
      bottom: 10%;
      right: 5%;
      animation: float 20s infinite ease-in-out reverse;
    }

    /* Particles */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      animation: float-particle 20s infinite linear;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 5%;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--glass-border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: white;
      box-shadow: var(--shadow);
    }

    .logo-text h1 {
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .logo-text p {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Navigation */
    .nav-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .nav-btn {
      background: transparent;
      border: 1px solid var(--glass-border);
      padding: 8px 15px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      display: inline-block;
    }

    .nav-btn:hover {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border-color: transparent;
    }

    /* Main Content */
    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }

    /* Hero Section */
    .hero {
      text-align: center;
      margin-bottom: 40px;
      padding: 30px 20px;
      background: rgba(30, 41, 59, 0.5);
      border-radius: var(--radius);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Timeline Section */
    .timeline-section {
      margin-bottom: 40px;
    }

    .timeline-section h2 {
      font-size: 2.2rem;
      margin-bottom: 30px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
    }

    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background: linear-gradient(to bottom, var(--primary), var(--secondary));
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 10px;
    }

    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }

    .timeline-item:nth-child(odd) {
      left: 0;
    }

    .timeline-item:nth-child(even) {
      left: 50%;
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border: 4px solid var(--dark);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }

    .timeline-item:nth-child(odd)::after {
      right: -10px;
    }

    .timeline-item:nth-child(even)::after {
      left: -10px;
    }

    .timeline-content {
      padding: 20px;
      background: var(--card);
      border-radius: var(--radius);
      border: 1px solid var(--glass-border);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .timeline-date {
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .timeline-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .timeline-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Goals Section */
    .goals-section {
      margin-bottom: 40px;
    }

    .goals-section h2 {
      font-size: 2.2rem;
      margin-bottom: 30px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
    }

    .goals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
    }

    .goal-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 25px;
      border: 1px solid var(--glass-border);
      transition: var(--transition);
      text-align: center;
    }

    .goal-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .goal-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 24px;
    }

    .goal-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .goal-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 30px 20px;
      margin-top: 60px;
      color: var(--text-muted);
      font-size: 14px;
      border-top: 1px solid var(--glass-border);
    }

    /* Animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(10deg);
      }
    }

    @keyframes float-particle {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .timeline::after {
        left: 31px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
      }

      .timeline-item:nth-child(even) {
        left: 0;
      }

      .timeline-item:nth-child(odd)::after, 
      .timeline-item:nth-child(even)::after {
        left: 21px;
      }

      .goals-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
    }

    @media (max-width: 480px) {
      .goals-grid {
        grid-template-columns: 1fr;
      }
      
      .hero h2 {
        font-size: 2rem;
      }
    }