* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f2f3f5;
    color: #1a1a1a;
    padding-bottom: 64px;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #14181f;
    color: #fff;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e63946;
}

.feed {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
}

.card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e5e5e5;
}

.card-body {
    padding: 10px 12px;
    display: flex;
    align-items: center;
}

.card-title {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 10;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #8a8f98;
    text-decoration: none;
}

.nav-item.active {
    color: #e63946;
}

.nav-item svg {
    width: 22px;
    height: 22px;
}

/* Haber detay sayfası */
.article {
    background: #fff;
    margin: 10px;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.article h1 {
    font-size: 19px;
    line-height: 1.4;
    margin: 0 0 12px;
}

.article img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.article p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #2a2a2a;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px 10px 0;
    color: #14181f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
