.free-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 0 40px;
    overflow-y: auto;
    gap: 30px;
}

.free-info-banner {
    display: flex;
    gap: 20px;
    padding: 25px 30px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(206, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    align-items: center;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.8;
}

.info-text h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 15px;
    color: var(--text-muted);
}

.loading-state i {
    font-size: 2.5rem;
    color: var(--primary);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(206, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    background: linear-gradient(135deg, #15151a 0%, #0a0a0d 100%);
}

.product-placeholder i {
    font-size: 2.5rem;
    opacity: 0.3;
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    white-space: pre-wrap;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download {
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(206, 0, 0, 0.1);
    color: #ff5151;
    border: 1px solid rgba(206, 0, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.status-badge {
    background: rgba(206, 0, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    border: 1px solid rgba(206, 0, 0, 0.2);
}

/* Custom Scrollbar */
.free-container::-webkit-scrollbar {
    width: 4px;
}

.free-container::-webkit-scrollbar-thumb {
    background: rgba(206, 0, 0, 0.3);
    border-radius: 10px;
}

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