.skl-links-container {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.skl-links-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.skl-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.skl-link-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.skl-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.skl-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.skl-link-card:hover::before {
    transform: translateX(0);
}

.skl-link-icon {
    font-size: 24px;
    margin-left: 15px;
    flex-shrink: 0;
    z-index: 1;
}

.skl-link-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
}

.skl-link-arrow {
    font-size: 20px;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.skl-link-card:hover .skl-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* حالت تاریک */
@media (prefers-color-scheme: dark) {
    .skl-links-container {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    }

    .skl-link-card {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        backdrop-filter: blur(10px);
    }
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .skl-links-container {
        padding: 20px;
        margin: 30px 0;
    }

    .skl-links-title {
        font-size: 20px;
    }

    .skl-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .skl-link-card {
        padding: 15px;
    }

    .skl-link-text {
        font-size: 14px;
    }
}
