.page-frame,
.quiz-frame {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1200px;
    margin: 24px auto;
    padding: 32px 56px 40px;

    border-radius: 28px;
    background: radial-gradient(circle at top left, #164469 0%, #02152a 55%, #010913 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 16px 32px rgba(0,0,0,0.55),
        0 -4px 14px rgba(0,0,0,0.18),
        -4px 0 14px rgba(0,0,0,0.18),
        0 0 12px rgba(255,255,255,0.05);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.site-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(220,233,255,0.8);
    
}


.scroll-box {
    width: 100%;
    max-height: 420px;   /* mennyit látsz egyszerre */
    overflow-y: auto;    /* görgethető */
    padding: 20px;
    box-sizing: border-box;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

