/* =================================================================== */
/* Osey Studio - Végleges, Robusztus Stíluslap (Lejátszó redesign)     */
/* =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');

/* === ALAP BEÁLLÍTÁSOK ÉS VÁLTOZÓK === */
:root {
    --bg-color: #0c0a14;
    --primary-color: #e0d8c7;
    --accent-color: #f3d78a;
    --card-bg: rgba(26, 18, 46, 0.7);
    --glow-color: rgba(243, 215, 138, 0.5);
    --modal-bg: #1a142a;
}

* { 
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-color);
}

*::-webkit-scrollbar { 
    width: 8px; 
}

*::-webkit-scrollbar-track { 
    background: var(--bg-color); 
}

*::-webkit-scrollbar-thumb { 
    background-color: var(--accent-color); 
    border-radius: 20px; 
    border: 2px solid var(--bg-color); 
}

body {
    background-color: var(--bg-color);
    background: linear-gradient(160deg, #100a1f, #2e1a47);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* === HÁTTÉR EFFEKTEK === */
#csillagok-kontener { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
    z-index: -1; 
}

.csillag { 
    position: absolute; 
    background: white; 
    border-radius: 50%; 
    animation: csillag-ragyogas 10s infinite ease-in-out; 
}

.porcica {
    position: absolute; 
    background: var(--accent-color); 
    border-radius: 50%;
    opacity: 0; 
    animation: lebeges 25s infinite ease-in-out; 
    filter: blur(2px);
}

.hullocsillag {
    position: fixed; 
    top: -10%; 
    height: 2px;
    background: linear-gradient(-45deg, rgba(253, 216, 112, 0.8), transparent);
    border-radius: 999px; 
    filter: drop-shadow(0 0 6px var(--accent-color));
    animation: hullocsillag-zuhanas 7s ease-in-out infinite;
}

/* === FŐOLDAL (`index.html`) STÍLUSOK === */
.fooldal-tartalom { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    min-height: 90vh; 
    text-align: center; 
    padding: 40px 20px; 
}

.fooldal-doboz { 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    background: rgba(16, 10, 31, 0.6); 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 40px; 
    border-radius: 15px; 
    max-width: 800px; 
    width: 100%; 
}

.fooldal-doboz h1, .header-tartalom h1 { 
    font-family: 'Cinzel', serif; 
    font-size: 3rem; 
    color: var(--accent-color); 
    text-shadow: 0 0 15px var(--glow-color); 
    margin: 0;
}

.fooldal-doboz .alcim, .header-tartalom p { 
    font-size: 1.2rem; 
    opacity: 0.8; 
    margin: 5px 0 20px 0; 
}

.fooldal-doboz #user-status { 
    margin-top: 15px; 
    margin-bottom: 20px;
}

.leiras { 
    line-height: 1.6; 
}

.cta-gombok { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin-top: 30px; 
}

.cta-gomb { 
    display: inline-block; 
    background: var(--accent-color); 
    color: var(--bg-color); 
    font-family: 'Cinzel', serif; 
    font-weight: bold; 
    text-decoration: none; 
    padding: 15px 30px; 
    border-radius: 5px; 
    transition: all 0.3s ease; 
    border: 1px solid var(--accent-color); 
}

.cta-gomb:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
}

.cta-gomb.masodlagos { 
    background: transparent; 
    color: var(--accent-color); 
}

#hirek-szekcio { 
    width: 100%; 
    max-width: 900px; 
    margin-top: 60px; 
    padding-bottom: 60px; 
}

#hirek-szekcio h2 { 
    font-family: 'Cinzel', serif; 
    font-size: 2rem; 
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--accent-color); 
}

#hirek-kontener { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.hir-kartya { 
    display: flex; 
    gap: 25px; 
    background: rgba(16, 10, 31, 0.8); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 10px; 
    padding: 25px; 
    text-align: left; 
}

.hir-kartya h2 { 
    font-family: 'Cinzel', serif; 
    margin: 10px 0; 
    color: var(--accent-color); 
    font-size: 1.5rem; 
}

#login-modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    backdrop-filter: blur(10px); 
    z-index: 3000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

#login-modal.hidden { 
    display: none; 
}

