body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #050505 0%, #111111 100%);
    color: #f5f5f5;
    line-height: 1.6;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.hero {
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.subtitle {
    color: #bdbdbd;
    font-size: 1.1rem;
    max-width: 600px;
}

.card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

p {
    color: #dddddd;
    max-width: 72ch;
    line-height: 1.75;
    margin: 0 auto 1rem;
}

a {
    color: #ff8fb1;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: #ffd1df;
    text-decoration: underline;
}

.experiment-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.experiment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 18px 20px;
    color: #ffffff;
    text-decoration: none;
}

.experiment-card:hover {
    transform: translateY(-2px);
    border-color: #ff8fb1;
    text-decoration: none;
}

.number {
    font-size: 0.9rem;
    color: #ff8fb1;
    font-weight: bold;
    min-width: 32px;
}

.text {
    font-size: 1rem;
}

.reference-item {
    margin-bottom: 2rem;
}

.reference-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.reference-title {
    text-align: center;
    font-style: italic;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
}