@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

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

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 2rem;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
            color: #e2e8f0;
            min-height: 100vh;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .back-link::before {
            content: '\f060';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .back-link:hover {
            color: #fff;
        }

        .project-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .project-header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #7c3aed, transparent);
        }

        .project-title {
            font-family: 'Space Grotesk', sans-serif;
            color: #fff;
            margin-bottom: 0.75rem;
            font-size: 2.25rem;
            font-weight: 700;
        }

        .student-name {
            color: #94a3b8;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .student-name::before {
            content: '\f007';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.9rem;
        }

        .project-preview {
            width: 100%;
            height: 400px;
            background: rgba(255, 255, 255, 0.02);
            margin-bottom: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
        }

        .project-preview iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .project-description {
            color: #94a3b8;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .project-description p {
            margin-bottom: 1.5rem;
        }

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

        .p5js-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .p5js-link::after {
            content: '\f08e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .p5js-link:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }

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

            .project-title {
                font-size: 1.75rem;
            }

            .project-preview {
                height: 300px;
            }
        }