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

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.container {
    max-width: 100%;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.authors {
    margin-bottom: 0.5rem;
}

.author {
    font-size: 1rem;
    color: #666;
}

.author::after {
    content: ", ";
}

.author:last-child::after {
    content: "";
}

.author-notes {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.author-notes p {
    display: inline;
    margin: 0 0.5rem;
}

.badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #2E5AA8;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.badge:hover {
    background: #f5f5f5;
}

/* Section Styles */
.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Introduction Section */
.intro-text {
    margin-bottom: 1rem;
}

/* Demo Video Section */
.video-container {
    margin: 1rem 0;
}

.video-container video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd;
}

/* Technical Section */
.tech-item {
    margin-bottom: 1.5rem;
}

.tech-item p {
    margin-bottom: 0.75rem;
}

.tech-item ul {
    margin-left: 1.5rem;
}

.tech-item li {
    margin-bottom: 0.5rem;
}

/* Performance Section */
.performance-content {
    margin-bottom: 1rem;
}

.performance-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
}

.metric {
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E5AA8;
}

.metric-label {
    font-size: 1rem;
    color: #666;
    display: block;
}

.performance-text p {
    margin-bottom: 1rem;
}

/* Getting Started Section */
.step {
    margin-bottom: 2rem;
}

.step p {
    margin-bottom: 0.75rem;
}

.step ul {
    margin-left: 1.5rem;
}

.step li {
    margin-bottom: 0.5rem;
}

.step a {
    color: #2E5AA8;
    text-decoration: none;
}

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

.code-block {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    white-space: pre;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #2E5AA8;
    text-decoration: none;
}

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

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

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
