/* ================= GLOBAL ================= */
* {
    box-sizing: border-box;
}

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

a {
    color: #6ee77d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ================= HEADER ================= */
.site-header {
    background: #081d0c;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ================= CARDS ================= */
.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    margin: 0;
}

.main-nav a {
    margin-left: 1rem;
    font-weight: 500;
}

#cards {
    margin: 60px auto;
    max-width: 1000px;
}

ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

li.privy {
    cursor: pointer;
    text-align: center;
}

li.privy img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}

strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

/* ================= PREVIEW ================= */
.bubble {
    position: absolute;
    max-width: 250px;
    padding: 12px;
    background: #111;
    color: white;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 0.15s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .main-nav a {
        margin-left: 0.5rem;
    }
}