.resources-container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.25rem;
}

.resources-container h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #1a1a2e;
}

.resources-container > p {
    text-align: center;
    color: #718096;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.resource-section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resource-section h2 {
    color: #1a1a2e;
    border-bottom: 3px solid #e94560;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.file-list {
    list-style: none;
    padding: 0;
}

.file-item {
    background-color: white;
    border-left: 4px solid #0f3460;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.file-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left-color: #e94560;
}

.file-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.file-description {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.file-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #a0aec0;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.file-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.file-download {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e94560 0%, #d63447 100%);
}

.file-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 12px;
    color: #718096;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-state h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.category-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #2d3748;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .resources-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .resources-container h1 {
        font-size: 2rem;
    }
    
    .resources-container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .resource-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .resource-section h2 {
        font-size: 1.5rem;
        padding-bottom: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .file-item {
        padding: 1.25rem;
    }
    
    .file-item:hover {
        transform: translateX(4px);
    }
    
    .file-name {
        font-size: 1.125rem;
    }
    
    .file-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }
    
    .file-download {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .empty-state {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .resources-container h1 {
        font-size: 1.75rem;
    }
    
    .resource-section {
        padding: 1rem;
    }
    
    .resource-section h2 {
        font-size: 1.25rem;
    }
    
    .file-item {
        padding: 1rem;
    }
    
    .file-name {
        font-size: 1rem;
    }
    
    .file-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .file-download {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .category-tag {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
}