.modal-bezar-gomb { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 2rem; 
    background: none; 
    border: none; 
    color: var(--primary-color); 
    cursor: pointer; 
    opacity: 0.7; 
}

/* === HANGOSKÖNYVTÁR (`hangoskonyvek.html`) STÍLUSOK === */
header { 
    padding: 20px; 
}

.header-tartalom { 
    display: flex; 
    justify-content: center; 
    text-align: center; 
}

.cim-resz { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px;
}

.user-info { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    background: var(--card-bg); 
    padding: 8px 15px; 
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    animation: avatar-pulzalas 4s infinite ease-in-out;
}

.user-avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
}

#logout-gomb { 
    background: transparent; 
    border: 1px solid var(--accent-color); 
    color: var(--accent-color); 
    font-size: 0.9em; 
    padding: 8px 16px; 
    border-radius: 20px; 
    cursor: pointer; 
}

main { 
    padding: 40px 20px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.vissza-gomb { 
    position: fixed; 
    top: 20px; 
    left: 20px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(253, 216, 112, 0.3); 
    color: var(--primary-color); 
    padding: 10px 15px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-family: 'Cinzel', serif; 
    font-size: 0.9rem; 
    transition: all 0.3s ease; 
    z-index: 2001; 
}

.vissza-gomb:hover { 
    background: rgba(253, 216, 112, 0.2); 
    border-color: var(--accent-color); 
}

.vezerlopult { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 30px; 
    padding: 20px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.szerzo-szuro-csoport { 
    width: 100%; 
    text-align: center; 
}

.szerzo-szuro-cimke { 
    font-family: 'Cinzel', serif; 
    font-size: 1.2rem; 
    color: var(--primary-color); 
    opacity: 0.8; 
    margin-bottom: 15px; 
}

.konyv-gombok-kontener { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    justify-content: center; 
}

.konyv-gombok-kontener button { 
    background: transparent; 
    border: 1px solid rgba(253, 216, 112, 0.4); 
    color: var(--primary-color); 
    font-family: 'Cinzel', serif; 
    padding: 8px 16px; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    opacity: 0.8; 
}

.konyv-gombok-kontener button:hover { 
    opacity: 1; 
    background: rgba(253, 216, 112, 0.1); 
    border-color: var(--accent-color); 
}

.konyv-gombok-kontener button.aktiv { 
    opacity: 1; 
    background: var(--accent-color); 
    color: var(--bg-color); 
    font-weight: bold; 
    box-shadow: 0 0 15px var(--glow-color);
}

.kezdo-uzenet { 
    padding: 100px 20px; 
    text-align: center; 
    font-family: 'Cinzel', serif; 
    font-size: 1.8rem; 
    opacity: 0.8; 
}

.konyv-cim-kontener { 
    display: flex; 
    flex-direction: column;
    align-items: center;    
    gap: 20px;              
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.konyv-cim { 
    font-family: 'Cinzel', serif; 
    font-size: 1.5rem; 
    margin: 0; 
}

.teljes-konyv-gomb {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px 0 rgba(243, 215, 138, 0.4);
    animation: pulzalo-gomb-feny 2.5s infinite ease-in-out;
}

.teljes-konyv-gomb:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px 0 var(--glow-color);
    transform: scale(1.05);
}

.kartya-racs { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px; 
}

.kartya { 
    background: var(--card-bg); 
    backdrop-filter: blur(5px); 
    border-radius: 10px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 15px; 
    cursor: pointer; 
    position: relative; 
    overflow: hidden; 
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}

.kartya:hover { 
    transform: translateY(-10px) scale(1.03); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow-color); 
}

.kartya-kep { 
    width: 100%; 
    height: 180px; 
    border-radius: 8px; 
    object-fit: cover; 
    background-color: #000; 
    transition: transform 0.4s ease; 
    margin-bottom: 15px; 
}

.kartya-cim { 
    font-family: 'Cinzel', serif; 
    font-size: 1.2rem; 
    min-height: 30px; 
    margin: 0; 
}

/* ======================================================= */
/* === VÉGLEGES, EFFEKTEKKEL KIEGÉSZÍTETT LEJÁTSZÓ === */
/* ======================================================= */

#lejatszo-modal {
    position: fixed; top: 0; left: 0; z-index: 2000;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}
