    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, sans-serif;
      background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
      color: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 15px;
      line-height: 1.5;
    }
    .container {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 35px 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 5px 15px rgba(0,0,0,0.3);
      width: 95%;
      max-width: 1200px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }
    .container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #7c4dff, #00e5ff, #7c4dff);
      animation: shimmer 2s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }
    
    .hero-section {
      margin-bottom: 2rem;
    }
    
    .profile-image {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 0 auto 1.2rem;
      border: 3px solid transparent;
      background: linear-gradient(135deg, #7c4dff, #00e5ff) border-box;
      padding: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .profile-image:hover {
      transform: scale(1.05);
    }
    .profile-image img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      background: #333;
    }
    h1 {
      font-size: 2.2rem;
      margin-bottom: 0.3rem;
      color: #fff;
      font-weight: 700;
      background: linear-gradient(135deg, #fff, #00e5ff);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .subtitle {
      font-size: 1rem;
      color: #00e5ff;
      margin-bottom: 1.8rem;
      font-weight: 500;
    }
    
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .section {
      text-align: left;
    }
    .section h3 {
      font-size: 1.1rem;
      color: #00e5ff;
      margin-bottom: 0.8rem;
      text-align: center;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .section p, .section ul {
      font-size: 0.85rem;
      line-height: 1.6;
      color: #e0e0e0;
      margin-bottom: 0;
    }
    .section ul {
      padding-left: 16px;
      margin-top: 0.5rem;
    }
    .section ul li {
      margin-bottom: 0.4rem;
    }
    
    .education-item {
      margin-bottom: 1rem;
    }
    
    .education-item:last-child {
      margin-bottom: 0;
    }
    
    .education-level {
      font-weight: 600;
      color: #00e5ff;
      font-size: 0.9rem;
    }
    
    .education-college {
      font-size: 0.8rem;
      color: #d0d0d0;
      margin-top: 0.2rem;
    }
    
    .education-location {
      font-size: 0.75rem;
      color: #b0b0b0;
      font-style: italic;
    }
    
    .skills-section {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 1rem;
    }
    
    .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 1.8rem 0 1.5rem 0;
    }
    .btn {
      min-width: 130px;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      background: linear-gradient(135deg, #7c4dff, #00e5ff);
      color: #000;
      padding: 12px 18px;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
    }
    .social-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1.5rem;
    }
    .social-btn {
      width: 45px;
      height: 45px;
      min-width: unset;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      padding: 0;
      transition: all 0.3s ease;
    }
    .social-btn.linkedin {
      background: linear-gradient(135deg, #0077b5, #00a0dc);
      color: #fff;
    }
    .social-btn.github {
      background: linear-gradient(135deg, #333, #555);
      color: #fff;
    }
    .social-btn.instagram {
      background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcaf45);
      color: #fff;
    }
    .social-btn.facebook {
      background: linear-gradient(135deg, #1877f2, #42a5f5);
      color: #fff;
    }
    .social-btn.twitter {
      background: linear-gradient(135deg, #1da1f2, #0d8bd9);
      color: #fff;
    }
    .social-btn:hover {
      transform: translateY(-3px) scale(1.08);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }
    .skills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 0.8rem;
    }
    .skill-tag {
      background: rgba(124, 77, 255, 0.25);
      border: 1px solid rgba(124, 77, 255, 0.4);
      padding: 5px 12px;
      border-radius: 16px;
      font-size: 0.8rem;
      color: #e0e0e0;
      transition: all 0.2s ease;
    }
    .skill-tag:hover {
      background: rgba(124, 77, 255, 0.4);
      transform: translateY(-1px);
    }
    .highlight {
      color: #00e5ff;
      font-weight: 600;
    }
    
    /* Ultra-wide screens */
    @media (min-width: 1400px) {
      .container {
        width: 85%;
        max-width: 1300px;
        padding: 45px 40px;
      }
      .content-grid {
        gap: 2rem;
      }
      h1 {
        font-size: 2.8rem;
      }
      .subtitle {
        font-size: 1.3rem;
      }
      .profile-image {
        width: 130px;
        height: 130px;
      }
      .section h3 {
        font-size: 1.3rem;
      }
      .section p, .section ul {
        font-size: 0.95rem;
      }
      .education-level {
        font-size: 1rem;
      }
      .education-college {
        font-size: 0.9rem;
      }
      .education-location {
        font-size: 0.8rem;
      }
    }
    
    /* Large screens */
    @media (min-width: 1200px) and (max-width: 1399px) {
      .container {
        width: 90%;
        padding: 40px 35px;
      }
      h1 {
        font-size: 2.5rem;
      }
      .subtitle {
        font-size: 1.2rem;
      }
      .profile-image {
        width: 120px;
        height: 120px;
      }
      .section h3 {
        font-size: 1.2rem;
      }
      .section p, .section ul {
        font-size: 0.9rem;
      }
      .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
      }
      .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }
      .skill-tag {
        font-size: 0.85rem;
        padding: 6px 14px;
      }
    }
    
    /* Medium-large screens */
    @media (min-width: 1000px) and (max-width: 1199px) {
      .container {
        width: 90%;
        max-width: 1000px;
      }
      h1 {
        font-size: 2.3rem;
      }
      .profile-image {
        width: 110px;
        height: 110px;
      }
      .section p, .section ul {
        font-size: 0.8rem;
      }
      .education-level {
        font-size: 0.85rem;
      }
      .education-college {
        font-size: 0.75rem;
      }
      .education-location {
        font-size: 0.7rem;
      }
    }
    
    /* Tablet styles - switch to 2 columns */
    @media (max-width: 999px) and (min-width: 700px) {
      .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
      .container {
        width: 90%;
        max-width: 700px;
        padding: 35px 30px;
      }
      h1 {
        font-size: 2.1rem;
      }
      .subtitle {
        font-size: 1rem;
      }
      .profile-image {
        width: 100px;
        height: 100px;
      }
      .section h3 {
        font-size: 1rem;
      }
      .section p, .section ul {
        font-size: 0.85rem;
      }
      .btn {
        min-width: 120px;
        padding: 12px 16px;
      }
      .social-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
      }
    }
    
    /* Mobile styles - single column */
    @media (max-width: 699px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      body {
        padding: 10px;
      }
      .container {
        padding: 25px 20px;
        margin: 0;
        border-radius: 16px;
        width: 100%;
      }
      h1 {
        font-size: 1.8rem;
      }
      .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
      }
      .profile-image {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
      }
      .section {
        margin-bottom: 1.5rem;
      }
      .section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
      }
      .section p, .section ul {
        font-size: 0.8rem;
        text-align: center;
      }
      .section ul {
        text-align: left;
        margin-top: 0.4rem;
      }
      .section ul li {
        margin-bottom: 0.3rem;
      }
      .education-level {
        font-size: 0.8rem;
      }
      .education-college {
        font-size: 0.75rem;
      }
      .education-location {
        font-size: 0.7rem;
      }
      .buttons {
        flex-direction: column;
        gap: 10px;
        margin: 1.5rem 0 1.2rem 0;
      }
      .btn {
        min-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
      }
      .social-links {
        gap: 10px;
        margin-top: 1.2rem;
      }
      .social-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        border-radius: 10px;
      }
      .skills {
        gap: 6px;
        margin-top: 0.6rem;
      }
      .skill-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 12px;
      }
    }
    
    @media (max-width: 400px) {
      .container {
        padding: 20px 15px;
      }
      h1 {
        font-size: 1.6rem;
      }
      .profile-image {
        width: 70px;
        height: 70px;
      }
    }
