* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0e14;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 850px;
    padding: 40px 20px;
    z-index: 2;
}

.main-logo-text {
    font-family: 'Georgia', serif;
    color: #ffaa00;
    font-size: 42px;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.4);
    margin-bottom: 20px;
}

/* Bannerlar */
.side-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 400px;
    background: #1a1e29;
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 10px;
}
.left-banner { left: 20px; }
.right-banner { right: 20px; }
.side-banner img { width: 100%; object-fit: contain; transform: rotate(-90deg); margin-top: 150px; }

header { text-align: center; margin-bottom: 40px; }

.social-links { display: flex; justify-content: center; gap: 15px; }
.social-links a { color: #aaa; text-decoration: none; font-size: 14px; padding: 5px 15px; border: 1px solid #333; border-radius: 20px; background: rgba(255, 255, 255, 0.05); transition: 0.3s; }
.social-links a:hover { background: #ffaa00; color: #000; border-color: #ffaa00; }

.category-section { margin-bottom: 40px; }
.category-title { text-align: center; color: #ffaa00; font-size: 16px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid rgba(255, 170, 0, 0.2); padding-bottom: 10px; }
.site-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }

/* Kutu ve Tooltip (Bilgi Kutucuğu) Tasarımı */
.site-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(145deg, #161a23, #0f1219);
    border: 1px solid #2a2f3e;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: visible; /* Tooltipin dışarı taşması için */
}

.site-card:hover {
    border-color: #ffaa00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 170, 0, 0.15);
}

.site-card img { max-height: 25px; max-width: 120px; }
.crown { font-size: 14px; opacity: 0.5; transition: 0.3s; }
.site-card:hover .crown { opacity: 1; filter: drop-shadow(0 0 5px #ffaa00); }

/* --- ŞIK TOOLTIP --- */
.tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 18, 25, 0.95);
    color: #eee;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ffaa00;
    width: max-content;
    max-width: 280px;
    font-size: 12px;
    line-height: 1.6;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    pointer-events: none;
    text-align: left;
    backdrop-filter: blur(5px);
}
.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #ffaa00 transparent transparent transparent;
}
.site-card:hover .tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 125%;
}

@media (max-width: 1000px) { .side-banner { display: none; } }