@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&family=Inter:wght@400;500;700&display=swap');

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.5;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

header, footer {
    text-align: center;
    border-bottom: 4px solid #e30613; /* Swiss Red Accent */
    padding-bottom: 15px;
    margin-bottom: 40px;
}

header h1 {
    font-family: "Roboto Mono", monospace;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: -1px;
}

nav a {
    color: #000;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.metadata {
    display: flex;
    gap: 20px;
    border-left: 4px solid #e30613;
    padding-left: 15px;
    margin-bottom: 20px;
}

.metadata img {
    width: 200px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #ddd;
}

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

.metadata li::before {
    content: "▸";
    color: #e30613;
    margin-right: 8px;
}

.review-preview {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.review-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #ccc;
}

h2 {
    font-family: "Roboto Mono", monospace;
    color: #000;
    margin-bottom: 10px;
}

iframe.youtube-video {
    border: none;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
}
