* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: url('/assets/img/bg.jpg') center / cover no-repeat fixed;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.navbar a {
    color: #ffa500;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

/* ===== LAYOUT ===== */
.main-layout {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
    padding: 30px;
}

/* ===== HÍRFOLYAM ===== */
.widget {
    width: 320px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.widget h3 {
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.news {
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}