#lejatszo-modal.hidden { opacity: 0; pointer-events: none; }

.lejatszo-tartalom {
    background: var(--modal-bg);
    border: 1px solid rgba(253, 216, 112, 0.2);
    box-shadow: 0 0 40px rgba(253, 216, 112, 0.1);
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    padding: 25px 30px;
    position: relative;
}
.modal-bezar { position: absolute; top: 10px; right: 15px; font-size: 2rem; background: none; border: none; color: var(--primary-color); cursor: pointer; opacity: 0.6; }
.modal-bezar:hover { opacity: 1; }

.lejatszo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* BAL OSZLOP */
.lejatszo-bal-oszlop { display: flex; flex-direction: column; }
#modal-kep { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.cim-resz-modal { text-align: center; margin-bottom: 20px; }
#modal-cim { font-family: 'Cinzel', serif; font-size: 1.5rem; }
#modal-fejezet { font-size: 1rem; opacity: 0.8; margin-top: 5px; }
.vezerlok { margin-top: auto; display: flex; flex-direction: column; gap: 15px; }
.progress-kontener { display: flex; align-items: center; gap: 10px; font-size: 0.9em; }

/* --- ÚJ / JAVÍTOTT RÉSZ: Varázslatos gombok --- */
.gombok-kontener { display: flex; align-items: center; justify-content: center; gap: 25px; margin: 15px 0; }
.gombok-kontener button { background: none; border: none; color: var(--primary-color); cursor: pointer; padding: 0; transition: all 0.2s ease-out; }
.gombok-kontener button:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--glow-color));
}
.gombok-kontener button svg { width: 24px; height: 24px; }
#play-pause-gomb svg { width: 48px; height: 48px; }

/* --- ÚJ / JAVÍTOTT RÉSZ: Hangerőszabályzó stílusa --- */
.hangeroszabalyzo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.hangeroszabalyzo svg { width: 24px; height: 24px; opacity: 0.7; }
#volume-bar { max-width: 150px; }


/* JOBB OSZLOP */
.lejatszo-jobb-oszlop { display: flex; flex-direction: column; min-height: 0; max-height: 430px; }
.jobb-oszlop-nav { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 15px; }
.jobb-oszlop-nav button { flex: 1; background: none; border: none; color: var(--primary-color); font-family: 'Cinzel', serif; font-size: 1rem; padding: 10px; cursor: pointer; border-bottom: 2px solid transparent; opacity: 0.6; transition: all 0.2s ease; }
.jobb-oszlop-nav button.aktiv { border-bottom-color: var(--accent-color); opacity: 1; }
.jobb-oszlop-tartalom { flex-grow: 1; position: relative; min-height: 0; }
.playlist-resz, .idozito-szekcio { height: 100%; display: flex; flex-direction: column; }
.idozito-szekcio { gap: 12px; padding: 10px; }
.idozito-szekcio.hidden, .playlist-resz.hidden { display: none; }
#modal-playlist { flex-grow: 1; overflow-y: auto; padding-right: 10px; }
.playlist-item { padding: 10px; border-radius: 5px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05); }
.playlist-item.aktiv { background: var(--accent-color); color: var(--bg-color); font-weight: bold; }
.idozito-szekcio h4 { margin: 0; text-align: center; }
#idozito-start { background: var(--accent-color); color: var(--bg-color); border: none; padding: 10px; border-radius: 5px; cursor: pointer; font-weight: bold; }
#idozito-visszaszamlalo { text-align: center; font-size: 0.9em; min-height: 1em; }

/* --- ÚJ / JAVÍTOTT RÉSZ: Olvasható legördülő menü --- */
.idozito-szekcio input, .idozito-szekcio select { 
    width: 100%; 
    background: rgba(0,0,0,0.3); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: var(--primary-color); 
    border-radius: 5px; 
    padding: 8px; 
    font-family: inherit;
    font-size: 0.9rem;
}
.idozito-szekcio select option {
    background: var(--modal-bg);
    color: var(--primary-color);
}


/* --- ÚJ / JAVÍTOTT RÉSZ: Varázslatos csúszkák --- */
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
}
input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}
input[type=range]#progress-bar::-webkit-slider-runnable-track {
    /* Ezt a hátteret a JS dinamikusan frissíti majd! */
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color) 0%, rgba(255,255,255,0.2) 0%);
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--modal-bg);
    margin-top: -6px;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
