* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: #1a2c1a;
    line-height: 1.4;
    padding: 2rem 1.5rem;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
}
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #eaf4e6;
    padding-bottom: 1.2rem;
}
.brand h1 {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #3a7e3a 0%, #5ca05c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.brand p {
    font-size: 0.85rem;
    color: #6c7a6c;
    margin-top: 0.25rem;
}
.official-link {
    background: #f6faf4;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.official-link a {
    color: #5ca05c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #bdd9b2;
}
.official-link a:hover {
    color: #3f7a3f;
    border-bottom-color: #5ca05c;
}
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.info-badge {
    background: #f8faf7;
    border-radius: 60px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    color: #436143;
    border: 1px solid #ddecd6;
}
.pagination-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: #ffffff;
    padding: 0.2rem 0.2rem;
}
.page-btn {
    background: #f1f7ee;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.2s;
    color: #2d4a2d;
    font-family: inherit;
}
.page-btn.active {
    background: #5ca05c;
    color: white;
    box-shadow: 0 2px 6px rgba(92, 160, 92, 0.2);
}
.page-btn:not(.active):hover {
    background: #e2efdb;
    color: #2c5e2c;
}
.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f0f0ec;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.6rem;
    margin-bottom: 2.5rem;
}
.info-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #ecf3e8;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px -12px rgba(60, 90, 50, 0.12);
    border-color: #cde2c2;
}
.card-header {
    background: #fefefe;
    padding: 1rem 1.4rem 0.6rem 1.4rem;
    border-bottom: 2px solid #eef5ea;
}
.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #2d512d;
}
.card-content {
    padding: 1rem 1.4rem 1.3rem 1.4rem;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f5ec;
    font-size: 0.85rem;
}
.detail-row:last-child {
    border-bottom: none;
}
.detail-label {
    font-weight: 600;
    color: #4f6b4a;
    width: 40%;
    word-break: break-word;
}
.detail-value {
    width: 58%;
    text-align: right;
    color: #1f331f;
    font-weight: 450;
    word-break: break-word;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 0.82rem;
}
.long-value {
    font-size: 0.78rem;
    line-height: 1.35;
}
.no-data {
    color: #b3c7aa;
    font-style: italic;
}
footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e7f0e2;
    font-size: 0.75rem;
    color: #8da282;
}
.loading-placeholder {
    text-align: center;
    padding: 4rem;
    color: #9bba90;
    font-weight: 500;
}
@media (max-width: 700px) {
    body {
        padding: 1.2rem;
    }
    .cards-grid {
        gap: 1rem;
    }
    .detail-label {
        width: 45%;
    }
    .detail-value {
        width: 55%;
    }
}