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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0b0b0f;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    background: #0f0f17;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2ecc71;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #dcdcdc;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #2ecc71;
    color: #0b0b0f;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
}

.main-wrapper {
    max-width: 1100px;
    margin: 1.75rem auto 2.5rem;
    padding: 0 1.5rem;
}

.site-header {
    margin-bottom: 1.75rem;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.site-tagline {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.card {
    background: #14141d;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid #1f1f2b;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.card p {
    color: #d0d0d0;
    font-size: 0.98rem;
}

.card-section-title {
    font-size: 1.05rem;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    color: #2ecc71;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #222;
    color: #a0a0a0;
}

.badge-green {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    background: #2ecc71;
    color: #0b0b0f;
    box-shadow: 0 0 14px rgba(46, 204, 113, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(46, 204, 113, 0.9);
    background: #27ae60;
}

.btn-ghost {
    background: transparent;
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.5);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(46, 204, 113, 0.12);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.5);
}

.code {
    font-family: "JetBrains Mono", "Fira Code", monospace;
    background: #101018;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid #1f1f2b;
}

.list {
    margin-top: 0.5rem;
    padding-left: 1.1rem;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.list li {
    margin-bottom: 0.25rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.staff-card {
    background: #171722;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #26263a;
}

.staff-name {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.staff-role {
    font-size: 0.85rem;
    color: #2ecc71;
    margin-bottom: 0.35rem;
}

.staff-note {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    background: #171722;
    border-radius: 10px;
    padding: 0.5rem;
    border: 1px solid #26263a;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.9rem;
}

.footer {
    border-top: 1px solid #222;
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    background: #0f0f17;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .site-title {
        font-size: 1.6rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}
