.presskit-body {
    background: radial-gradient(ellipse at center, #0f5a5a 0%, #05040d 75%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.presskit-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.presskit-logo-link {
    flex-shrink: 0;
}

.presskit-logo {
    height: 64px;
    width: auto;
    max-width: 260px;
}

/* Por debajo de 768px se sirve img/logo_normal.png (horizontal, ~5:1),
   asi que se fuerza ancho en vez de alto para no deformarlo. */
@media (max-width: 768px) {
    .presskit-logo {
        height: auto;
        width: min(220px, 60vw);
        max-width: none;
    }
}

.presskit-title h1 {
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
}

.presskit-title .eyebrow {
    margin-bottom: 0.25rem;
}

.presskit-main {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem 3rem;
    flex: 1;
}

.presskit-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.presskit-crumb {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    transition: color 0.2s ease;
}

.presskit-crumb:hover,
.presskit-crumb:last-of-type {
    color: #fff;
}

.presskit-crumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.presskit-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.9rem 1.25rem;
    margin-bottom: 1.75rem;
}

.presskit-select-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.presskit-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.presskit-toolbar-actions .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.presskit-toolbar-actions .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.presskit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.presskit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.25rem 0.75rem 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.presskit-card-folder {
    cursor: pointer;
}

.presskit-card-previewable {
    cursor: pointer;
}

.presskit-card:hover {
    border-color: #ff0000;
    transform: translateY(-2px);
}

.presskit-card-icon {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.presskit-card-folder .presskit-card-icon {
    color: #ffd166;
}

.presskit-card-thumb {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.presskit-card-name {
    font-size: 0.85rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.presskit-card-size {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.presskit-card-select {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}

.presskit-card-select input {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
}

.presskit-card-download {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.presskit-card-download:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.presskit-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3rem;
}

.presskit-footer {
    text-align: center;
    padding: 1.5rem;
}

.presskit-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.presskit-footer a:hover {
    color: #ff0000;
}

.presskit-modal-open {
    overflow: hidden;
}

.presskit-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.presskit-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.presskit-modal-content {
    position: relative;
    z-index: 1;
    background: #0b0b12;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    max-width: min(90vw, 900px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.presskit-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.presskit-modal-close:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.presskit-modal-body {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.presskit-modal-body img,
.presskit-modal-body video {
    max-width: 100%;
    max-height: 75vh;
    display: block;
}

.presskit-modal-body iframe {
    width: min(85vw, 800px);
    height: 75vh;
    border: none;
    background: white;
}

.presskit-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: Arial, sans-serif;
}

.presskit-modal-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .presskit-header {
        flex-direction: column;
        text-align: center;
    }
    .presskit-title h1 {
        text-align: center;
    }
    .presskit-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .presskit-toolbar-actions {
        justify-content: center;
    }
}
