
    #szab-container {
        position: relative;
        width: 1000px;
        max-width: 100%;
        margin: 0 auto;
        height: 60vh;
        min-height: 400px;
        /* --- HÁTTÉRKÉP: cseréld az URL-t a Gemini-képre ---*/
        background-image: url('https://aranyossyagoston.hu/wp-content/uploads/2026/06/szabadsag-bg.webp');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    #szab-chalkboard {
        position: relative;
        z-index: 2;
        background-color: #2c4c3b;
        border: 12px solid #8b5a2b;
        border-radius: 8px;
        padding: 40px 80px;
        box-shadow:
            inset 0 0 20px rgba(0,0,0,0.6),
            10px 10px 25px rgba(0,0,0,0.4);
        transform: rotate(-3deg);
        animation: szabFloatBoard 4s ease-in-out infinite;
    }
    #szab-text {
        font-family: 'Permanent Marker', cursive;
        font-size: 5rem; /* kicsit kisebb, mert a SZABADSÁG hosszabb szó */
        color: #f4f4f4;
        margin: 0;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        opacity: 0.95;
        white-space: nowrap;
    }
    #szab-confetti {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        z-index: 4;
        pointer-events: none;
    }
    @keyframes szabFloatBoard {
        0%   { transform: rotate(-3deg) translateY(0px); }
        50%  { transform: rotate(-2deg) translateY(-8px); }
        100% { transform: rotate(-3deg) translateY(0px); }
    }
    @media (max-width: 768px) {
        #szab-chalkboard { padding: 20px 40px; }
        #szab-text { font-size: 2.8rem; }
        #szab-container { height: 350px; min-height: 350px; }
    }
