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

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            background-color: #111111;
            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(17, 17, 17, 0.6);
            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;
        }

        /* Hero Section */
        .hero-section {
            padding-top: 56px;
            position: relative;
        }

        .hero-image {
            width: 100%;
            max-height: 60vh;
            object-fit: cover;
            display: block;
        }

        .hero-image-wrap {
            position: relative;
        }

        .hero-image-wrap::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 40%;
            pointer-events: none;
            background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.5) 55%, #111111 100%);
        }

        .project-info {
            display: flex;
            gap: 0;
            padding: 56px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .info-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 0 40px;
            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: #666;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

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

        /* iF Award Strip */
        .award-strip-wrap {
            background-color: #0d0d0d;
        }

        .award-bg, .award-inner { display: contents; }

        .award-strip {
            display: flex;
            align-items: center;
            gap: 28px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 32px 40px;
            text-decoration: none;
            transition: opacity 0.25s ease;
            position: relative;
        }

        .award-strip::before,
        .award-strip::after {
            content: '';
            position: absolute;
            left: 40px;
            right: 40px;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        .award-strip::before { top: 0; }
        .award-strip::after  { bottom: 0; }

        .award-strip:hover {
            opacity: 0.82;
        }

        .award-logo {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 4px;
            object-fit: cover;
            display: block;
        }

        .award-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
        }

        .award-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #da1720;
            letter-spacing: 0.01em;
        }

        .award-sub {
            font-size: 0.9rem;
            font-weight: 400;
            color: #666;
            letter-spacing: 0.01em;
        }

        .award-arrow {
            color: #555;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .award-strip:hover .award-arrow {
            color: #ffffff;
            transform: translate(3px, -3px);
        }

        /* Image List */
        .image-list {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

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

        /* Footer */
        footer {
            padding: 60px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1400px;
            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.6s ease, transform 0.6s 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;
            }

            .image-list {
                padding: 40px 20px;
            }

            footer {
                padding: 40px 20px;
            }
        }
