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

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.5;
            overflow-x: clip;
            letter-spacing: -0.02em;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 16px 24px;
            line-height: 1.5;
            background-color: rgba(0, 0, 0, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
        }

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

        .back-button {
            color: #888888;
            text-decoration: none;
            font-size: 1.04rem;
            font-weight: 500;
            letter-spacing: normal;
            transition: color 0.3s ease;
        }

        .back-button:hover {
            color: #ffffff;
        }

        .contact-info {
            display: block;
        }

        .contact-info a {
            color: #888888;
            text-decoration: none;
            font-size: 1.04rem;
            font-weight: 500;
            letter-spacing: normal;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ffffff;
        }

        /* Cover Image */
        .cover-image-wrap {
            padding-top: 56px;
        }

        .cover-image {
            width: 100%;
            display: block;
        }

        /* Project Info */
        .project-info {
            display: flex;
            gap: 0;
            padding: 56px 40px;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 0 32px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-item:first-child {
            flex: 1.6;
            padding-left: 0;
            border-left: none;
        }

        .info-label {
            font-size: 0.68rem;
            font-weight: 600;
            color: #666666;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .info-value {
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Full bleed image */
        .full-image {
            width: 100%;
            display: block;
        }

        .full-image-section {
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            padding: 60px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-back {
            color: #888888;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .footer-back:hover {
            color: #ffffff;
        }

        /* Scroll animation */
        .animate-target {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .animate-target.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 12px 16px;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .contact-info {
                display: none;
            }

            .project-info {
                flex-direction: column;
                padding: 40px 24px;
                gap: 32px;
            }

            .info-item,
            .info-item:first-child {
                padding: 0;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                padding-top: 24px;
            }

            .info-item:first-child {
                border-top: none;
                padding-top: 0;
            }

            footer {
                padding: 40px 20px;
            }
        }
