.npm-packages-section {
    position: relative;
    margin-bottom: 125px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 130px;
    overflow: hidden;
}

.npm-packages-section .section-header {
    margin-bottom: 5rem;
    position: relative;
}

.npm-packages-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.npm-packages-section .section-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    min-height: 480px;
}

.package-card {
    background: linear-gradient(145deg, rgba(22, 22, 26, 0.377), #10101323);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(203, 56, 55, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.package-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.package-card-header .fa-npm {
    font-size: 1.5rem;
    margin-top: -20px;
    color: #cb3837;
}

.package-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: -7px;
    color: var(--text-primary);
    white-space: nowrap;
}

.package-card-description {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin-top: -20px;
    flex-grow: 1;
    margin-bottom: 1.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Geist Mono", monospace;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.package-card-info i {
    color: #a0a0a0;
    font-size: 0.8rem;
}

