
 
    :root {
      --primary: #00d4ff;
      --secondary: #7c3aed;
      --dark: #08111f;
      --dark-card: #101d31;
      --dark-card-2: #14243b;
      --text: #e8f1ff;
      --muted: #aab9cf;
      --border: rgba(0, 212, 255, 0.22);
      --white: #ffffff;
      --green: #38d996;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", Arial, sans-serif;
      background:
        linear-gradient(rgba(8, 17, 31, 0.93), rgba(8, 17, 31, 0.98)),
        radial-gradient(circle at 10% 20%, #12365b, transparent 30%),
        radial-gradient(circle at 90% 10%, #35205c, transparent 30%);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.12;
      background-image:
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, black, transparent);
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .resume {
      position: relative;
      z-index: 1;
      margin: 35px auto;
      background: rgba(8, 17, 31, 0.92);
      border: 1px solid var(--border);
      box-shadow: 0 0 45px rgba(0, 212, 255, 0.1);
      overflow: hidden;
    }

    /* Header */
    .hero {
      position: relative;
      padding: 55px 60px 48px;
      background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.14), transparent 45%),
        linear-gradient(315deg, rgba(124, 58, 237, 0.16), transparent 50%),
        var(--dark);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .hero::after {
      content: "01  0  101  10  001  110  01";
      position: absolute;
      right: 35px;
      bottom: 25px;
      color: rgba(0, 212, 255, 0.18);
      font-family: monospace;
      font-size: 18px;
      letter-spacing: 5px;
      transform: rotate(-8deg);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 25px;
      align-items: center;
    }

    .eyebrow {
      color: var(--primary);
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    h1 {
      font-size: clamp(38px, 7vw, 68px);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 15px;
    }

    .role {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--green);
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .role i {
      font-size: 14px;
    }

    .contact {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .contact a,
    .contact span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      color: var(--muted);
      font-size: 14px;
      border: 1px solid rgba(170, 185, 207, 0.2);
      background: rgba(255, 255, 255, 0.04);
      border-radius: 5px;
    }

    .contact i {
      color: var(--primary);
    }

    .network-logo {
      position: relative;
      width: 150px;
      height: 150px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0, 212, 255, 0.4);
      border-radius: 50%;
      background: rgba(0, 212, 255, 0.06);
      box-shadow:
        0 0 0 12px rgba(0, 212, 255, 0.035),
        0 0 0 24px rgba(0, 212, 255, 0.025);
    }

    .network-logo::before,
    .network-logo::after {
      content: "";
      position: absolute;
      border: 1px dashed rgba(0, 212, 255, 0.35);
      border-radius: 50%;
    }

    .network-logo::before {
      inset: 25px;
    }

    .network-logo::after {
      inset: 49px;
    }

    .network-logo i {
      position: relative;
      z-index: 2;
      color: var(--primary);
      font-size: 55px;
      filter: drop-shadow(0 0 13px rgba(0, 212, 255, 0.7));
    }

    /* Main layout */
    .main-grid {
      display: grid;
      grid-template-columns: 1.65fr 0.9fr;
      gap: 0;
    }

    .content {
      padding: 45px 52px;
    }

    .sidebar {
      padding: 45px 30px;
      background: rgba(16, 29, 49, 0.75);
      border-left: 1px solid var(--border);
    }

    .section {
      margin-bottom: 43px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      color: var(--white);
      font-size: 21px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--primary), transparent);
    }

    .section-title i {
      color: var(--primary);
      font-size: 19px;
    }

    .summary {
      color: var(--muted);
      font-size: 16px;
      border-left: 3px solid var(--primary);
      padding: 4px 0 4px 20px;
    }

    /* Experience */
    .experience {
      position: relative;
      padding-left: 30px;
      border-left: 1px solid rgba(0, 212, 255, 0.3);
    }

    .job {
      position: relative;
      margin-bottom: 37px;
    }

    .job:last-child {
      margin-bottom: 0;
    }

    .job::before {
      content: "";
      position: absolute;
      width: 11px;
      height: 11px;
      left: -36px;
      top: 7px;
      border: 3px solid var(--dark);
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    }

    .job-title {
      color: var(--primary);
      font-size: 20px;
      margin-bottom: 3px;
    }

    .company {
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .date {
      display: inline-block;
      margin: 8px 0 17px;
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .responsibilities {
      display: grid;
      gap: 9px;
      list-style: none;
    }

    .responsibilities li {
      position: relative;
      padding-left: 22px;
      color: var(--muted);
      font-size: 14px;
    }

    .responsibilities li::before {
      content: ">";
      position: absolute;
      left: 0;
      color: var(--primary);
      font-family: monospace;
      font-weight: bold;
    }

    /* Sidebar */
    .side-block {
      margin-bottom: 38px;
    }

    .side-title {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 17px;
    }

    .side-title i {
      color: var(--primary);
    }

    .skill-list,
    .simple-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .skill-list li,
    .simple-list li {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-size: 14px;
    }

    .skill-list li::before,
    .simple-list li::before {
      content: "◈";
      color: var(--primary);
      font-size: 11px;
    }

    .tag-container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      padding: 6px 9px;
      color: var(--muted);
      font-size: 12px;
      border: 1px solid rgba(0, 212, 255, 0.22);
      background: rgba(0, 212, 255, 0.07);
      border-radius: 4px;
    }

    .education-item {
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(170, 185, 207, 0.12);
    }

    .education-item:last-child {
      border-bottom: 0;
    }

    .education-item h4 {
      color: var(--white);
      font-size: 14px;
      margin-bottom: 4px;
    }

    .education-item p {
      color: var(--muted);
      font-size: 13px;
    }

    .project {
      padding: 15px;
      margin-bottom: 12px;
      border: 1px solid rgba(0, 212, 255, 0.18);
      background: rgba(0, 212, 255, 0.045);
      border-radius: 5px;
    }

    .project h4 {
      color: var(--primary);
      font-size: 15px;
      margin-bottom: 4px;
    }

    .project p {
      color: var(--muted);
      font-size: 13px;
    }

    .personal-details p {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .personal-details strong {
      color: var(--white);
    }

    /* Footer */
    .footer {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      padding: 28px 52px;
      color: var(--muted);
      font-size: 13px;
      border-top: 1px solid var(--border);
      background: rgba(16, 29, 49, 0.55);
    }

    .signature {
      color: var(--white);
      font-size: 17px;
      font-style: italic;
      border-bottom: 1px solid var(--primary);
      padding-bottom: 4px;
      min-width: 150px;
      text-align: center;
    }

    .print-button {
      position: fixed;
      right: 25px;
      bottom: 25px;
      z-index: 10;
      border: 0;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      color: var(--dark);
      background: var(--primary);
      cursor: pointer;
      font-size: 18px;
      box-shadow: 0 5px 25px rgba(0, 212, 255, 0.35);
    }

    .print-button:hover {
      background: var(--white);
    }

    /* Responsive */
    @media (max-width: 850px) {
      .hero {
        padding: 40px 28px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .network-logo {
        display: none;
      }

      .main-grid {
        grid-template-columns: 1fr;
      }

      .sidebar {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding: 35px 28px;
      }

      .content {
        padding: 35px 28px;
      }

      .footer {
        padding: 25px 28px;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 43px;
      }

      .contact {
        display: grid;
      }

      .contact a,
      .contact span {
        width: 100%;
      }

      .footer {
        align-items: start;
        flex-direction: column;
      }
    }

    /* Print-friendly resume */
    @media print {
      @page {
        size: A4;
        margin: 10mm;
      }

      body {
        background: #ffffff;
        color: #111111;
      }

      body::before,
      .print-button {
        display: none;
      }

      .resume {
        width: 100%;
        margin: 0;
        border: 0;
        box-shadow: none;
        background: #ffffff;
      }

      .hero {
        padding: 25px;
        color: #111111;
        background: #eaf8fc;
        border-bottom: 2px solid #009bc2;
      }

      .hero::after,
      .network-logo {
        display: none;
      }

      h1,
      .section-title,
      .side-title,
      .company,
      .education-item h4,
      .personal-details strong {
        color: #111111;
      }

      .eyebrow,
      .job-title,
      .section-title i,
      .side-title i,
      .project h4,
      a {
        color: #007b9d;
      }

      .role,
      .date {
        color: #087f5b;
      }

      .contact a,
      .contact span,
      .tag,
      .project,
      .sidebar {
        background: #f5fbfd;
        color: #333333;
      }

      .sidebar {
        border-left: 1px solid #c3e6ef;
      }

      .summary,
      .responsibilities li,
      .skill-list li,
      .simple-list li,
      .education-item p,
      .project p,
      .personal-details p {
        color: #333333;
      }

      .footer {
        background: #ffffff;
      }
    }
 