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

        html, body {
            background: #18181b;
            background-color: #18181b;
            min-width: 100vw;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            /* Remove width: 100vw to prevent iOS Safari white bars */
        }

        body {
            /* Keep your gradient if desired, but ensure fallback is set above */
            background: linear-gradient(135deg, #0c1015 0%, #1a202c 50%, #2d3748 100%);
            color: #e2e8f0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-width: 100vw;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            /* Remove width: 100vw to prevent iOS Safari white bars */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            background: linear-gradient(45deg, #f1f5f9, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

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

        .project-tile {
            background: rgba(248, 250, 252, 0.06);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(148, 163, 184, 0.15);
        }

        .project-tile:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(148, 163, 184, 0.25);
            background: rgba(248, 250, 252, 0.08);
        }

        .image-container {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(45deg, #475569, #64748b);
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .project-image {
            width: 200%;
            height: 200%;
            object-fit: cover;
            transition: transform 0.2s ease;
            transform-origin: center;
            position: absolute;
            top: -50%;
            left: -50%;
            z-index: 1;
        }

        .parallax-layer {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            pointer-events: none;
            transition: transform 0.2s ease;
            transform-style: preserve-3d;
        }

        .parallax-bg {
            z-index: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
            transform: translateZ(-50px);
        }

        .parallax-mid {
            z-index: 2;
            background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 40%);
            transform: translateZ(20px);
        }

        .parallax-front {
            z-index: 3;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 30%);
            transform: translateZ(40px);
        }

        .depth-layer {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            transition: transform 0.2s ease;
            transform-style: preserve-3d;
        }

        .depth-orb-1 {
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            top: 20%;
            left: 15%;
            z-index: 4;
            transform: translateZ(60px);
        }

        .depth-orb-2 {
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
            top: 60%;
            right: 20%;
            z-index: 4;
            transform: translateZ(30px);
        }

        .depth-orb-3 {
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            top: 80%;
            left: 60%;
            z-index: 4;
            transform: translateZ(45px);
        }

        .floating-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            pointer-events: none;
            transition: transform 0.2s ease;
            transform-style: preserve-3d;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #f1f5f9;
            margin-bottom: 0.5rem;
        }

        .project-date {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 0.8rem;
        }

        .project-description {
            font-size: 1rem;
            color: #cbd5e1;
            line-height: 1.5;
        }

        .vibejects-dictionary {
            font-weight: bold;
            font-size: 1.1em;
            margin: 0.5em auto 0.5em auto;
            letter-spacing: 0.01em;
            max-width: 900px;
        }
        .vibejects-dictionary .dict-main {
            display: block;
            color: #fff;
        }
        .vibejects-dictionary .dict-ipa {
            font-weight: normal;
            color: rgba(255,255,255,0.8);
        }
        .vibejects-dictionary .dict-noun {
            font-weight: normal;
            color: rgba(255,255,255,0.5);
        }
        .vibejects-dictionary .dict-def {
            display: block;
            font-weight: normal;
            color: #b6c3d5;
            font-size: 0.95em;
            font-family: 'Fira Mono', 'Consolas', 'Menlo', 'Monaco', 'Liberation Mono', 'monospace';
        }

        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .header {
                margin-bottom: 2rem;
            }
        }

        .app-preview .section-title {
            background: none !important;
            -webkit-background-clip: initial !important;
            -webkit-text-fill-color: #fff !important;
            background-clip: initial !important;
            color: #fff !important;
        }
.project-tile.neon-signal .image-container {
    background: transparent;
    height: 300px; /* adjust as needed */
    perspective: 800px;
    overflow: hidden;
}

.project-tile.neon-signal .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: transform 0.2s ease;
    transform-style: preserve-3d;
}

.project-tile.neon-signal .parallax-bg {
    z-index: 0;
    transform: translateZ(-50px);
}

.project-tile.neon-signal .parallax-mid {
    z-index: 2;
    transform: translateZ(20px);
}

.project-tile.neon-signal .parallax-front {
    z-index: 3;
    transform: translateZ(40px);
}

/* Project tile button cursor styles */
.project-tile[role="button"] {
  cursor: pointer;
}
.project-tile[role="button"]:hover,
.project-tile[role="button"]:focus,
.project-tile[role="button"]:active {
  cursor: default;
}

.site-footer {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 20;
  background: none;
  border: none;
  box-shadow: none;
  pointer-events: none;
}
.site-footer .footer-info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0.25;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s;
  position: relative;
  user-select: none;
}
.site-footer .footer-info-icon:hover,
.site-footer .footer-info-icon:focus {
  opacity: 1;
}
.site-footer .footer-tooltip {
  display: block;
  position: absolute;
  bottom: 32px;
  right: 0;
  width: 18rem;
  background: #000;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.8);
  opacity: 0.6;
  font-size: 0.75rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.75em 1em;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  text-align: left;
  text-shadow: none;
}
.site-footer .footer-info-icon:hover .footer-tooltip,
.site-footer .footer-info-icon:focus .footer-tooltip {
  opacity: 1;
  pointer-events: auto;
}