input[type=range]:hover::-webkit-slider-thumb {
    transform: scale(1.2);
    background: var(--accent-color);
    box-shadow: 0 0 10px 2px var(--glow-color);
}




/* === ANIMÁCIÓK === */
@keyframes csillag-ragyogas { 
    0%, 100% { opacity: 0.2; transform: scale(0.7); } 
    50% { opacity: 0.8; transform: scale(1.1); } 
}

@keyframes lebeges { 
    0% { transform: translateY(100vh) scale(1); opacity: 0.7; } 
    100% { transform: translateY(-10vh) scale(0); opacity: 0; } 
}

@keyframes hullocsillag-zuhanas { 
    0% { transform: translateX(-10vw); opacity: 1; } 
    100% { transform: translateX(110vw); opacity: 0; } 
}

@keyframes avatar-pulzalas { 
    0%, 100% { box-shadow: 0 0 15px rgba(253, 216, 112, 0.2); } 
    50% { box-shadow: 0 0 25px var(--glow-color); } 
}

@keyframes pulzalo-gomb-feny { 
    0% { box-shadow: 0 0 15px 0 rgba(243, 215, 138, 0.4); } 
    50% { box-shadow: 0 0 25px 5px rgba(243, 215, 138, 0.6); } 
    100% { box-shadow: 0 0 15px 0 rgba(243, 215, 138, 0.4); } 
}

/* === RESZPONZIVITÁS === */
@media (max-width: 820px) {
    .hir-kartya { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
}

@media (max-width: 768px) {
    .vissza-gomb { 
        top: auto; 
        bottom: 20px; 
    }
}

@media (max-width: 600px) {
    .fooldal-doboz h1, .header-tartalom h1 { 
        font-size: 2.2rem; 
    }
    .kartya-racs { 
        grid-template-columns: 1fr; 
    }
}
/* ======================================================= */
/* === VÉGLEGES, VARÁZSLATOS LÁBLÉC STÍLUSOK === */
/* ======================================================= */

footer {
    width: 100%;
    padding: 20px 30px;
    margin-top: 40px; /* Térköz a tartalom és a lábléc között */
    background: rgba(12, 10, 20, 0.5); /* Sötét, áttetsző háttér */
    border-top: 1px solid rgba(253, 216, 112, 0.15);
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 0.9em;
}

.footer-tartalom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Mobilon egymás alá kerülhet */
    gap: 15px;
}

.footer-jobb {
    display: flex;
    align-items: center;
    gap: 15px;
}

.twitter-gomb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid rgba(253, 216, 112, 0.4);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.twitter-gomb:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* Reszponzivitás a lábléchez */
@media (max-width: 600px) {
    .footer-tartalom {
        flex-direction: column; /* Mobilon a két oldal egymás alá kerül */
        justify-content: center;
    }
}

/* === FŐOLDAL ÉS KÖZÖS ELEMEK === */
.fooldal-tartalom { text-align: center; padding: 40px 20px; }
.fooldal-doboz { display: flex; flex-direction: column; align-items: center; background: rgba(16, 10, 31, 0.6); backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 15px; max-width: 800px; margin: 0 auto; width: 100%; }
h1 { font-family: 'Cinzel', serif; font-size: 3rem; color: var(--accent-color); text-shadow: 0 0 15px var(--glow-color); margin: 0; }
.alcim { font-size: 1.2rem; opacity: 0.8; margin: 5px 0 20px 0; }
.leiras { line-height: 1.6; }
#user-status { margin-top: 20px; margin-bottom: 20px; }
/* ... (A többi stílus, amit küldtél, helyes) ... */


/* ======================================================= */
/* === VÉGLEGES, EFFEKTEKKEL KIEGÉSZÍTETT LEJÁTSZÓ === */
/* ======================================================= */
#lejatszo-modal { position: fixed; top: 0; left: 0; z-index: 2000; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 20px; transition: opacity 0.3s ease; }
#lejatszo-modal.hidden { opacity: 0; pointer-events: none; }
.lejatszo-tartalom { background: var(--modal-bg); border: 1px solid rgba(253, 216, 112, 0.2); box-shadow: 0 0 40px rgba(253, 216, 112, 0.1); border-radius: 15px; width: 100%; max-width: 800px; padding: 25px 30px; position: relative; }
.lejatszo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
/* ... (A lejátszó többi része változatlan) ... */
.lejatszo-jobb-oszlop { display: flex; flex-direction: column; min-height: 0; max-height: 430px; }
#modal-playlist { flex-grow: 1; overflow-y: auto; padding-right: 10px; }


