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

        :root {
            --purple: #9a82b5;
            --purple-light: #d0c0df;
            --dark: #15121a;
            --border: #3a3045;
            --text-muted: #b7afbd;
            --text-white: #ffffff;
        }

        body {
            background: var(--dark);
            color: var(--text-white);
            font-family: 'IBM Plex Sans', sans-serif;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: linear-gradient(180deg, rgba(181,157,202,.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
            pointer-events: none;
            z-index: 0;
            opacity: 0.3;
            animation: scanlines 8s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(0deg, transparent 24%, rgba(154,130,181,.06) 25%, rgba(154,130,181,.06) 26%, transparent 27%, transparent 74%, rgba(154,130,181,.06) 75%, rgba(154,130,181,.06) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(154,130,181,.06) 25%, rgba(154,130,181,.06) 26%, transparent 27%, transparent 74%, rgba(154,130,181,.06) 75%, rgba(154,130,181,.06) 76%, transparent 77%, transparent);
            background-size: 60px 60px;
            z-index: -1;
            animation: drift 20s linear infinite;
        }

        @keyframes drift {
            0% { transform: translateY(0); }
            100% { transform: translateY(60px); }
        }

        .glow-blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.08;
            z-index: -1;
            pointer-events: none;
        }

        .blob-1 {
            width: 400px;
            height: 400px;
            background: var(--purple);
            top: -100px;
            right: -100px;
            animation: float 15s ease-in-out infinite;
        }

        .blob-2 {
            width: 300px;
            height: 300px;
            background: var(--purple-light);
            bottom: -50px;
            left: -50px;
            animation: float 20s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 100px;
            animation: slideInDown 0.8s ease-out;
        }

        .logo {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--purple-light);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .title {
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 16px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Space Mono', monospace;
        }

        .divider {
            width: 80px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--purple), transparent);
            margin: 20px auto;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .credits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            width: 100%;
            margin-bottom: 80px;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .credit-card {
            position: relative;
            padding: 40px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.02);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .credit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(154,130,181,0.08), transparent);
            transition: left 0.5s;
            pointer-events: none;
        }

        .credit-card:hover::before {
            left: 100%;
        }

        .credit-card:hover {
            border-color: var(--purple);
            background: rgba(154,130,181,0.08);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(21,18,26,0.6);
        }

        .role-label {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--purple-light);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .developer-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .developer-title {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            text-transform: capitalize;
        }

        .developer-description {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-top: 12px;
            border-left: 2px solid var(--purple);
            padding-left: 12px;
        }

        .tech-stack {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .tech-tag {
            font-size: 10px;
            padding: 4px 10px;
            background: rgba(154,130,181,0.1);
            border: 1px solid var(--border);
            font-family: 'Space Mono', monospace;
            color: var(--text-muted);
        }

        .signature {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 10px;
            font-style: italic;
            font-family: 'Space Mono', monospace;
        }

        .footer {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 12px;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .footer-text {
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .year {
            font-family: 'Space Mono', monospace;
            color: var(--text-muted);
        }

        .back-btn {
            position: fixed;
            top: 30px;
            left: 30px;
            z-index: 100;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            font-family: 'IBM Plex Sans', sans-serif;
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            border: 1px solid var(--border);
            background: rgba(21,18,26,0.9);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .back-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .back-btn:hover {
            border-color: var(--purple);
            background: rgba(154,130,181,0.1);
            color: var(--text-white);
            transform: translateX(-3px);
        }

        .site-footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--border);
            padding: 32px 5%;
            background: rgba(21,18,26,0.95);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-brand {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            color: var(--purple-light);
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--purple-light);
        }

        .footer-sep {
            color: var(--border);
            font-size: 12px;
        }

        .footer-copy {
            color: #555;
            font-size: 11px;
            font-family: 'Space Mono', monospace;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .back-btn {
                top: 16px;
                left: 16px;
                padding: 8px 14px;
                font-size: 12px;
            }

            .container {
                padding: 40px 20px;
            }

            .title {
                font-size: 48px;
            }

            .credits-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .credit-card {
                padding: 30px;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .site-footer {
                padding: 20px 24px;
            }
        }

        .accent-line {
            position: absolute;
            width: 2px;
            height: 60px;
            background: linear-gradient(180deg, var(--purple-light), transparent);
            left: 0;
            top: 0;
        }

        .credit-card:hover {
            box-shadow: 
                inset 0 0 20px rgba(154,130,181,0.05),
                0 0 30px rgba(154,130,181,0.1);
        }
