/* Pliki do pobrania - Style */

.download-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 222, 32, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(157, 222, 32, 0.15), rgba(157, 222, 32, 0.05));
    border-radius: 0 16px 0 100%;
    z-index: 0;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 222, 32, 0.15);
    border-color: rgba(157, 222, 32, 0.3);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color, #9dde20), #8ac71b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.download-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.download-btn {
    background: var(--primary-color, #9dde20);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.download-btn:hover {
    background: #8ac71b;
    color: white;
    transform: translateY(-1px);
}

.coming-soon-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.info-box {
    background: rgba(157, 222, 32, 0.1);
    border: 1px solid rgba(157, 222, 32, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--primary-color, #9dde20);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}
