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

body {
    background: #fff;
    font-family: Consolas, 'Courier New', monospace;
    line-height: 1.5;
    padding: 80px 60px;
}

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

.project-header {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-header h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: -0.5px;
}

.project-role {
    font-size: 13px;
    font-style: italic;
    color: #666;
    font-weight: 300;
    text-align: right;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.project-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video-embed {
    margin-bottom: 30px;
}

.video-wrapper {
    padding: 56.25% 0 0 0;
    position: relative;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-images img {
    max-width: 100%;
    height: auto;
    display: block;
}

.project-info {
    padding-top: 0;
}

.info-section {
    margin-bottom: 50px;
}

.info-section h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-section h4 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 20px;
    font-style: italic;
}

.info-section p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-section strong {
    font-weight: 600;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.info-section a {
    color: #000;
    text-decoration: underline;
}

.info-section a:hover {
    opacity: 0.6;
}

.info-section em {
    font-size: 12px;
    color: #888;
}

.back-link {
    text-align: left;
    margin-bottom: 60px;
}

.back-link a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .project-header h1 {
        font-size: 32px;
    }

    .synopsis {
        font-size: 16px;
        text-align: left;
    }

    .info-section h3 {
        font-size: 20px;
    }
}
