/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
}

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

/* Header Styles */
header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e8ed;
    margin-bottom: 30px;
}

h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.authors {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.authors a {
    color: #3498db;
    text-decoration: none;
}

.authors a:hover {
    text-decoration: underline;
}

.meta {
    font-size: 0.9rem;
    color: #999;
}

.separator {
    margin: 0 8px;
}

/* Introduction */
.introduction {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

/* Risk List Styles */
.risk-list {
    margin-bottom: 40px;
}

.risks {
    list-style: decimal;
    padding-left: 30px;
}

.risk-item {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #333;
}

.risk-item a {
    color: #3498db;
    text-decoration: none;
}

.risk-item a:hover {
    text-decoration: underline;
}

/* Note Section */
.note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
    color: #666;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

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

/* Markdown Content Styles */
.risk-content p,
.introduction p {
    margin-bottom: 1em;
}

.risk-content p:last-child,
.introduction p:last-child {
    margin-bottom: 0;
}

.risk-content ul,
.risk-content ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.risk-content h1,
.risk-content h2,
.risk-content h3,
.risk-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.risk-content blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 3px solid #ccc;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .risks {
        padding-left: 25px;
    }
}
