@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
font-display: swap;
}
/* Inter Regular (Normal Yazılar) */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}

/* Inter Medium (Biraz daha dolgun yazılar) */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}

/* Inter SemiBold (Alt başlıklar için ideal) */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
font-display: swap;
}

/* Inter Bold (Ana Başlıklar) */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}
/* Inter Italic */
@font-face {
font-family: 'Inter';
src: url('fonts/Inter_28pt-Italic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
font-display: swap;
}        
:root {
--color-primary: #bc1d45;
--color-primary-dark: #7b1d35;
--color-bg: #f5f5f7;
--color-card: #ffffff;
--color-text: #1d1d1f;
--color-text-dim: #6e6e73;
--radius: 18px;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }
body { background-color: var(--color-bg); padding: 20px; line-height: 1.6;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
-moz-osx-font-smoothing: grayscale; font-weight: 400; font-style: normal;
color: var(--color-dark); font-weight: 400; font-style: normal; font-size:16px;
}
.container { width: 100%; max-width: 800px; margin: 0 auto; animation: slideUp 0.5s ease-out; }
@keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.search-wrapper { background: var(--color-card); border-radius: var(--radius); padding: 35px; box-shadow: 0 2px 15px rgba(0,0,0,0.04); margin-bottom: 20px; text-align: center; }
/*.main-title { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 5px; letter-spacing: -1px; }*/
.top-logo {display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px;}
.logo-harf {background-color: var(--color-primary); color: #ffffff; width:36px; height:36px; border-radius:0.5rem; display: flex;align-items: center;justify-content: center;font-size:1.5rem;font-weight: 900;flex-shrink: 0; box-shadow:0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); user-select: none;}
.main-title {font-size: 28px; font-weight: 800; color: var(--color-text); letter-spacing: -1px; margin: 0; line-height: 1;}
.main-title a {text-decoration: none; color: inherit; transition: opacity 0.2s ease;}
.main-title a:hover {opacity: 0.8;}




/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .top-logo {gap: 10px;}
    .logo-harf {width: 36px; height: 36px; font-size: 15px; border-radius: 8px;}
    .main-title {font-size: 22px;}
}

.logo-harf {width:40px; height:40px; background-color:#d50000; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: #ffffff; font-weight: 900; font-size: 1.5rem; line-height: 2rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); font-family: 'Inter', sans-serif;}
.main-subtitle { font-size: 15px; color: var(--color-text-dim); margin-bottom: 20px; }
.search-bar { display: flex; align-items: center; background: #f0f0f2; border-radius: 12px; padding: 4px; border: 1px solid #e0e0e5; }
.search-bar:focus-within { background: #fff; border-color: #007aff; box-shadow: 0 0 0 3px rgba(0,122,255,0.08); }
.search-bar input { flex: 1; border: none; outline: none; background: transparent; padding: 10px 15px; font-size: 16px; }
.search-bar button { background: var(--color-primary); color: #fff; border: none; padding: 10px 20px; border-radius: 9px; font-weight: 600; cursor: pointer; }

.trending-keywords { margin-top: 15px; font-size: 13px; color: var(--color-text-dim); }
.trending-link { color: #007aff; text-decoration: none; font-weight: 600; margin-left: 5px; transition: 0.2s; }
.trending-link:hover { color: var(--color-primary); text-decoration: underline; }

.info-card { background: var(--color-card); border-radius: 14px; padding: 18px 25px; margin-bottom: 20px; display: flex; gap: 20px; align-items: center; border-left: 4px solid var(--color-primary); box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.info-image { width: 85px; height: 85px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: #eee; border: 1px solid #f0f0f2; }
.info-body { flex: 1; }
.info-title { font-size: 19px; font-weight: 700; color: #000; margin-bottom: 4px; }
.info-spot { font-size: 13.5px; color: var(--color-text-dim); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.info-btn { font-size: 12.5px; color: #007aff; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }

.results-section { background: var(--color-card); border-radius: var(--radius); padding: 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.04); }
.results-info { padding: 5px 10px 15px; border-bottom: 1px solid #f0f0f2; margin-bottom: 10px; font-size: 13px; color: var(--color-text-dim); font-weight: 600; }
.result-item { padding: 18px 12px; border-radius: 12px; text-decoration: none; color: inherit; display: block; transition: 0.2s; margin-bottom: 5px; }
.result-item:hover { background: #f8f8fa; padding-left: 18px; }
.result-meta { display: flex; gap: 12px; font-size: 11px; font-weight:400; margin-bottom: 6px; }
.meta-tag { color: var(--color-text-dim); text-transform: uppercase; font-weight:600;}
.result-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; color: #1d1d1f; }
.result-excerpt { font-size: 14px; color: var(--color-text-dim); line-height: 1.5; }

.more-btn { width: 100%; padding: 15px; margin-top: 15px; background: none; border: 1px solid #e0e0e5; border-radius: 12px; color: var(--color-text-dim); font-weight: 700; cursor: pointer; display: none; transition: 0.3s; }
.more-btn.active { display: block; }
.more-btn:disabled { opacity: 0.6; cursor: wait; }

.cloud-section { background: var(--color-card); border-radius: var(--radius); padding: 25px; margin-top: 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.04); }
.cloud-title { font-size: 15px; font-weight: 700; margin-bottom: 15px; }
.cloud-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { background: #f0f0f2; color: var(--color-text-dim); padding: 7px 14px; border-radius: 30px; text-decoration: none; font-size: 12px; font-weight: 600; }

@media (max-width: 600px) {
.info-card { padding: 15px; gap: 15px; }
.info-image { width: 70px; height: 70px; }
.search-wrapper { padding: 20px 15px; }
.search-bar { flex-direction: column; background: none; border: none; gap: 8px; }
.search-bar input { background: #f0f0f2; border-radius: 10px; width: 100%; }
.search-bar button { width: 100%; }
}