.piotrus-generator-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
.piotrus-controls {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}
.drop-area {
    border: 2px dashed #007cba;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background: #f9fbff;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
}
.drop-area.drag-over {
    background: #e6f4ff;
    border-color: #005a99;
}
.piotrus-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.piotrus-card {
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.piotrus-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.piotrus-card.shape-circle { border-radius: 50%; }
.piotrus-card.shape-hexagon { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.piotrus-card img { position: absolute; object-fit: contain; }
@media print {
    .piotrus-controls { display: none !important; }
    .piotrus-card { box-shadow: none !important; }
}
@media (max-width: 992px) {
    .piotrus-cards-container { grid-template-columns: 1fr; }
}
/* Naprawa koloru tekstu w mediówce – jak w memory */
.media-frame-router { background: #000000 !important; border-bottom: 1px solid #000000 !important; }
.media-frame-router .media-router > a,
.media-frame-router .media-router > li {
    color: #000000 !important;
    text-shadow: none !important;
}
.media-frame-router .media-router > a:hover {
    color: #007cba !important;
}
