<style>
        :root {
            --text-color: #333;
            --link-color: #0077aa;
            --background-color: #ffffff;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 40px 20px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .project-card {
            break-inside: avoid;
            transition: transform 0.2s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 15px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .project-title {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .project-authors {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 8px;
        }

        .project-venue {
            font-size: 0.85em;
            color: #0077aa;
            margin-bottom: 12px;
            font-style: italic;
        }

        .project-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .project-links a {
            color: var(--link-color);
            text-decoration: none;
            font-size: 0.9em;
        }

        .project-links a:hover {
            text-decoration: underline;
        }

        .award {
            color: #c00;
            font-weight: bold;
            font-size: 0.8em;
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            .project-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                padding: 20px 15px;
            }
        }