body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background: #f5f7fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ===== V力TR力N ===== */
.listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.badge.ver {
    background: #e6f6ee;
    color: #1b7a4b;
}

.badge.ara {
    background: #e8f0fe;
    color: #1a4fb3;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* ===== MOB力L ===== */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
}

/* Alt menünün telefonun alt çentik alanıyla (safe area) çakışmaması için */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .fixed.bottom-0 {
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    }
}

/* Sayfa geçişlerinde mavi yanıp sönmeyi engeller (daha uygulama gibi hissettirir) */
* {
    -webkit-tap-highlight-color: transparent;
}