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

    :root {
      --bg-primary: #f5f5f7;
      --bg-secondary: #ffffff;
      --text-primary: #1d1d1f;
      --text-secondary: #86868b;
      --text-muted: #6e6e73;
      --accent-blue: #007aff;
      --accent-purple: #5856d6;
      --accent-emerald: #34c759;
      --accent-orange: #ff9500;
      --glass-bg: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.5);
      --glass-border-hover: rgba(255, 255, 255, 0.8);
      --shadow-light: rgba(255, 255, 255, 0.8);
      --shadow-dark: rgba(0, 0, 0, 0.05);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      -moz-tab-size: 4;
      -o-tab-size: 4;
         tab-size: 4;
      font-feature-settings: normal;
      font-variation-settings: normal;
      -webkit-tap-highlight-color: transparent;
      background: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(88, 86, 214, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 149, 0, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #fafbfc 0%, #f0f2f5 50%, #f5f7fa 100%);
      background-attachment: fixed;
      color: var(--text-primary);
      min-height: 100vh;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      cursor: none;
      overflow-x: hidden;
    }

    /* Custom Cursor - Light Theme */
    .custom-cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(0, 122, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(0, 122, 255, 0.3);
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                  height 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                  background 0.2s ease-out;
      mix-blend-mode: multiply;
      box-shadow: 
        0 0 15px rgba(0, 122, 255, 0.2);
    }

    .custom-cursor.hover {
      width: 40px;
      height: 40px;
      background: rgba(0, 122, 255, 0.1);
      border-color: rgba(0, 122, 255, 0.4);
      box-shadow: 
        0 0 25px rgba(0, 122, 255, 0.3);
    }

    /* Subtle Gradient Blobs - Light Theme */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.4;
      pointer-events: none;
      z-index: 0;
    }

    .orb-1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(0, 122, 255, 0.18) 0%, transparent 60%);
      top: -200px;
      right: -200px;
      animation: floatOrb1 30s ease-in-out infinite;
    }

    .orb-2 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(88, 86, 214, 0.15) 0%, transparent 60%);
      bottom: -200px;
      left: -150px;
      animation: floatOrb2 35s ease-in-out infinite;
    }

    .orb-3 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 149, 0, 0.12) 0%, transparent 60%);
      top: 40%;
      left: 20%;
      animation: floatOrb3 25s ease-in-out infinite;
    }

    .orb-4 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(52, 199, 89, 0.12) 0%, transparent 60%);
      top: 60%;
      right: 10%;
      animation: floatOrb4 32s ease-in-out infinite;
    }

    @keyframes floatOrb1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, 20px) scale(1.05); }
    }

    @keyframes floatOrb2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-20px, -30px) scale(0.95); }
    }

    @keyframes floatOrb3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(25px, -20px) scale(1.03); }
    }

    @keyframes floatOrb4 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-15px, 25px) scale(0.98); }
    }

    /* Container - matching Tailwind's container with max-w-6xl */
    .container {
      width: 100%;
      max-width: 72rem; /* max-w-6xl = 72rem */
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem; /* px-4 */
      padding-right: 1rem;
      padding-top: 2rem; /* py-8 */
      padding-bottom: 2rem;
      position: relative;
      z-index: 10;
    }

    @media (min-width: 768px) {
      .container {
        padding-top: 3rem; /* md:py-12 */
        padding-bottom: 3rem;
      }
    }

    /* Glass Card - True Frosted Glass Effect */
    .glass-card {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.42) 0%,
        rgba(255, 255, 255, 0.28) 100%
      );
      backdrop-filter: blur(40px) saturate(200%);
      -webkit-backdrop-filter: blur(40px) saturate(200%);
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%
      );
      pointer-events: none;
    }

    .glass-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 80%,
        transparent 100%
      );
    }

    @media (min-width: 768px) {
      .glass-card {
        padding: 2rem;
      }
    }

    .glass-card:hover {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.38) 100%
      );
      border-color: rgba(255, 255, 255, 0.6);
      box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.25);
      transform: translateY(-3px);
    }

    /* Header */
    .header {
      margin-bottom: 1.5rem;
    }

    .header-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .header-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .header-main {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
      }
    }

    .profile-image {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255, 255, 255, 0.9);
      box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
      /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    }

    .profile-image:hover {
      transform: scale(1.03);
      box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.06);
    }

    .header-title h1 {
      font-size: 1.875rem;
      line-height: 2.25rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
      .header-title h1 {
        font-size: 2.25rem;
        line-height: 2.5rem;
      }
    }

    .header-title p {
      font-size: 1.125rem;
      line-height: 1.75rem;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .header-contacts {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem; /* gap-3 */
      font-size: 0.875rem; /* text-sm */
      line-height: 1.25rem;
      color: var(--text-secondary);
    }

    .header-contacts a {
      color: var(--text-secondary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.375rem;
      transition: color 0.2s;
    }

    .header-contacts a:hover {
      color: var(--accent-blue);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    .icon {
      width: 16px;
      height: 16px;
    }

    /* Grid Layout */
    .grid {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .left-column {
      display: contents;
    }

    .right-column {
      display: contents;
    }

    /* Mobile Ordering */
    .professional-summary-card { order: 1; }
    .connect-card { order: 2; }
    .education-card { order: 3; }
    .professional-experience-card { order: 4; }
    .skills-card { order: 5; }
    .overview-card { order: 6; }
    .download-card { order: 7; }

    @media (min-width: 1024px) {
      .grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: start;
      }
      .left-column, .right-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .left-column { order: unset; }
      .right-column { order: unset; }
      .professional-summary-card, 
      .professional-experience-card, 
      .connect-card, 
      .education-card, 
      .skills-card, 
      .overview-card, 
      .download-card { 
        order: unset; 
      }
      .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    /* Section Title */
    .section-title {
      font-size: 1.25rem; /* text-xl */
      line-height: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.025em; /* tracking-tight */
      color: var(--text-primary);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-icon {
      width: 32px;
      height: 32px;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .section-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%
      );
      z-index: -1;
    }

    .section-icon.blue { 
      background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(0, 122, 255, 0.08) 100%);
      border-color: rgba(0, 122, 255, 0.25);
    }
    .section-icon.purple { 
      background: linear-gradient(135deg, rgba(88, 86, 214, 0.2) 0%, rgba(88, 86, 214, 0.08) 100%);
      border-color: rgba(88, 86, 214, 0.25);
    }
    .section-icon.emerald { 
      background: linear-gradient(135deg, rgba(52, 199, 89, 0.2) 0%, rgba(52, 199, 89, 0.08) 100%);
      border-color: rgba(52, 199, 89, 0.25);
    }
    .section-icon.amber { 
      background: linear-gradient(135deg, rgba(255, 149, 0, 0.2) 0%, rgba(255, 149, 0, 0.08) 100%);
      border-color: rgba(255, 149, 0, 0.25);
    }
    .section-icon.rose { 
      background: linear-gradient(135deg, rgba(255, 59, 48, 0.2) 0%, rgba(255, 59, 48, 0.08) 100%);
      border-color: rgba(255, 59, 48, 0.25);
    }
    .section-icon.indigo { 
      background: linear-gradient(135deg, rgba(175, 82, 222, 0.2) 0%, rgba(175, 82, 222, 0.08) 100%);
      border-color: rgba(175, 82, 222, 0.25);
    }

    .section-icon svg {
      width: 16px;
      height: 16px;
    }

    .section-icon.blue svg { color: var(--accent-blue); }
    .section-icon.purple svg { color: var(--accent-purple); }
    .section-icon.emerald svg { color: var(--accent-emerald); }
    .section-icon.amber svg { color: var(--accent-orange); }
    .section-icon.rose svg { color: #ff3b30; }
    .section-icon.indigo svg { color: #af52de; }

    .glass-card:hover .section-icon {
      transform: scale(1.05);
    }

    /* Professional Summary */
    .summary-text {
      color: var(--text-secondary);
      line-height: 1.625;
      font-size: 1rem;
    }

    /* Experience */
    .experience-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .experience-item {
      position: relative;
      padding-left: 1.5rem;
    }

    .experience-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-blue);
      box-shadow: 0 0 8px rgba(0, 122, 255, 0.3);
    }

    .experience-item::after {
      content: '';
      position: absolute;
      left: 2.5px;
      top: 1rem;
      width: 1px;
      height: calc(100% + 1.5rem);
      background: linear-gradient(180deg, rgba(0, 122, 255, 0.2) 0%, transparent 100%);
    }

    .experience-item:last-child::after {
      display: none;
    }

    .experience-header {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 640px) {
      .experience-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .experience-title {
      font-size: 1.125rem; /* text-lg */
      line-height: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.025em; /* tracking-tight */
      color: var(--text-primary);
    }

    .experience-period {
      font-size: 0.875rem; /* text-sm */
      line-height: 1.25rem;
      color: var(--accent-blue);
      font-weight: 500;
    }

    .experience-company {
      font-size: 0.875rem; /* text-sm */
      line-height: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }

    .experience-duties {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }

    .experience-duties li {
      position: relative;
      padding-left: 1rem;
      font-size: 0.875rem;
      line-height: 1.625;
      color: var(--text-secondary);
    }

    .experience-duties li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--accent-blue);
      font-weight: 300;
    }

    /* Education */
    .education-title {
      font-size: 1.125rem; /* text-lg */
      line-height: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.025em; /* tracking-tight */
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .education-school {
      font-size: 0.875rem; /* text-sm */
      line-height: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 0.25rem;
    }

    .education-year {
      font-size: 0.875rem; /* text-sm */
      line-height: 1.25rem;
      color: var(--accent-blue);
      font-weight: 500;
      margin-top: 0.25rem;
    }

    /* Skills */
    .skills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .skill-tag {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.2) 100%
      );
      backdrop-filter: blur(12px) saturate(150%);
      -webkit-backdrop-filter: blur(12px) saturate(150%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 9999px;
      padding: 5px 12px;
      font-size: 0.875rem;
      line-height: 1.25rem;
      color: var(--text-primary);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .skill-tag:hover {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.35) 100%
      );
      border-color: rgba(0, 122, 255, 0.3);
      transform: translateY(-1px);
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* Connect */
    .connect-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .connect-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.2) 100%
      );
      backdrop-filter: blur(12px) saturate(150%);
      -webkit-backdrop-filter: blur(12px) saturate(150%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 0.75rem;
      padding: 6px 11px;
      font-size: 0.875rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .connect-link:hover {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.35) 100%
      );
      border-color: rgba(0, 122, 255, 0.3);
      color: var(--accent-blue);
      transform: translateY(-1px);
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* Download Resume Button - Light Apple Style */
    .download-resume-section {
      text-align: center;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    .download-resume {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        #0051d5 100%
      );
      border: 1px solid rgba(0, 122, 255, 0.2);
      border-radius: 0.875rem;
      padding: 16px 32px;
      font-size: 1rem;
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 
        0 2px 8px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .download-resume::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
      );
      transition: left 0.5s ease;
    }

    .download-resume:hover::before {
      left: 100%;
    }

    @keyframes shimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .download-resume:hover {
      background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.95) 0%,
        rgba(139, 92, 246, 0.95) 50%,
        rgba(79, 70, 229, 0.95) 100%
      );
      background-size: 200% 200%;
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 
        0 8px 32px rgba(96, 165, 250, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .download-resume svg {
      width: 20px;
      height: 20px;
    }

    .connect-icon {
      width: 16px;
      height: 16px;
    }

    /* Overview Stats */
    .overview-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .overview-item {
      text-align: center;
      padding: 1.25rem 0.75rem;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 100%
      );
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 1rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      position: relative;
      overflow: hidden;
    }

    .overview-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 100%
      );
      z-index: -1;
    }

    .overview-item:hover {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.4) 100%
      );
      border-color: rgba(0, 122, 255, 0.25);
      transform: translateY(-2px);
      box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .overview-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-blue);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .overview-label {
      font-size: 0.75rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Footer */
    .footer {
      margin-top: 3rem;
      text-align: center;
    }

    .footer-divider {
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.06) 20%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.06) 80%,
        transparent 100%
      );
      margin-bottom: 1.5rem;
    }

    .footer-text {
      font-size: 0.875rem;
      line-height: 1.25rem;
      color: var(--text-muted);
    }

    /* Entrance Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .glass-card {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    .glass-card:nth-child(1) { animation-delay: 0.1s; }
    .glass-card:nth-child(2) { animation-delay: 0.15s; }
    .glass-card:nth-child(3) { animation-delay: 0.2s; }
    .glass-card:nth-child(4) { animation-delay: 0.25s; }
    .glass-card:nth-child(5) { animation-delay: 0.3s; }
    .glass-card:nth-child(6) { animation-delay: 0.35s; }
    .glass-card:nth-child(7) { animation-delay: 0.4s; }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    /* Scrollbar - Light Theme */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.02);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.15);
      border-radius: 4px;
      border: 2px solid transparent;
      background-clip: padding-box;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(0, 0, 0, 0.25);
      background-clip: padding-box;
    }

    ::selection {
      background: rgba(0, 122, 255, 0.2);
      color: var(--text-primary);
    }

    /* Hide cursor on touch devices */
    @media (pointer: coarse) {
      body { cursor: auto; }
      .custom-cursor, .cursor-trail { display: none; }
    }
