* {
      font-family: 'Inter', sans-serif;
    }
    body {
      background: linear-gradient(135deg, #0e0e0e 0%, #1a1a2e 100%);
      color: #fff;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }
    body::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(13,110,253,0.1) 0%, transparent 70%);
      animation: pulse 20s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }
    .navbar {
      background: rgba(10, 10, 10, 0.8) !important;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 1rem 0;
    }
    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #0d6efd, #6610f2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-link {
      color: rgba(255,255,255,0.7) !important;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .nav-link:hover {
      color: #0d6efd !important;
    }
    .features-section {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(10px);
      height: 100%;
      position: relative;
      z-index: 1;
    }
    .feature-item {
      display: flex;
      align-items: start;
      margin-bottom: 25px;
      padding: 15px;
      border-radius: 12px;
      background: rgba(255,255,255,0.02);
      transition: all 0.3s ease;
    }
    .feature-item:hover {
      background: rgba(13,110,253,0.1);
      transform: translateX(5px);
    }
    .feature-icon {
      font-size: 1.8rem;
      color: #0d6efd;
      margin-right: 15px;
      flex-shrink: 0;
    }
    .feature-content h5 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
      color: #fff;
    }
    .feature-content p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      margin: 0;
    }
    .glass-box {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 50px 40px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      position: relative;
      z-index: 1;
    }
    .glass-box h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .form-control {
      background: rgba(0,0,0,0.3) !important;
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff !important;
      padding: 12px 15px;
      border-radius: 10px;
      transition: all 0.3s;
    }
    .form-control:focus {
      background: rgba(0,0,0,0.4) !important;
      border-color: #0d6efd;
      box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
      color: #fff !important;
    }
    .form-control::placeholder {
      color: rgba(255,255,255,0.5);
    }
    .btn-primary {
      background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
      border: none;
      padding: 12px;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.3s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(13,110,253,0.4);
    }
    .form-label {
      font-weight: 500;
      margin-bottom: 8px;
      color: rgba(255,255,255,0.9);
    }
    a {
      color: #0d6efd;
      text-decoration: none;
      transition: color 0.3s;
    }
    a:hover {
      color: #6610f2;
    }
    .alert {
      border-radius: 10px;
      border: none;
    }
    .welcome-text {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
    }
    .link-text {
      color: rgba(255,255,255,0.6);
    }
    .btn-outline-light {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.9);
      transition: all 0.3s;
    }
    .btn-outline-light:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.5);
      color: #fff;
    }
    .benefit-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      background: rgba(13,110,253,0.1);
      border: 1px solid rgba(13,110,253,0.3);
      border-radius: 20px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 15px;
    }
    @media (max-width: 991px) {
      .features-section {
        margin-bottom: 30px;
      }
    }
