/* IP Experiment - Minimal Clean Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 8px;
}

.hero p {
    color: #666;
}

/* Page Header */
.page-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.page-header nav a {
    color: #333;
    text-decoration: none;
}

.page-header nav a:hover {
    text-decoration: underline;
}

/* Sections */
.section {
    margin-bottom: 48px;
}

.section h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}

.section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.section p {
    margin-bottom: 12px;
    color: #444;
}

/* Architecture Diagram */
.architecture-diagram {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin: 16px 0;
    overflow-x: auto;
}

.architecture-diagram code {
    font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", monospace;
    font-size: 1rem;
    color: #222;
    white-space: nowrap;
}

/* IP Groups */
.ip-group {
    margin-bottom: 32px;
}

.ip-group h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

.section > ul {
    margin-left: 0;
}

.section > ul > li,
.ip-group ul li,
.layer-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.section > ul > li:last-child,
.ip-group ul li:last-child,
.layer-list li:last-child {
    border-bottom: none;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.ip-group ul li a {
    color: #333;
}

.ip-group ul li a:hover {
    color: #0066cc;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 20px 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.125rem;
    }

    .section h1 {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .architecture-diagram {
        padding: 16px;
    }

    .architecture-diagram code {
        font-size: 0.875rem;
    }
}
