:root {
    --primary: #1a1a1a;
    --accent: #007bff;
    --bg: #fcfcfc;
    --text: #333;
    --light-gray: #f9f9f9;
}

@keyframes vibe-colors {
    0%, 100% { color: #007bff; filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(360deg); }
}


.logo {
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.logo b {
    font-weight: 800;
    animation: vibe-colors 20s infinite;
}

.logo i {
    position: relative;
    font-style: normal;
    font-size: 1.8rem;
    top: -5px;
    left: 10px;
}

.logo span {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-left: 5px;
    color: #1a1a1a;
    position: relative;
    left: -12px;
    bottom: -6px;
}

@media (max-width: 768px) {
    .logo { font-size: 1.8rem; }
}

/* Gallery Enhancements */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.item-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
}

.item-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.item-container img, .item-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    padding: 8px;
    box-sizing: border-box;
}

.item-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.item-author {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: sans-serif;
}

.item-admin-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    z-index: 10;
}

.btn-mini-admin {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-mini-admin:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1) rotate(5deg);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-mini-admin[title="Borrar"]:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
        padding: 10px;
    }
}
