
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        body {
          font-family: 'Segoe UI', sans-serif;
          background-color: #0f0f0f;
          color: #f0f0f0;
          display: flex;
          justify-content: center;
          align-items: center;
          min-height: 100vh;
          padding: 20px 0;
        }
        a {
          text-decoration: none;
          color: #58a6ff;
        }

        .container {
          display: flex;
          gap: 3rem;
          padding: 2rem;
          max-width: 1000px;
          align-items: center;
        }
        .content {
          flex: 2;
        }
        .image-container {
          flex: 1;
        }
        .profile-img {
          width: 250px;
          height: 250px;
          border-radius: 50%;
          object-fit: cover;
          border: 4px solid #444;
          box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
        }

        .name {
          color: #58a6ff;
        }
        .github {
          font-size: 0.95rem;
          margin-top: 0.5rem;
        }
        .intro {
          margin: 1rem 0 2rem;
          font-size: 1.1rem;
          line-height: 1.6;
          max-width: 600px;
        }
        .skills ul {
          list-style: none;
          padding-left: 1rem;
        }
        .skills li {
          margin-bottom: 0.5rem;
        }

        .buttons {
          margin-top: 2rem;
          position: relative;
        }
        .btn {
          background-color: #58a6ff;
          color: white;
          padding: 0.6rem 1.2rem;
          border-radius: 8px;
          margin-right: 1rem;
          margin-bottom: 0.5rem;
          transition: background 0.3s ease;
          cursor: pointer;
          border: none;
          display: inline-block;
        }
        .btn:hover {
          background-color: #3a8ee6;
        }
        .btn.outline {
          background: transparent;
          border: 2px solid #58a6ff;
        }
        .btn.outline:hover {
          background-color: #1f1f1f;
        }
        .projects-section {
          margin-top: 3rem;
          padding-top: 2rem;
          border-top: 1px solid #333;
          display: none;
          animation: slideDown 0.5s ease-out;
        }
        
        .projects-section.show {
          display: block;
        }

        @keyframes slideDown {
          from {
            opacity: 0;
            transform: translateY(-20px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .projects-section h2 {
          color: #58a6ff;
          margin-bottom: 1.5rem;
          font-size: 1.5rem;
        }

        .projects-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 1.5rem;
        }

        .project-card {
          background: #1a1a1a;
          border: 1px solid #333;
          border-radius: 8px;
          padding: 1.5rem;
          transition: all 0.3s ease;
        }

        .project-card:hover {
          border-color: #58a6ff;
          transform: translateY(-2px);
        }

        .project-card h3 {
          color: #f0f0f0;
          margin-bottom: 0.8rem;
          font-size: 1.1rem;
        }

        .project-card p {
          color: #ccc;
          font-size: 0.9rem;
          line-height: 1.5;
          margin-bottom: 0.8rem;
        }

        .project-card .tech {
          color: #58a6ff;
          font-size: 0.85rem;
          margin-bottom: 1rem;
        }

        .project-card a {
          color: #58a6ff;
          font-size: 0.9rem;
          border: 1px solid #58a6ff;
          padding: 0.3rem 0.8rem;
          border-radius: 4px;
          transition: all 0.3s ease;
        }

        .project-card a:hover {
          background: #58a6ff;
          color: white;
        }
        .dropdown {
          display: inline-block;
          position: relative;
        }
        
        .dropdown-content {
          display: none;
          position: absolute;
          background-color: #1c1c1c;
          min-width: 280px;
          padding: 1.2rem;
          border-radius: 8px;
          top: 120%;
          left: 0;
          z-index: 1000;
          box-shadow: 0 8px 32px rgba(0,0,0,0.5);
          border: 1px solid #333;
        }
        
        .dropdown-content.show {
          display: block;
          animation: fadeInDown 0.3s ease-out;
        }
        
        @keyframes fadeInDown {
          from {
            opacity: 0;
            transform: translateY(-10px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
        .dropdown-content h3 {
          color: #58a6ff;
          margin-bottom: 1rem;
          font-size: 1.1rem;
        }
        
        .contact-item {
          display: flex;
          align-items: center;
          gap: 0.8rem;
          margin-bottom: 0.8rem;
          padding: 0.5rem;
          border-radius: 4px;
          transition: background 0.3s ease;
        }
        
        .contact-item:hover {
          background: rgba(88, 166, 255, 0.1);
        }
        
        .contact-item:last-child {
          margin-bottom: 0;
        }
        
        .contact-icon {
          font-size: 1.2rem;
          width: 20px;
          text-align: center;
        }
        
        .contact-info {
          flex: 1;
        }
        
        .contact-label {
          font-size: 0.8rem;
          color: #999;
          display: block;
        }
        
        .contact-value {
          color: #f0f0f0;
          font-size: 0.9rem;
        }
        
        .contact-item a {
          color: #58a6ff;
          text-decoration: none;
        }
        
        .contact-item a:hover {
          text-decoration: underline;
        }

        @media (max-width: 768px) {
          .container {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
          }
          
          .profile-img {
            width: 200px;
            height: 200px;
          }
          
          .projects-grid {
            grid-template-columns: 1fr;
          }
          
          .dropdown-content {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 300px;
          }
        }
