    body {
      margin: 0;
      font-family: 'Poppins', Arial, sans-serif;
      background: linear-gradient(135deg, #0a0f1a 0%, #121826 100%);
      color: #ffffff;
      overflow-x: hidden;
    }

    .glass {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
    }

    .btn {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      background: linear-gradient(90deg, #0083ff, #00b7ff);
      color: #ffffff;
      border: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #006fd1, #0083ff);
      transition: all 0.4s;
      z-index: -1;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .btn:hover:before {
      left: 0;
    }

    .progress {
      width: 100%;
      height: 12px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }
    
    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #007bff, #00d4ff);
      border-radius: 10px;
      position: relative;
      transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .progress-bar:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .project-card {
      width: 100%;
      max-width: 300px;
      border-radius: 16px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      border: 1px solid rgba(255,255,255,0.08);
    }
    
    .project-card:hover {
      transform: scale(1.05) translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.2);
    }
    
    .project-card:after {
      content: '';
      position: absolute;
      top: -100%;
      left: -100%;
      width: 50%;
      height: 50%;
      background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
      transform: rotate(45deg);
      transition: all 0.5s;
    }
    
    .project-card:hover:after {
      top: 120%;
      left: 120%;
    }
    
    .project-image {
      width: 100%;
      height: 180px;
      object-fit: contain;
      background: #0d111c;
      display: block;
      transition: all 0.5s;
    }
    
    .project-card:hover .project-image {
      transform: scale(1.1);
    }
    
    .project-title {
      padding: 1rem;
      text-align: center;
      font-size: 1.125rem;
      font-weight: 600;
      color: #ffffff;
      position: relative;
      z-index: 2;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(10,15,26,0.97);
      backdrop-filter: blur(15px);
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 50;
    }
    
    .mobile-menu.active {
      display: flex;
    }
    
    .mobile-menu a {
      font-size: 1.75rem;
      margin: 1rem;
      padding: 0.5rem 1rem;
      color: #fff;
      transition: all 0.3s;
      position: relative;
    }
    
    .mobile-menu a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #00d4ff;
      transition: all 0.3s;
      transform: translateX(-50%);
    }
    
    .mobile-menu a:hover {
      color: #00d4ff;
    }
    
    .mobile-menu a:hover:before {
      width: 80%;
    }

    a:focus, button:focus {
      outline: 2px dashed #00d4ff;
      outline-offset: 2px;
    }

    #projects {
      background-color: rgba(10, 15, 26, 0.9);
      position: relative;
      overflow: hidden;
    }
    
    #projects:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at center, rgba(0,131,255,0.08) 0%, rgba(10,15,26,0) 70%);
      pointer-events: none;
    }
    
    .social-icon {
      transition: all 0.4s;
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }
    
    .social-icon:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.2);
      color: #00d4ff;
    }
    
    .animated-gradient {
        background-image: linear-gradient(-45deg, #00182f, #142639, var(--darkreader-background-00407a, #003362), var(--darkreader-background-0061c7, #004e9f));
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
    }
    
    @keyframes gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .floating {
      animation: floating 3s ease-in-out infinite;
    }
    
    @keyframes floating {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .text-gradient {
      background-image: linear-gradient(to right, #aab3b5, var(--darkreader-background-0083ff, #ffffff));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .section-divider {
      height: 2px;
      width: 100%;
      background: linear-gradient(to right, transparent, rgba(0,131,255,0.5), transparent);
      margin: 2rem 0;
    }
    
    .header-link {
      position: relative;
      padding: 0.5rem;
    }
    
    .header-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #00d4ff;
      transition: width 0.3s;
    }
    
    .header-link:hover:after {
      width: 100%;
    }
    .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    z-index: 1000;
    transform: translateX(150%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .notification.active {
    transform: translateX(0);
    opacity: 1;
  }

  .notification-text {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .notification-btn {
    background-color: white;
    color: #3b82f6;
    border: none;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .notification-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
  }