.herb-main {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border-radius: 0;
    max-width: 100vw;
}

.herb-animacja-container {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1a1a1a 60%, #2d5016 100%);
    overflow: hidden;
}

.herb-zegar {
    position: relative;
    width: 600px;
    height: 600px;
    display: block;
    margin: 0 auto;
}

.herb-tarcza {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 16px #0008);
    background: #2d5016;
    border-radius: 50%;
    border: 6px solid #e0e0e0;
    display: block;
}

.herb-tarcza:not([src]) {
    background: #444;
    border: 6px solid #888;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
}

.bip-srodek {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 16px #0006;
    padding: 8px;
    border: 4px solid #e0e0e0;
}

.bip-srodek:not([src]) {
    background: #eee;
    border: 4px solid #bbb;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    content: '';
    display: block;
}

.chmurka {
    position: absolute;
    min-width: 120px;
    min-height: 40px;
    background: var(--bg-container, #fff9);
    color: var(--text-primary, #222);
    border-radius: 24px;
    box-shadow: 0 2px 12px #0003;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.6em 1.4em;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    transition: background 0.3s, color 0.3s;
} 