body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #fff;
    color: #222;
}

a {
    color: #222;
}

.link-wrapper {
    text-align: right;
}

.project-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.project-title h1 {
    font-size: 2rem;
    margin-bottom: 0.2em;
}

.project-title .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2em;
}

.project-body video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.project-body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.project-body img {
    width: 100%;
    margin: 2rem 0;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 1s ease;
}

.project-body img.loaded {
    opacity: 1;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: nowrap;
}

.image-row img {
    max-width: 80px;
    height: 100px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.image-row-wrapper {
    width: 100%;
    overflow-x: auto;
}

.image-row-scaler {
    width: 100%;
    overflow: hidden;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    transform-origin: top left;
    scale: 1;
    width: max-content;
}

.image-row img {
    height: 100px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li::before {
    content: "*";
    color: #333;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}