/* === ANIMÁCIÓK === */
@keyframes pulzalo-gomb-feny { 0% { box-shadow: 0 0 15px 0 rgba(243, 215, 138, 0.4); } 50% { box-shadow: 0 0 25px 5px rgba(243, 215, 138, 0.6); } 100% { box-shadow: 0 0 15px 0 rgba(243, 215, 138, 0.4); } }
/* ... (A többi animáció változatlan) ... */

/* === RESZPONZIVITÁS === */

/* --- JAVÍTÁS: A lejátszó mobilnézetének helyreállítása --- */
@media (max-width: 768px) {
    .lejatszo-grid {
        grid-template-columns: 1fr; /* 1 oszlopos elrendezés mobilon */
    }
    .lejatszo-tartalom {
        max-height: 90vh; /* Biztosítja, hogy beférjen a képernyőre */
        overflow-y: auto; /* Ha mégis hosszabb, görgethető lesz */
    }
    .lejatszo-jobb-oszlop {
        max-height: 350px; /* A fejezetlista magassága mobilon */
    }
}

/* ======================================== */
/* === ÚJ, RESZPONZÍV HÍREK SZEKCIÓ DIZÁJN === */
/* ======================================== */

.hir-kartya {
    background: rgba(16, 10, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    display: grid; /* Grid alapú elrendezés a jobb irányíthatóságért */
    grid-template-columns: 150px 1fr; /* Első oszlop 150px, a második kitölti a maradék helyet */
    gap: 30px; /* Térköz az oszlopok között */
    align-items: start;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hir-kartya:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px var(--glow-color);
}

.hir-szerzo-oszlop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.szerzo-kep {
    width: 90px;  /* Nagyobb profilkép */
    height: 90px; /* Nagyobb profilkép */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px var(--glow-color);
    margin-bottom: 10px;
}

.szerzo-adatok {
    display: flex;
    flex-direction: column;
}

.szerzo-nev {
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

.hir-datum {
    font-size: 0.85em;
    opacity: 0.7;
    margin-top: 5px;
}

.hir-tartalom-oszlop h2 {
    margin-top: 0;
}

.hir-szoveg p {
    margin: 0 0 1em 0;
    line-height: 1.7;
    opacity: 0.9;
}

/* === RESZPONZIVITÁS MOBILRA === */
@media (max-width: 768px) {
    .hir-kartya {
        grid-template-columns: 1fr; /* Egy oszlopos elrendezés mobilon */
        gap: 20px;
    }
    
    .hir-szerzo-oszlop {
        /* Mobilon a kép és a név egymás mellé kerül a szebb elrendezésért */
        flex-direction: row; 
        text-align: left;
    }

    .szerzo-kep {
        width: 60px; /* Mobilon kisebb, de még mindig látható profilkép */
        height: 60px;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .hir-tartalom-oszlop {
        text-align: left; /* A szöveg igazítása marad balra */
    }
}

/* ======================================== */
/* === ADATVÉDELMI TÁJÉKOZTATÓ OLDAL      === */
/* ======================================== */

.szabalyzat-kontener {
    background: rgba(16, 10, 31, 0.6); 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 30px 40px; 
    border-radius: 15px; 
    max-width: 900px; 
    margin: 40px auto;
    text-align: left; /* A hosszú szöveg balra igazítva olvashatóbb */
}

.szabalyzat-kontener h1, 
.szabalyzat-kontener h2 {
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
}

.szabalyzat-kontener h2 {
    margin-top: 30px;
    border-bottom: 1px solid rgba(253, 216, 112, 0.2);
    padding-bottom: 10px;
}

.szabalyzat-kontener p,
.szabalyzat-kontener li {
    line-height: 1.8;
    opacity: 0.9;
}

.szabalyzat-kontener ul {
    list-style-type: disc;
    padding-left: 25px;
}