* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0f1e; color: #e0e0e0; font-family: 'Segoe UI', sans-serif; min-height: 100vh; }

/* NAVBAR */
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 48px; background: #0d1320; border-bottom: 1px solid #1a2340; max-width: 100%; }
.logo { font-size: 22px; font-weight: 700; color: #00c9a7; letter-spacing: -0.5px; }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a { color: #aaa; text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #00c9a7; }

/* CONTAINER */
.container { max-width: 1400px; margin: 0 auto; padding: 32px 40px; }

/* BANNER */
.banner { background: linear-gradient(135deg, #0d1f3c 0%, #0a2a4a 100%); border: 1px solid #1a3a6a; border-radius: 16px; padding: 36px; text-align: center; margin-bottom: 40px; }
.banner-tags { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: #00c9a7; margin-bottom: 10px; }
.banner-sub { color: #aaa; margin-bottom: 20px; font-size: 15px; }
.btn-telegram { display: inline-block; background: #0088cc; color: #fff; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 15px; transition: background .2s; }
.btn-telegram:hover { background: #006aaa; }

/* LIST HEADER */
.list-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.list-header h2 { font-size: 20px; color: #fff; }
#searchInput { padding: 10px 16px; border-radius: 30px; border: 1px solid #1a3a6a; background: #0d1320; color: #fff; font-size: 14px; width: 240px; outline: none; }
#searchInput::placeholder { color: #555; }

/* GRID */
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
@media (max-width: 900px) { .container { padding: 24px 20px; } }
@media (max-width: 680px) { .sites-grid { grid-template-columns: 1fr; } .navbar { flex-direction: column; gap: 12px; } }

/* CARD */
.site-card { background: #0d1320; border: 1px solid #1a2340; border-radius: 14px; overflow: hidden; transition: transform .2s, border-color .2s; }
.site-card:hover { transform: translateY(-2px); border-color: #00c9a7; }

.badge { font-size: 11px; font-weight: 700; padding: 5px 12px; letter-spacing: 1px; }
.badge-vip { background: #1a1200; color: #ffd700; }
.badge-guvenilir { background: #001a15; color: #00c9a7; }
.badge-sevilen { background: #1a0a0a; color: #f78166; }

.card-inner { display: flex; align-items: center; padding: 16px; gap: 14px; }
.site-logo { width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: #161f35; display: flex; align-items: center; justify-content: center; }
.site-logo img { width: 100%; height: 100%; object-fit: contain; }
.logo-placeholder { font-size: 28px; font-weight: 700; color: #00c9a7; }
.site-info { flex: 1; }
.site-info h3 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.site-info p { font-size: 12px; color: #888; line-height: 1.4; }

.btn-uye { background: #00c9a7; color: #fff; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background .2s; }
.btn-uye:hover { background: #00a88a; }

/* FOOTER */
footer { text-align: center; padding: 40px 20px 24px; color: #555; font-size: 13px; border-top: 1px solid #1a2340; margin-top: 60px; }
