:root {
    --asya-primary: #00a884;
    --asya-dark: #0f172a;
    --asya-bg: #f8fafc;
}

body {
    background-color: var(--asya-bg);
    font-family: 'Inter', sans-serif;
    color: #334155;
}

.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--asya-primary);
    border-color: var(--asya-primary);
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #008f70;
    border-color: #008f70;
}

.navbar {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.search-wrapper {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* Reklam Konteynerları */
.ad-container {
    margin: 15px 0;
    text-align: center;
}

.ad-img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.ad-img:hover {
    transform: scale(1.02);
}

/* Header Reklam */
.ad-header {
    background: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.ad-header .ad-img {
    max-height: 90px;
    width: auto;
}

/* Sidebar Reklam */
.ad-sidebar {
    margin-bottom: 20px;
}

.ad-sidebar .ad-img {
    width: 100%;
    border-radius: 10px;
}

/* Footer Reklam */
.ad-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

/* İlanlar Arası Reklam */
.ad-between {
    margin: 30px 0;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 12px;
}

.kat-pill {
    white-space: nowrap;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #4b5563;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
}

.kat-pill.active {
    background: var(--asya-primary);
    color: white;
    border-color: var(--asya-primary);
    box-shadow: 0 10px 15px -3px rgba(0, 168, 132, 0.3);
}
