* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #f6f7f9;
    margin: 0;
}

.wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}

h1 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.hero {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.stat .label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-title {
    font-size: 1rem;
    margin: 2rem 0 0.75rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

a {
    color: #fc4c02;
}

.notice {
    background: #fff8e6;
    border: 1px solid #f0d78c;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.footer {
    margin-top: 3rem;
    text-align: center;
    color: #888;
    font-size: 0.875rem;
}

.footer img {
    height: 20px;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.actions {
    margin-top: 1.5rem;
}

.btn-link {
    color: #666;
    font-size: 0.875rem;
}

.connect-box {
    text-align: center;
    padding: 4rem 1rem;
}

.connect-box p {
    color: #555;
    max-width: 420px;
    margin: 0 auto 1.5rem;
}

.park-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0;
}

.park-tab {
    display: inline-block;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
}

.park-tab:hover {
    color: #fc4c02;
}

.park-tab.is-active {
    color: #1a1a1a;
    border-bottom-color: #fc4c02;
}
