:root {
    --color-bg: #000000;
    --color-text-main: #f8f8f8;
    --color-text-muted: #b0b0b0;
    --color-divider: #393939;

    --max-width: 768px;
    --spacing-base: 1.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Times, serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 1rem !important;
    letter-spacing: normal !important;
}

html,
body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: "Times New Roman", Times, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #6080e0;
}

.experiment-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.experiment-header {
    margin-bottom: var(--spacing-base);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date {
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.title {
    font-weight: normal;
    line-height: 1.2;
    color: var(--color-text-main);
}

.subtitle {
    color: var(--color-text-muted);
}

.experiment-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.experiment-body p {
    color: var(--color-text-main);
}

.experiment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.experiment-list li a {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    text-decoration: none;
    color: #6080e0;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.experiment-list .exp-meta {
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.experiment-list .exp-title {
    font-weight: normal;
    color: inherit;
}
