/*
Theme Name: Bence Naplója
Author: Bence
Version: 1.2
*/

:root {
    --poison-green: #006b3c;
    --poison-green-glow: rgba(0, 107, 60, 0.6);
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
body { background-color: var(--bg-dark); color: #e0e0e0; line-height: 1.6; }

.background-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%); z-index: -1; }

/* --- FEJLÉC (HEADER) JAVÍTÁSA --- */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--poison-green);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 70px;
}

.logo a { font-size: 1.5rem; font-weight: 800; color: white; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; }

.header-right { display: flex; align-items: center; gap: 20px; }

.header-search { display: flex; }
.header-search input { background: #111; border: 1px solid #333; color: white; padding: 6px 12px; border-radius: 4px 0 0 4px; outline: none; width: 150px; }
.header-search button { background: var(--poison-green); color: white; border: none; padding: 6px 12px; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; }

.main-menu { list-style: none; display: flex; gap: 15px; align-items: center; }
.main-menu li a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; font-weight: 500; }
.main-menu li a:hover { color: var(--poison-green); }

.dropbtn { cursor: pointer; color: #ccc; }
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background: #111; min-width: 120px; border: 1px solid #333; border-radius: 4px; top: 25px; }
.dropdown-content a { padding: 10px; display: block; border-bottom: 1px solid #222; }
.dropdown:hover .dropdown-content { display: block; }

/* --- KÁRTYÁK ÉS PANELOK --- */
.glass-panel { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 25px; margin-bottom: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.blog-highlight { border: 2px solid var(--poison-green); border-radius: 12px; padding: 20px; margin-bottom: 30px; background: rgba(0, 107, 60, 0.05); }

.btn { display: inline-block; padding: 8px 18px; border-radius: 6px; font-weight: bold; text-decoration: none; transition: 0.3s; cursor: pointer; font-size: 0.85rem; }
.btn.primary { background: var(--poison-green); color: white; border: none; }
.btn.secondary { border: 1px solid var(--poison-green); color: var(--poison-green); }
.btn.secondary:hover { background: var(--poison-green); color: white; }

/* --- TOP 3 LISTA FIXÁLÁSA --- */
.top-list { list-style: none; padding: 0; }
.top-list li { 
    display: flex; 
    align-items: center; 
    padding: 15px 0; 
    border-bottom: 1px solid #222; 
}
.rank-number { 
    width: 40px; /* FIX SZÉLESSÉG - Ettől indul egy helyről a szöveg */
    font-size: 1.4rem; 
    font-weight: 900; 
    color: var(--poison-green); 
    opacity: 0.6;
}
.rank-info { 
    flex-grow: 1; /* Kitölti a maradék helyet */
}
.rank-info strong { display: block; color: white; font-size: 1rem; }
.rank-info small { color: #888; }
.rank-weight { font-weight: bold; color: #fff; font-size: 0.9rem; margin-left: 10px; }

/* --- GALÉRIA --- */
.catch-card img { width: 100%; height: auto; border-radius: 8px; margin-top: 15px; border-bottom: 3px solid var(--poison-green); }

/* MOBIL */
@media (max-width: 1000px) {
    header { flex-direction: column; height: auto; padding: 15px; gap: 15px; }
    .header-right { flex-direction: column; gap: 10px; }
    .dashboard-grid { grid-template-columns: 1fr !important; }
}