      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        color: #1a1a2e;
        background: #f0f0f5;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      .resume-page {
        max-width: 850px;
        margin: 2rem auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
      }

      /* Header */
      .resume-header {
        background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
        color: #fff;
        padding: 3rem 3rem 2.5rem;
      }

      .resume-header h1 {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 0.3rem;
      }

      .resume-header h1 span {
        background: linear-gradient(135deg, #00d4ff, #7b2fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .resume-header .tagline {
        font-size: 1.1rem;
        color: #b0b0cc;
        font-weight: 500;
        margin-bottom: 1.25rem;
      }

      .contact-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem 1.5rem;
        font-size: 0.85rem;
        color: #9898bb;
      }

      .contact-row a {
        color: #00d4ff;
        text-decoration: none;
      }

      .contact-row a:hover {
        text-decoration: underline;
      }

      /* Body */
      .resume-body {
        padding: 2.5rem 3rem 3rem;
      }

      .section {
        margin-bottom: 2rem;
      }

      .section:last-child {
        margin-bottom: 0;
      }

      .section-title {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #7b2fff;
        border-bottom: 2px solid #7b2fff;
        padding-bottom: 0.4rem;
        margin-bottom: 1.25rem;
      }

      /* Experience / Education items */
      .item {
        margin-bottom: 1.25rem;
      }

      .item:last-child {
        margin-bottom: 0;
      }

      .item-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.25rem;
      }

      .item-title {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a2e;
      }

      .item-subtitle {
        font-size: 0.9rem;
        color: #555;
        font-weight: 500;
      }

      .item-date {
        font-size: 0.82rem;
        color: #888;
        font-weight: 500;
        white-space: nowrap;
      }

      .item ul {
        padding-left: 1.25rem;
        margin-top: 0.4rem;
      }

      .item li {
        font-size: 0.88rem;
        color: #444;
        margin-bottom: 0.2rem;
      }

      /* Skills */
      .skills-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 2rem;
      }

      .skill-row {
        display: flex;
        gap: 0.5rem;
        font-size: 0.88rem;
      }

      .skill-label {
        font-weight: 600;
        color: #1a1a2e;
        min-width: 110px;
      }

      .skill-value {
        color: #555;
      }

      /* Projects */
      .project-item {
        margin-bottom: 0.8rem;
      }

      .project-item:last-child {
        margin-bottom: 0;
      }

      .project-name {
        font-weight: 700;
        font-size: 0.92rem;
        color: #1a1a2e;
      }

      .project-name a {
        color: #7b2fff;
        text-decoration: none;
      }

      .project-name a:hover {
        text-decoration: underline;
      }

      .project-desc {
        font-size: 0.85rem;
        color: #555;
        margin-top: 0.1rem;
      }

      .project-tech-inline {
        font-size: 0.78rem;
        color: #888;
        margin-top: 0.15rem;
      }

      /* Summary */
      .summary-text {
        font-size: 0.92rem;
        color: #444;
        line-height: 1.7;
      }

      /* Toolbar */
      .resume-toolbar {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        display: flex;
        gap: 0.75rem;
        z-index: 100;
      }

      .toolbar-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
      }

      .btn-print {
        background: linear-gradient(135deg, #00d4ff, #7b2fff);
        color: #fff;
        box-shadow: 0 4px 20px rgba(123, 47, 255, 0.3);
      }

      .btn-print:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(123, 47, 255, 0.4);
      }

      .btn-back {
        background: #1a1a2e;
        color: #fff;
      }

      .btn-back:hover {
        transform: translateY(-2px);
        background: #2a2a4e;
      }

      /* ===== PRINT STYLES ===== */
      @media print {
        body {
          background: #fff;
          margin: 0;
          padding: 0;
        }

        .resume-page {
          margin: 0;
          border-radius: 0;
          box-shadow: none;
          max-width: 100%;
        }

        .resume-header {
          padding: 2rem 2.5rem 1.5rem;
          -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
        }

        .resume-body {
          padding: 1.5rem 2.5rem 2rem;
        }

        .resume-toolbar {
          display: none;
        }

        .section {
          margin-bottom: 1.25rem;
        }

        .item {
          margin-bottom: 0.8rem;
        }

        .resume-header h1 {
          font-size: 1.8rem;
        }

        .resume-header .tagline {
          font-size: 0.95rem;
        }

        a {
          color: inherit !important;
          text-decoration: none !important;
        }

        @page {
          size: A4;
          margin: 0;
        }
      }

      /* Mobile */
      @media (max-width: 700px) {
        .resume-page {
          margin: 0;
          border-radius: 0;
        }

        .resume-header {
          padding: 2rem 1.5rem;
        }

        .resume-body {
          padding: 1.5rem;
        }

        .skills-grid {
          grid-template-columns: 1fr;
        }

        .resume-toolbar {
          bottom: 1rem;
          right: 1rem;
        }
      }
