/* Ретро-футуристичний стиль */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0f0c29; 
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Секція банерів */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 в ряд на десктопі */
    gap: 25px;
    margin-bottom: 60px;
    padding: 10px;
}

.banner-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px; /* Сильне закруглення */
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.banner-item:hover {
    transform: translateY(-10px);
    border-color: #00f2fe;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.banner-item img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Робимо картинку завжди квадратною */
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    filter: brightness(0.9);
    transition: 0.3s;
}

.banner-item:hover img {
    filter: brightness(1.1);
}

/* Кнопка редагування */
.btn-edit {
    display: block;
    padding: 10px;
    background: linear-gradient(45deg, #7b4397, #dc2430);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-edit:hover {
    filter: hue-rotate(45deg);
    box-shadow: 0 0 15px rgba(220, 36, 48, 0.6);
}

/* Секція файлів */
.file-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.upload-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
}

.file-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    transition: 0.2s;
}

.file-row:hover {
    background: rgba(255,255,255,0.08);
}

.btn-del {
    color: #ff4b2b;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
}

.file-link {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 500;
}

/* Адаптивність */
@media (max-width: 1100px) {
    .banner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .banner-grid { grid-template-columns: repeat(2, 1fr); }
    .upload-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .banner-grid { grid-template-columns: 1fr; }
}